blob: 337ea84f4c3836c279e06b2c20fd122a545fdb35 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10#include "vim.h"
11
12#ifndef HANGUL_DEFAULT_KEYBOARD
13# define HANGUL_DEFAULT_KEYBOARD 3
14#endif
15
16#define AUTOMATA_NEW 0
17#define AUTOMATA_CORRECT 1
18#define AUTOMATA_SPECIAL 2
19#define AUTOMATA_CORRECT_NEW 3
20#define AUTOMATA_ERROR 4
21#define AUTOMATA_NULL 5
22
23#define F_F 0x1 /* Ãʼº (initial sound) */
24#define F_M 0x2 /* Áß¼º (medial vowel) */
25#define F_L 0x4 /* Á¾¼º (final consonant) */
26#define F_A 0x8 /* ASCII */
27#define F_NULL 1
28#define M_NULL 2
29#define L_NULL 1
30
31static int hangul_input_state = 0;
32static int f=F_NULL, m=M_NULL, l=L_NULL;
33static int sp=0;
34static char_u stack[20] = {0};
35static int last_l = -1, last_ll = -1;
36static int hangul_keyboard_type = HANGUL_DEFAULT_KEYBOARD;
37
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010038static void convert_ks_to_3(const char_u *src, int *fp, int *mp, int *lp);
39static int convert_3_to_ks(int fv, int mv, int lv, char_u *des);
Bram Moolenaar071d4272004-06-13 20:20:40 +000040
41#define push(x) {stack[ sp++ ] = *(x); stack[sp++] = *((x)+1);}
42#define pop(x) {*((x) + 1) = stack[--sp]; *(x) = stack[--sp];}
43#define query(x) {*((x) + 1) = stack[sp - 1]; *(x) = stack[sp - 2];}
44
45#define convert_3_to_code convert_3_to_ks
46
47
48/**********************************************************************/
49/****** 3 ¹ú½ÄÀÚÆÇÀ» À§ÇÑ ·çƾ (Routines for 3 bulsik keyboard) ******/
50/**********************************************************************/
51
52/* 3 ¹ú½Ä¿¡¼­ ÀÚÆÇ º¯È¯ (3 bulsik keyboard conversion) */
53
54static char_u value_table_for_3[] =
55{
56 24 , '"' , '#' , '$' , '%' , '&' , /* ! " # $ % & */
57 18 , '(' , ')' , '*' , '+' , ',' , /* ' ( ) * + , */
58 '-' , '.' , 13 , 17 , 29 , 22 , /* - . / 0 1 2 */
59 19 , 19 , 26 , 5 , 12 , 28 , /* 3 4 5 6 7 8 */
60 20 , ':' , 9 , '2' , '=' , '3' , /* 9 : ; < = > */
61 '?' , '@' , 8 , '!' , 11 , 10 , /* ? @ A B C D */
62 26 , 3 , '/' , 39 , '8' , '4' , /* E F G H I J */
63 '5' , '6' , '1' , '0' , '9' , '>' , /* K L M N O P */
64 28 , 6 , 7 , ';' , '7' , 16 , /* Q R S T U V */
65 27 , 20 , '<' , 25 , '[' , 92 , /* W X Y Z [ \ */
66 ']' , '^' , '_' , '`' , 23 , 20 , /* ] ^ _ ` a b */
67 10 , 29 , 11 , 3 , 27 , 4 , /* c d e f g h */
68 8 , 13 , 2 , 14 , 20 , 11 , /* i j k l m n */
69 16 , 19 , 21 , 4 , 5 , 7 , /* o p q r s t */
70 5 , 13 , 9 , 2 , 7 , 17 , /* u v w x y z */
71};
72
73static short_u kind_table_for_3[] =
74{
75 F_L, F_A, F_A, F_A, F_A, F_A, /* ! " # $ % & */
76 F_F, F_A, F_A, F_A, F_A, F_A, /* ' ( ) * + , */
77 F_A, F_A, F_M, F_F, F_L, F_L, /* - . / 0 1 2 */
78 F_L, F_M, F_M, F_M, F_M, F_M, /* 3 4 5 6 7 8 */
79 F_M, F_A, F_F, F_A, F_A, F_A, /* 9 : ; < = > */
80 F_A, F_A, F_L, F_A, F_L, F_L, /* ? @ A B C D */
81 F_L, F_L, F_A, F_A, F_A, F_A, /* E F G H I J */
82 F_A, F_A, F_A, F_A, F_A, F_A, /* K L M N O P */
83 F_L, F_M, F_L, F_A, F_A, F_L, /* Q R S T U V */
84 F_L, F_L, F_A, F_L, F_A, F_A, /* W X Y Z [ \ */
85 F_A, F_A, F_A, F_A, F_L, F_M, /* ] ^ _ ` a b */
86 F_M, F_M, F_M, F_M, F_M, F_F, /* c d e f g h */
87 F_F, F_F, F_F, F_F, F_F, F_F, /* i j k l m n */
88 F_F, F_F, F_L, F_M, F_L, F_M, /* o p q r s t */
89 F_F, F_M, F_L, F_L, F_F, F_L, /* u v w x y z */
90};
91
92/* 3 ¹ú½Ä¿¡¼­ (ÇöÀçÃʼº, ÀԷ¿µ¹®) -> º¹ÇÕÃʼº ó¸®
93 * 3 bulsik: (current initial sound, input english) -> compound initial sound.
94 */
95
96 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +010097comfcon3(int v, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000098{
99 if (v == 2 && c == 2)
100 return 3;
101 if (v == 5 && c == 5)
102 return 6;
103 if (v == 9 && c == 9)
104 return 10;
105 if (v == 11 && c == 11)
106 return 12;
107 if (v == 14 && c == 14)
108 return 15;
109 return 0;
110}
111
112/* 3 ¹ú½Ä¿¡¼­ (ÇöÀç¸ðÀ½, ÀÔ·Â ¿µ¹®) -> º¹ÇÕ ¸ðÀ½ ó¸®
113 * 3 bulsik: (current vowel, input english) -> compound vowel.
114 */
115
116 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100117comvow3(int v, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118{
119 switch (v)
120 {
121 case 13: /* ¤Ç */
122 switch (c) {
123 case 3: /* ¤Ç¤¿ */
124 return 14;
125 case 4: /* ¤Ç¤À */
126 return 15;
127 case 29: /* ¤Ç¤Ó */
128 return 18;
129 }
130 break;
131
132 case 20: /* ¤Ì */
133 switch (c) {
134 case 7: /* ¤Ì¤Ã */
135 return 21;
136 case 10: /* ¤Ì¤Ä */
137 return 22;
138 case 29: /* ¤Ì¤Ó */
139 return 23;
140 }
141 break;
142
143 /* 3 ¹ú½Ä ÀÚÆÇÀº ¤Ñ¤Ó °¡ ÀÖÀ¸¹Ç·Î ... */
144 }
145 return 0;
146}
147
148/* 3 ¹ú½Ä¿¡¼­ (ÇöÀç ¹Þħ, ¿µ¹®ÀÚ ÀÔ·Â) -> ¹Þħ
149 * 3 bulsik: (current prop(?), input english) -> prop(?).
150 * I want to say, the 'prop' is similar to 'final consonant', but not vowel.
151 * (I cannot find the real english from my dictionary. Sorry!)
152 * VIM: V = initial sound, I = medial vowel, M = final consonant.
153 */
154
155 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100156comcon3(int k, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157{
158 switch (k)
159 {
160 case 2: /* ¤¡ */
161 switch (c) {
162 case 2:
163 return 3; /* ¤¡¤¡ */
164 case 21:
165 return 4; /* ¤¡¤µ */
166 }
167 break;
168
169 case 5: /* ¤¤ */
170 switch (c) {
171 case 24: /* ¤¤¤¸ */
172 return 6;
173 case 29:
174 return 7; /* ¤¤¤¾ */
175 }
176 break;
177
178 case 9: /* ¤© */
179 switch (c) {
180 case 2: /* ¤©¤¡ */
181 return 10;
182 case 17: /* ¤©¤± */
183 return 11;
184 case 19: /* ¤©¤² */
185 return 12;
186 case 21: /* ¤©¤µ */
187 return 13;
188 case 27: /* ¤©¤¼ */
189 return 14;
190 case 28: /* ¤©¤½ */
191 return 15;
192 case 29: /* ¤©¤¾ */
193 return 16;
194 }
195 break;
196
197 case 19:
198 switch (c) {
199 case 21: /* ¤²¤µ */
200 return 20;
201 }
202 break;
203 }
204 return 0;
205}
206
207/**********************************************************************/
208/****** 2 ¹ú½ÄÀÚÆÇÀ» À§ÇÑ ·çƾ (Routines for 2 bulsik keyboard) ******/
209/**********************************************************************/
210
211 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100212kind_table_for_2(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213{
214 static char_u table[] =
215 {
216 /* a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s */
217 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0,
218 /* t, u, v, w, x, y, z */
219 0, 1, 0, 0, 0, 1, 0
220 };
221
222 if (c <= 'Z')
223 c -= 'A';
224 else
225 c -= 'a';
226
227 return table[c];
228}
229
230/* 2 ¹ú½Ä¿¡¼­ ¿µ¹®ÀÚ -> Á¶ÇÕÇü Ãʼº º¯È¯
231 * (2 bulsik: conversion english char. to initial sound of compound type)
232 * °á°ú: ÃʼºÀÌ ¾Æ´Ï¸é 0 (If it is not initial sound, return 0).
233 */
234 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100235fcon(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236{
237 static char_u table[] =
238 {
239 /*E */ 6 , /*F */ 0 , /*G */ 0 , /*H */ 0 , /*I */ 0 , /*J */ 0 , /*K */ 0 ,
240 /*L */ 0 , /*M */ 0 , /*N */ 0 , /*O */ 0 , /*P */ 0 , /*Q */ 10, /*R */ 3 ,
241 /*S */ 0 , /*T */ 12, /*U */ 0 , /*V */ 0 , /*W */ 15, /*X */ 0 , /*Y */ 0 ,
242 /*Z */ 0 , /*[ */ 0 , /*\ */ 0 , /*] */ 0 , /*^ */ 0 , /*_ */ 0 , /*` */ 0 ,
243 /*a */ 8 , /*b */ 0 , /*c */ 16, /*d */ 13, /*e */ 5 , /*f */ 7 , /*g */ 20,
244 /*h */ 0 , /*i */ 0 , /*j */ 0 , /*k */ 0 , /*l */ 0 , /*m */ 0 , /*n */ 0 ,
245 /*o */ 0 , /*p */ 0 , /*q */ 9 , /*r */ 2 , /*s */ 4 , /*t */ 11, /*u */ 0 ,
246 /*v */ 19, /*w */ 14, /*x */ 18, /*y */ 0 , /*z */ 17
247 };
248
249 if (c < 'E' || c > 'z')
250 return 0;
251 return table[c - 'E'];
252}
253
254/* 2 ¹ú½Ä¿¡¼­ ¿µ¹®ÀÚ -> Áß¼º º¯È¯
255 * (2 bulsik: conversion english char. to medial vowel)
256 * °á°ú: Áß¼ºÀÌ ¾Æ´Ï¸é 0 (If it is not medial vowel, return 0).
257 */
258 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100259vow(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260{
261 static char_u table[] =
262 {
263 /*O */ 6 , /*P */ 12, /*Q */ 0 , /*R */ 0 , /*S */ 0 , /*T */ 0 , /*U */ 0 ,
264 /*V */ 0 , /*W */ 0 , /*X */ 0 , /*Y */ 0 , /*Z */ 0 , /*[ */ 0 , /*\ */ 0 ,
265 /*] */ 0 , /*^ */ 0 , /*_ */ 0 , /*` */ 0 , /*a */ 0 , /*b */ 26, /*c */ 0 ,
266 /*d */ 0 , /*e */ 0 , /*f */ 0 , /*g */ 0 , /*h */ 13, /*i */ 5 , /*j */ 7 ,
267 /*k */ 3 , /*l */ 29, /*m */ 27, /*n */ 20, /*o */ 4 , /*p */ 10, /*q */ 0 ,
268 /*r */ 0 , /*s */ 0 , /*t */ 0 , /*u */ 11, /*v */ 0 , /*w */ 0 , /*x */ 0 ,
269 /*y */ 19};
270
271 if (c < 'O' || c > 'y')
272 return 0;
273 return table[c - 'O'];
274}
275
276/* 2¹ú½Ä¿¡¼­ ¿µ¹®ÀÚ -> ¹Þħ º¯È¯
277 * (2 bulsik: conversion english char. to prop)
278 * °á°ú: ¹ÞħÀÌ ¾Æ´Ï¸é 0 (If not prop, return 0)
279 */
280 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100281lcon(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282{
283 static char_u table[] =
284 {
285 /*R */ 3 , /*S */ 0 , /*T */ 22, /*U */ 0 , /*V */ 0 , /*W */ 0 , /*X */ 0 ,
286 /*Y */ 0 , /*Z */ 0 , /*[ */ 0 , /*\ */ 0 , /*] */ 0 , /*^ */ 0 , /*_ */ 0 ,
287 /*` */ 0 , /*a */ 17, /*b */ 0 , /*c */ 25, /*d */ 23, /*e */ 8 , /*f */ 9 ,
288 /*g */ 29, /*h */ 0 , /*i */ 0 , /*j */ 0 , /*k */ 0 , /*l */ 0 , /*m */ 0 ,
289 /*n */ 0 , /*o */ 0 , /*p */ 0 , /*q */ 19, /*r */ 2 , /*s */ 5 , /*t */ 21,
290 /*u */ 0 , /*v */ 28, /*w */ 24, /*x */ 27, /*y */ 0 , /*z */ 26
291 };
292
293 if (c < 'R' || c > 'z')
294 return 0;
295 return table[c - 'R'];
296}
297
298/* 2 ¹ú½Ä¿¡¼­ (ÇöÀç ¹Þħ, ¿µ¹®ÀÚ ÀÔ·Â) -> ¹Þħ º¯È¯
299 * (2 bulsik: conversion (curr. prop, input english) to prop)
300 */
301
302 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100303comcon2(int k, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304{
305 switch (k)
306 {
307 case 2: /* ¤¡ */
308 switch (c) {
309 case 't':
310 return 4; /* ¤¡¤µ */
311 }
312 break;
313
314 case 5: /* ¤¤ */
315 switch (c) {
316 case 'w': /* ¤¤¤¸ */
317 return 6;
318 case 'g': /* ¤¤¤¾ */
319 return 7;
320 }
321 break;
322
323 case 9: /* ¤© */
324 switch (c) {
325 case 'r': /* ¤©¤¡ */
326 return 10;
327 case 'a': /* ¤©¤± */
328 return 11;
329 case 'q': /* ¤©¤² */
330 return 12;
331 case 't': /* ¤©¤µ */
332 return 13;
333 case 'x': /* ¤©¤¼ */
334 return 14;
335 case 'v': /* ¤©¤½ */
336 return 15;
337 case 'g': /* ¤©¤¾ */
338 return 16;
339 }
340 break;
341
342 case 19: /* ¤² */
343 switch (c) {
344 case 't': /* ¤²¤µ */
345 return 20;
346 }
347 break;
348 }
349 return 0;
350}
351
352/* 2¹ú½Ä¿¡¼­ (ÇöÀç Áß¼º, ¿µ¹® ÀÔ·Â) -> Áß¼º º¯È¯
353 * (2 bulsik: conversion (curr. medial vowel, input english) to medial
354 * vowel)
355 */
356
357 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100358comvow2(int v, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359{
360 switch (v)
361 {
362 case 13: /* ¤Ç */
363 switch (c) {
364 case 'k': /* ¤Ç¤¿ */
365 return 14;
366 case 'o': /* ¤Ç¤À */
367 return 15;
368 case 'l': /* ¤Ç¤Ó */
369 return 18;
370 }
371 break;
372
373 case 20: /* ¤Ì */
374 switch (c) {
375 case 'j': /* ¤Ì¤Ã */
376 return 21;
377 case 'p': /* ¤Ì¤Ä */
378 return 22;
379 case 'l': /* ¤Ì¤Ó */
380 return 23;
381 }
382 break;
383
384 case 27: /* ¤Ñ */
385 switch (c) {
386 case 'l': /* ¤Ñ¤Ó */
387 return 28;
388 }
389 break;
390 }
391 return 0;
392}
393
394 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100395hangul_input_state_get(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396{
397 return hangul_input_state;
398}
399
400 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100401hangul_input_state_set(int state)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402{
403 hangul_input_state = state;
404 hangul_input_clear();
405}
406
Bram Moolenaard84b2c32019-07-07 19:16:58 +0200407#if (!defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100409im_get_status(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410{
411 return hangul_input_state_get();
412}
Bram Moolenaard84b2c32019-07-07 19:16:58 +0200413#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414
415 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100416hangul_input_state_toggle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417{
418 if (hangul_input_state_get())
419 {
420 hangul_input_state_set(0);
421 if (composing_hangul)
422 {
423 push_raw_key(composing_hangul_buffer, 2);
424 composing_hangul = 0;
425 }
426 }
427 else
428 hangul_input_state_set(1);
429
430 if (showmode())
431 {
432 setcursor();
433 out_flush();
434 }
435
436 gui_update_cursor(TRUE, FALSE);
437}
438
439 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100440hangul_automata2(char_u *buf, int_u *c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441{
442 int t,t2;
443
444 if (*c == BS)
445 {
446 if (sp == 0)
447 return AUTOMATA_SPECIAL;
448 else if (sp < 4)
449 {
450 hangul_input_clear();
451 return AUTOMATA_NULL;
452 }
453 pop(buf);
454 query(buf);
455 convert_ks_to_3(buf, &f, &m, &l);
456 last_l = last_ll;
457 last_ll = -1;
458 return AUTOMATA_CORRECT;
459 }
460 if ((!(*c >= 'A' && *c <= 'Z')) && (!(*c >= 'a' && *c <= 'z')))
461 {
462 hangul_input_clear();
463 return AUTOMATA_SPECIAL;
464 }
465 t = *c;
466 switch (kind_table_for_2(t))
467 {
468 case 0: /* ÀÚÀ½ (consonant) */
469 if (f == F_NULL)
470 {
471 if (m != M_NULL)
472 hangul_input_clear();
473 f = fcon(t);
474 convert_3_to_code(f, M_NULL, L_NULL, buf);
475 push(buf);
476 last_ll = last_l = -1;
477 return AUTOMATA_NEW;
478 }
479 if (m == M_NULL)
480 return AUTOMATA_ERROR;
481 if (l == L_NULL)
482 {
483 t2 = lcon(t);
484 if (!t2) /* ¹ÞħÀ¸·Î ÀûÇÕÇÏÁö¾Ê´Ù (cannot use it as a prop) */
485 {
486 hangul_input_clear();
487 last_ll = last_l = -1;
488 f = fcon(t);
489 convert_3_to_code(f, m, l, buf);
490 push(buf);
491 return AUTOMATA_NEW;
492 }
493 if (2 == convert_3_to_code(f, m, t2, buf))
494 {
495 last_ll = -1;
496 last_l = t;
497 l = t2;
498 push(buf);
499 return AUTOMATA_CORRECT;
500 }
501 else /* ¹ÞħÀ¸·Î ¾²·ÁÇÏ¿´À¸³ª code¿¡ ¾ø´Â ±ÛÀÚÀÌ´Ù */
502 { /* cannot find such a prop in the code table */
503 last_ll = last_l = -1;
504 hangul_input_clear();
505 f = fcon(t);
506 convert_3_to_code(f, m, l, buf);
507 push(buf);
508 return AUTOMATA_NEW;
509 }
510 }
511 /* ÃÊ Áß Á¾¼ºÀÌ ¸ðµÎ °®Ãß¾îÁ® ÀÖ´Ù
512 * I have all the 'initial sound' and 'medial vowel' and 'final
513 * consonant'.
514 */
515 t2 = comcon2(l, t);
516 if (t2)
517 {
518 if (2 == convert_3_to_code(f, m, t2, buf))
519 {
520 l = t2;
521 last_ll = last_l;
522 last_l = t;
523 push(buf);
524 return AUTOMATA_CORRECT;
525 }
526 }
527 last_ll = last_l = -1;
528 hangul_input_clear();
529 f = fcon(t);
530 convert_3_to_code(f, m, l, buf);
531 push(buf);
532 return AUTOMATA_NEW;
533
534 case 1:
535 if (f == F_NULL)
536 {
537 hangul_input_clear();
538 m = vow(t);
539 convert_3_to_code (f, m, L_NULL, buf);
540 push (buf);
541 last_ll = last_l = -1;
542 return AUTOMATA_NEW;
543 }
544 if (m == M_NULL)
545 {
546 m = vow(t);
547 if (2 == convert_3_to_code(f, m, L_NULL, buf))
548 {
549 last_ll = last_l = -1;
550 push(buf);
551 return AUTOMATA_CORRECT;
552 }
553 m = M_NULL;
554 return AUTOMATA_ERROR;
555 }
556 if (l == L_NULL)
557 {
558 t2 = comvow2(m, t);
559 if (t2)
560 {
561 if (2 != convert_3_to_code(f, t2, L_NULL, buf))
562 return AUTOMATA_ERROR;
563
564 m = t2;
565 push(buf);
566 last_ll = last_l = -1;
567 return AUTOMATA_CORRECT;
568 }
569 return AUTOMATA_ERROR;
570 }
571 pop(buf);
572 pop(buf);
573 sp = 0;
574 if (last_l == -1)
575 {
576 /* À½... ÀÌ°Ô ÇÊ¿äÇϳª?? (Hmm... Is it needed?) */
577 convert_ks_to_3(buf, &f, &m, &l);
578 }
579 else
580 {
581 char_u tmp[3];
582 f = fcon(last_l);
583 convert_3_to_code (f, M_NULL, L_NULL, tmp);
584 push (tmp);
585 }
586 m = vow(t);
587 l = L_NULL;
588 convert_3_to_code(f, m, l, buf + 2);
589 push(buf + 2);
590 return AUTOMATA_CORRECT_NEW;
591
592 default:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100593 iemsg(_("E256: Hangul automata ERROR"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 break;
595 }
596 return AUTOMATA_ERROR; /* RrEeAaLlLlYy EeRrRrOoRr */
597}
598
599 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100600hangul_automata3(char_u *buf, int_u *c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601{
602 int t, t2;
603
604 if (*c >= '!' && *c <= 'z')
605 {
606 *c -= '!';
607 t = value_table_for_3[*c];
608 switch (kind_table_for_3[*c])
609 {
610 case F_F: /* Ãʼº¹®ÀÚ (char. of an initial sound) */
611 if (m != M_NULL || sp == 0)
612 {
613 /* ÃʼºÀÌ ºñ¾ú°Å³ª ´ÙÀ½ ±ÛÀÚ ¸ðÀ¸±â ½ÃÀÛ
614 * Empty 'initial sound', so starting automata.
615 */
616 hangul_input_clear();
617 f = t;
618 convert_3_to_code(f, M_NULL, L_NULL, buf);
619 push(buf);
620 return AUTOMATA_NEW;
621 }
622 if ((t2 = comfcon3(f,t)) != 0) /* º¹ÀÚÀ½ (double? consonant) */
623 {
624 f=t2;
625 convert_3_to_code(f, M_NULL, L_NULL, buf);
626 push(buf);
627 return AUTOMATA_CORRECT;
628 }
629 return AUTOMATA_ERROR;
630
631 case F_M: /* ¸ðÀ½ (vowel) */
632 if (m == M_NULL)
633 {
634 if (2 != convert_3_to_code(f, t, L_NULL,buf))
635 return AUTOMATA_ERROR;
636
637 m = t;
638 push(buf);
639 if (f == F_NULL)
640 return AUTOMATA_NEW;
641 else
642 return AUTOMATA_CORRECT;
643 }
644 if ((t2 = comvow3(m,t))) /* º¹¸ðÀ½ (a diphthong) */
645 {
646 m = t2;
647 convert_3_to_code(f, m, L_NULL, buf);
648 push(buf);
649 return AUTOMATA_CORRECT;
650 }
651 return AUTOMATA_ERROR;
652
653 case F_L: /* ¹Þħ (prop?) */
654 if (m == M_NULL)
655 return AUTOMATA_ERROR; /* Áß¼º¾ø´Â Á¾¼º */
656 if (l == L_NULL)
657 {
658 if (2 != convert_3_to_code(f, m, t, buf))
659 {
660 l = L_NULL;
661 return AUTOMATA_ERROR;
662 }
663 push(buf);
664 l = t;
665 return AUTOMATA_CORRECT;
666 }
667 if ((t2 = comcon3(l,t)) != 0) /* º¹ ¹Þħ ?? (double prop?) */
668 {
669 if (2 != convert_3_to_code(f, m, t2, buf))
670 return AUTOMATA_ERROR;
671
672 push(buf);
673 l = t2;
674 return AUTOMATA_CORRECT;
675 }
676 return AUTOMATA_ERROR;
677
678 case F_A: /* Ư¼ö¹®ÀÚ³ª ¼ýÀÚ (special char. or number) */
679 hangul_input_clear();
680 *c = t;
681 return AUTOMATA_SPECIAL;
682 }
683 }
684 if (*c == BS)
685 {
686 if (sp >= 4)
687 {
688 pop(buf);
689 pop(buf);
690 convert_ks_to_3(buf, &f, &m, &l);
691 push(buf);
692 return AUTOMATA_CORRECT;
693 }
694 else if (sp == 0)
695 {
696 return AUTOMATA_SPECIAL;
697 }
698 else
699 {
700 hangul_input_clear();
701 return AUTOMATA_NULL;
702 }
703 }
704 hangul_input_clear();
705 return AUTOMATA_SPECIAL;
706}
707
708 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100709hangul_keyboard_set(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710{
711 int keyboard;
712 char *s;
713
714 hangul_input_clear();
715
716 if ((s = getenv("VIM_KEYBOARD")) == NULL)
717 s = getenv("HANGUL_KEYBOARD_TYPE");
718
719 if (s)
720 {
721 if (*s == '2')
722 keyboard = 2;
723 else
724 keyboard = 3;
725 hangul_keyboard_type = keyboard;
726 }
727}
728
729 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100730hangul_input_process(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731{
732 int n;
733 unsigned int c;
734 char_u hanbuf[20];
735
736 if (len == 1)
737 /* normal key press */
738 c = *s;
739 else if (len == 3 && s[0] == CSI && s[1] == 'k' && s[2] == 'b')
740 {
741 /* backspace */
742 if (composing_hangul)
743 c = Ctrl_H;
744 else
745 return len;
746 }
747 else
748 {
749 if (composing_hangul)
750 push_raw_key(composing_hangul_buffer, 2);
751 hangul_input_clear();
752 composing_hangul = 0;
753 return len;
754 }
755
756 if (hangul_keyboard_type == 2)
757 n = hangul_automata2(hanbuf, &c);
758 else
759 n = hangul_automata3(hanbuf, &c);
760
761 if (n == AUTOMATA_CORRECT)
762 {
763 STRNCPY(composing_hangul_buffer, hanbuf, 2);
764 gui_update_cursor(TRUE, FALSE);
765 return 0;
766 }
767 else if (n == AUTOMATA_NEW)
768 {
769 if (composing_hangul)
770 push_raw_key(composing_hangul_buffer, 2);
771 STRNCPY(composing_hangul_buffer, hanbuf, 2);
772 composing_hangul = 1;
773 gui_update_cursor(TRUE, FALSE);
774 return 0;
775 }
776 else if (n == AUTOMATA_CORRECT_NEW)
777 {
778 if (composing_hangul)
779 push_raw_key(hanbuf, 2);
780 STRNCPY(composing_hangul_buffer, hanbuf+2, 2);
781 composing_hangul = 1;
782 gui_update_cursor(TRUE, FALSE);
783 return 0;
784 }
785 else if (n == AUTOMATA_NULL)
786 {
787 composing_hangul = 0;
788 gui_redraw_block(gui.cursor_row, gui.cursor_col,
789 gui.cursor_row, gui.cursor_col + 1,
790 GUI_MON_NOCLEAR);
791 gui_update_cursor(TRUE, FALSE);
792 return 0;
793 }
794 else if (n == AUTOMATA_SPECIAL)
795 {
796 if (composing_hangul)
797 {
798 push_raw_key(composing_hangul_buffer, 2);
799 composing_hangul = 0;
800 }
801 *s = c;
802 return 1;
803 }
804 else if (n == AUTOMATA_ERROR)
805 {
Bram Moolenaar165bc692015-07-21 17:53:25 +0200806 vim_beep(BO_HANGUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 return 0;
808 }
809 return len;
810}
811
812 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100813hangul_input_clear(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814{
815 sp = 0;
816 f = F_NULL;
817 m = M_NULL;
818 l = L_NULL;
819}
820
821#define han_index(h, l) (((h)-0xb0)*(0xff-0xa1)+((l)-0xa1))
822
823static const char_u ks_table1[][3] =
824{
825 { 2, 3, 1}, { 2, 3, 2}, { 2, 3, 5}, { 2, 3, 8},
826 { 2, 3, 9}, { 2, 3, 10}, { 2, 3, 11}, { 2, 3, 17},
827 { 2, 3, 19}, { 2, 3, 20}, { 2, 3, 21}, { 2, 3, 22},
828 { 2, 3, 23}, { 2, 3, 24}, { 2, 3, 25}, { 2, 3, 27},
829 { 2, 3, 28}, { 2, 3, 29}, { 2, 4, 1}, { 2, 4, 2},
830 { 2, 4, 5}, { 2, 4, 9}, { 2, 4, 17}, { 2, 4, 19},
831 { 2, 4, 21}, { 2, 4, 22}, { 2, 4, 23}, { 2, 5, 1},
832 { 2, 5, 2}, { 2, 5, 5}, { 2, 5, 9}, { 2, 5, 21},
833 { 2, 5, 23}, { 2, 6, 1}, { 2, 6, 5}, { 2, 6, 9},
834 { 2, 7, 1}, { 2, 7, 2}, { 2, 7, 5}, { 2, 7, 8},
835 { 2, 7, 9}, { 2, 7, 11}, { 2, 7, 17}, { 2, 7, 19},
836 { 2, 7, 21}, { 2, 7, 22}, { 2, 7, 23}, { 2, 7, 24},
837 { 2, 7, 27}, { 2, 7, 28}, { 2, 7, 29}, { 2, 10, 1},
838 { 2, 10, 5}, { 2, 10, 9}, { 2, 10, 17}, { 2, 10, 19},
839 { 2, 10, 21}, { 2, 10, 22}, { 2, 10, 23}, { 2, 11, 1},
840 { 2, 11, 2}, { 2, 11, 3}, { 2, 11, 5}, { 2, 11, 8},
841 { 2, 11, 9}, { 2, 11, 17}, { 2, 11, 19}, { 2, 11, 21},
842 { 2, 11, 22}, { 2, 11, 23}, { 2, 11, 27}, { 2, 12, 1},
843 { 2, 12, 5}, { 2, 12, 9}, { 2, 12, 19}, { 2, 12, 21},
844 { 2, 13, 1}, { 2, 13, 2}, { 2, 13, 5}, { 2, 13, 8},
845 { 2, 13, 9}, { 2, 13, 11}, { 2, 13, 13}, { 2, 13, 16},
846 { 2, 13, 17}, { 2, 13, 19}, { 2, 13, 21}, { 2, 13, 23},
847 { 2, 13, 24}, { 2, 14, 1}, { 2, 14, 2}, { 2, 14, 5},
848 { 2, 14, 9}, { 2, 14, 11}, { 2, 14, 17}, { 2, 14, 19},
849 { 2, 14, 21}, { 2, 14, 23}, { 2, 15, 1}, { 2, 15, 5},
850 { 2, 15, 9}, { 2, 15, 19}, { 2, 15, 22}, { 2, 15, 23},
851 { 2, 18, 1}, { 2, 18, 2}, { 2, 18, 5}, { 2, 18, 9},
852 { 2, 18, 17}, { 2, 18, 19}, { 2, 18, 21}, { 2, 18, 23},
853 { 2, 19, 1}, { 2, 19, 5}, { 2, 19, 9}, { 2, 19, 19},
854 { 2, 19, 21}, { 2, 20, 1}, { 2, 20, 2}, { 2, 20, 5},
855 { 2, 20, 8}, { 2, 20, 9}, { 2, 20, 10}, { 2, 20, 11},
856 { 2, 20, 16}, { 2, 20, 17}, { 2, 20, 19}, { 2, 20, 21},
857 { 2, 20, 23}, { 2, 20, 24}, { 2, 21, 1}, { 2, 21, 2},
858 { 2, 21, 5}, { 2, 21, 9}, { 2, 21, 22}, { 2, 21, 23},
859 { 2, 22, 1}, { 2, 22, 21}, { 2, 23, 1}, { 2, 23, 2},
860 { 2, 23, 5}, { 2, 23, 9}, { 2, 23, 17}, { 2, 23, 19},
861 { 2, 23, 21}, { 2, 26, 1}, { 2, 26, 5}, { 2, 26, 9},
862 { 2, 27, 1}, { 2, 27, 2}, { 2, 27, 5}, { 2, 27, 8},
863 { 2, 27, 9}, { 2, 27, 10}, { 2, 27, 17}, { 2, 27, 19},
864 { 2, 27, 21}, { 2, 27, 23}, { 2, 28, 1}, { 2, 29, 1},
865 { 2, 29, 2}, { 2, 29, 5}, { 2, 29, 8}, { 2, 29, 9},
866 { 2, 29, 11}, { 2, 29, 17}, { 2, 29, 19}, { 2, 29, 21},
867 { 2, 29, 23}, { 2, 29, 24}, { 2, 29, 28}, { 3, 3, 1},
868 { 3, 3, 2}, { 3, 3, 3}, { 3, 3, 5}, { 3, 3, 9},
869 { 3, 3, 11}, { 3, 3, 17}, { 3, 3, 19}, { 3, 3, 21},
870 { 3, 3, 22}, { 3, 3, 23}, { 3, 3, 27}, { 3, 4, 1},
871 { 3, 4, 2}, { 3, 4, 5}, { 3, 4, 9}, { 3, 4, 17},
872 { 3, 4, 19}, { 3, 4, 21}, { 3, 4, 22}, { 3, 4, 23},
873 { 3, 5, 1}, { 3, 5, 2}, { 3, 5, 9}, { 3, 7, 1},
874 { 3, 7, 2}, { 3, 7, 3}, { 3, 7, 5}, { 3, 7, 9},
875 { 3, 7, 17}, { 3, 7, 19}, { 3, 7, 21}, { 3, 7, 22},
876 { 3, 7, 23}, { 3, 10, 1}, { 3, 10, 2}, { 3, 10, 5},
877 { 3, 10, 17}, { 3, 10, 21}, { 3, 10, 23}, { 3, 11, 1},
878 { 3, 11, 5}, { 3, 11, 9}, { 3, 11, 21}, { 3, 11, 22},
879 { 3, 11, 27}, { 3, 12, 1}, { 3, 13, 1}, { 3, 13, 2},
880 { 3, 13, 5}, { 3, 13, 7}, { 3, 13, 9}, { 3, 13, 17},
881 { 3, 13, 19}, { 3, 13, 21}, { 3, 13, 23}, { 3, 13, 24},
882 { 3, 13, 25}, { 3, 14, 1}, { 3, 14, 2}, { 3, 14, 9},
883 { 3, 14, 22}, { 3, 14, 23}, { 3, 15, 1}, { 3, 15, 2},
884 { 3, 15, 23}, { 3, 18, 1}, { 3, 18, 5}, { 3, 18, 9},
885 { 3, 18, 17}, { 3, 18, 19}, { 3, 18, 23}, { 3, 19, 1},
886 { 3, 20, 1}, { 3, 20, 2}, { 3, 20, 5}, { 3, 20, 9},
887 { 3, 20, 16}, { 3, 20, 17}, { 3, 20, 19}, { 3, 20, 21},
888 { 3, 20, 23}, { 3, 20, 24}, { 3, 21, 1}, { 3, 21, 9},
889 { 3, 21, 22}, { 3, 21, 23}, { 3, 22, 1}, { 3, 22, 2},
890 { 3, 22, 5}, { 3, 22, 9}, { 3, 22, 17}, { 3, 22, 19},
891 { 3, 22, 22}, { 3, 23, 1}, { 3, 23, 5}, { 3, 23, 9},
892 { 3, 23, 17}, { 3, 23, 19}, { 3, 26, 1}, { 3, 27, 1},
893 { 3, 27, 2}, { 3, 27, 5}, { 3, 27, 7}, { 3, 27, 9},
894 { 3, 27, 11}, { 3, 27, 16}, { 3, 27, 17}, { 3, 27, 19},
895 { 3, 27, 21}, { 3, 27, 23}, { 3, 27, 27}, { 3, 29, 1},
896 { 3, 29, 2}, { 3, 29, 5}, { 3, 29, 9}, { 3, 29, 17},
897 { 3, 29, 19}, { 3, 29, 21}, { 3, 29, 23}, { 4, 3, 1},
898 { 4, 3, 2}, { 4, 3, 3}, { 4, 3, 5}, { 4, 3, 8},
899 { 4, 3, 9}, { 4, 3, 10}, { 4, 3, 11}, { 4, 3, 17},
900 { 4, 3, 19}, { 4, 3, 21}, { 4, 3, 22}, { 4, 3, 23},
901 { 4, 3, 24}, { 4, 3, 25}, { 4, 3, 27}, { 4, 3, 29},
902 { 4, 4, 1}, { 4, 4, 2}, { 4, 4, 5}, { 4, 4, 9},
903 { 4, 4, 17}, { 4, 4, 19}, { 4, 4, 21}, { 4, 4, 22},
904 { 4, 4, 23}, { 4, 5, 1}, { 4, 5, 2}, { 4, 5, 5},
905 { 4, 5, 9}, { 4, 5, 17}, { 4, 5, 23}, { 4, 7, 1},
906 { 4, 7, 2}, { 4, 7, 4}, { 4, 7, 5}, { 4, 7, 9},
907 { 4, 7, 11}, { 4, 7, 12}, { 4, 7, 17}, { 4, 7, 19},
908 { 4, 7, 21}, { 4, 7, 22}, { 4, 7, 23}, { 4, 7, 29},
909 { 4, 10, 1}, { 4, 10, 2}, { 4, 10, 5}, { 4, 10, 9},
910 { 4, 10, 17}, { 4, 10, 19}, { 4, 10, 21}, { 4, 10, 22},
911 { 4, 10, 23}, { 4, 11, 1}, { 4, 11, 2}, { 4, 11, 5},
912 { 4, 11, 9}, { 4, 11, 17}, { 4, 11, 19}, { 4, 11, 22},
913 { 4, 11, 23}, { 4, 11, 26}, { 4, 12, 1}, { 4, 12, 5},
914 { 4, 13, 1}, { 4, 13, 2}, { 4, 13, 5}, { 4, 13, 9},
915 { 4, 13, 11}, { 4, 13, 17}, { 4, 13, 19}, { 4, 13, 21},
916 { 4, 13, 23}, { 4, 13, 28}, { 4, 13, 29}, { 4, 14, 1},
917 { 4, 14, 5}, { 4, 14, 9}, { 4, 14, 22}, { 4, 18, 1},
918 { 4, 18, 5}, { 4, 18, 9}, { 4, 18, 17}, { 4, 18, 19},
919 { 4, 18, 21}, { 4, 19, 1}, { 4, 19, 2}, { 4, 19, 5},
920 { 4, 19, 9}, { 4, 19, 19}, { 4, 19, 21}, { 4, 19, 23},
921 { 4, 20, 1}, { 4, 20, 2}, { 4, 20, 5}, { 4, 20, 8},
922 { 4, 20, 9}, { 4, 20, 17}, { 4, 20, 19}, { 4, 20, 21},
923 { 4, 20, 23}, { 4, 21, 1}, { 4, 21, 22}, { 4, 22, 1},
924 { 4, 23, 1}, { 4, 23, 5}, { 4, 23, 9}, { 4, 23, 17},
925 { 4, 23, 19}, { 4, 26, 1}, { 4, 26, 2}, { 4, 26, 9},
926 { 4, 26, 17}, { 4, 26, 19}, { 4, 26, 23}, { 4, 27, 1},
927 { 4, 27, 2}, { 4, 27, 5}, { 4, 27, 9}, { 4, 27, 10},
928 { 4, 27, 11}, { 4, 27, 17}, { 4, 27, 19}, { 4, 27, 21},
929 { 4, 27, 23}, { 4, 27, 24}, { 4, 27, 28}, { 4, 28, 1},
930 { 4, 28, 5}, { 4, 28, 9}, { 4, 29, 1}, { 4, 29, 2},
931 { 4, 29, 5}, { 4, 29, 9}, { 4, 29, 11}, { 4, 29, 17},
932 { 4, 29, 19}, { 4, 29, 21}, { 4, 29, 23}, { 4, 29, 28},
933 { 5, 3, 1}, { 5, 3, 2}, { 5, 3, 3}, { 5, 3, 5},
934 { 5, 3, 8}, { 5, 3, 9}, { 5, 3, 10}, { 5, 3, 11},
935 { 5, 3, 12}, { 5, 3, 16}, { 5, 3, 17}, { 5, 3, 19},
936 { 5, 3, 21}, { 5, 3, 22}, { 5, 3, 23}, { 5, 3, 24},
937 { 5, 3, 25}, { 5, 3, 29}, { 5, 4, 1}, { 5, 4, 2},
938 { 5, 4, 5}, { 5, 4, 9}, { 5, 4, 17}, { 5, 4, 19},
939 { 5, 4, 21}, { 5, 4, 22}, { 5, 4, 23}, { 5, 5, 1},
940 { 5, 7, 1}, { 5, 7, 2}, { 5, 7, 3}, { 5, 7, 5},
941 { 5, 7, 8}, { 5, 7, 9}, { 5, 7, 11}, { 5, 7, 12},
942 { 5, 7, 17}, { 5, 7, 19}, { 5, 7, 21}, { 5, 7, 23},
943 { 5, 7, 25}, { 5, 7, 28}, { 5, 10, 1}, { 5, 10, 2},
944 { 5, 10, 5}, { 5, 10, 9}, { 5, 10, 17}, { 5, 10, 19},
945 { 5, 10, 21}, { 5, 10, 22}, { 5, 10, 23}, { 5, 11, 1},
946 { 5, 11, 5}, { 5, 11, 9}, { 5, 11, 22}, { 5, 11, 23},
947 { 5, 12, 1}, { 5, 12, 5}, { 5, 13, 1}, { 5, 13, 2},
948 { 5, 13, 5}, { 5, 13, 8}, { 5, 13, 9}, { 5, 13, 11},
949 { 5, 13, 13}, { 5, 13, 17}, { 5, 13, 19}, { 5, 13, 21},
950 { 5, 13, 23}, { 5, 13, 25}, { 5, 13, 27}, { 5, 14, 1},
951 { 5, 14, 5}, { 5, 14, 9}, { 5, 15, 1}, { 5, 15, 22},
952 { 5, 18, 1}, { 5, 18, 5}, { 5, 18, 9}, { 5, 18, 17},
953 { 5, 18, 19}, { 5, 18, 21}, { 5, 19, 1}, { 5, 20, 1},
954 { 5, 20, 2}, { 5, 20, 5}, { 5, 20, 9}, { 5, 20, 17},
955 { 5, 20, 19}, { 5, 20, 21}, { 5, 20, 23}, { 5, 21, 1},
956 { 5, 21, 22}, { 5, 22, 1}, { 5, 22, 23}, { 5, 23, 1},
957 { 5, 23, 5}, { 5, 23, 9}, { 5, 23, 19}, { 5, 23, 21},
958 { 5, 23, 23}, { 5, 26, 1}, { 5, 26, 5}, { 5, 26, 9},
959 { 5, 26, 17}, { 5, 26, 23}, { 5, 27, 1}, { 5, 27, 2},
960 { 5, 27, 5}, { 5, 27, 8}, { 5, 27, 9}, { 5, 27, 11},
961 { 5, 27, 17}, { 5, 27, 19}, { 5, 27, 21}, { 5, 27, 23},
962 { 5, 28, 1}, { 5, 29, 1}, { 5, 29, 2}, { 5, 29, 5},
963 { 5, 29, 8}, { 5, 29, 9}, { 5, 29, 17}, { 5, 29, 19},
964 { 5, 29, 21}, { 5, 29, 22}, { 5, 29, 23}, { 5, 29, 24},
965 { 6, 3, 1}, { 6, 3, 2}, { 6, 3, 5}, { 6, 3, 9},
966 { 6, 3, 17}, { 6, 3, 19}, { 6, 3, 21}, { 6, 3, 22},
967 { 6, 3, 23}, { 6, 3, 29}, { 6, 4, 1}, { 6, 4, 2},
968 { 6, 4, 5}, { 6, 4, 9}, { 6, 4, 17}, { 6, 4, 19},
969 { 6, 4, 21}, { 6, 4, 22}, { 6, 4, 23}, { 6, 7, 1},
970 { 6, 7, 2}, { 6, 7, 5}, { 6, 7, 9}, { 6, 7, 11},
971 { 6, 7, 12}, { 6, 7, 17}, { 6, 7, 19}, { 6, 7, 21},
972 { 6, 7, 22}, { 6, 7, 23}, { 6, 7, 29}, { 6, 10, 1},
973 { 6, 10, 2}, { 6, 10, 5}, { 6, 10, 9}, { 6, 10, 17},
974 { 6, 10, 19}, { 6, 10, 21}, { 6, 10, 22}, { 6, 10, 23},
975 { 6, 11, 1}, { 6, 11, 22}, { 6, 13, 1}, { 6, 13, 2},
976 { 6, 13, 5}, { 6, 13, 9}, { 6, 13, 23}, { 6, 14, 1},
977 { 6, 14, 9}, { 6, 15, 1}, { 6, 18, 1}, { 6, 18, 5},
978 { 6, 20, 1}, { 6, 20, 2}, { 6, 20, 5}, { 6, 20, 9},
979 { 6, 20, 16}, { 6, 20, 17}, { 6, 20, 23}, { 6, 22, 1},
980 { 6, 23, 1}, { 6, 23, 5}, { 6, 23, 9}, { 6, 23, 17},
981 { 6, 23, 19}, { 6, 23, 23}, { 6, 27, 1}, { 6, 27, 2},
982 { 6, 27, 5}, { 6, 27, 8}, { 6, 27, 9}, { 6, 27, 17},
983 { 6, 27, 19}, { 6, 27, 21}, { 6, 28, 1}, { 6, 28, 5},
984 { 6, 28, 9}, { 6, 28, 17}, { 6, 28, 19}, { 6, 29, 1},
985 { 6, 29, 5}, { 6, 29, 9}, { 6, 29, 17}, { 6, 29, 19},
986 { 6, 29, 21}, { 6, 29, 23}, { 7, 3, 1}, { 7, 3, 2},
987 { 7, 3, 5}, { 7, 3, 9}, { 7, 3, 17}, { 7, 3, 19},
988 { 7, 3, 21}, { 7, 3, 22}, { 7, 3, 23}, { 7, 3, 24},
989 { 7, 3, 28}, { 7, 3, 29}, { 7, 4, 1}, { 7, 4, 2},
990 { 7, 4, 5}, { 7, 4, 9}, { 7, 4, 17}, { 7, 4, 19},
991 { 7, 4, 21}, { 7, 4, 22}, { 7, 4, 23}, { 7, 5, 1},
992 { 7, 5, 2}, { 7, 5, 5}, { 7, 5, 21}, { 7, 5, 23},
993 { 7, 7, 1}, { 7, 7, 2}, { 7, 7, 5}, { 7, 7, 9},
994 { 7, 7, 17}, { 7, 7, 19}, { 7, 7, 21}, { 7, 7, 22},
995 { 7, 7, 23}, { 7, 7, 29}, { 7, 10, 1}, { 7, 10, 2},
996 { 7, 10, 5}, { 7, 10, 9}, { 7, 10, 17}, { 7, 10, 19},
997 { 7, 10, 21}, { 7, 10, 23}, { 7, 11, 1}, { 7, 11, 2},
998 { 7, 11, 5}, { 7, 11, 9}, { 7, 11, 17}, { 7, 11, 19},
999 { 7, 11, 21}, { 7, 11, 22}, { 7, 11, 23}, { 7, 12, 1},
1000 { 7, 12, 5}, { 7, 12, 19}, { 7, 12, 21}, { 7, 13, 1},
1001 { 7, 13, 2}, { 7, 13, 5}, { 7, 13, 9}, { 7, 13, 17},
1002 { 7, 13, 19}, { 7, 13, 21}, { 7, 13, 23}, { 7, 14, 1},
1003 { 7, 14, 5}, { 7, 14, 23}, { 7, 15, 22}, { 7, 18, 1},
1004 { 7, 18, 5}, { 7, 18, 9}, { 7, 18, 17}, { 7, 18, 19},
1005 { 7, 18, 21}, { 7, 18, 23}, { 7, 19, 1}, { 7, 19, 5},
1006 { 7, 19, 9}, { 7, 19, 19}, { 7, 19, 21}, { 7, 19, 23},
1007 { 7, 20, 1}, { 7, 20, 2}, { 7, 20, 5}, { 7, 20, 9},
1008 { 7, 20, 17}, { 7, 20, 19}, { 7, 20, 21}, { 7, 20, 23},
1009 { 7, 21, 1}, { 7, 21, 22}, { 7, 22, 1}, { 7, 23, 1},
1010 { 7, 23, 2}, { 7, 23, 5}, { 7, 23, 9}, { 7, 23, 17},
1011 { 7, 23, 21}, { 7, 23, 23}, { 7, 26, 1}, { 7, 26, 2},
1012 { 7, 26, 5}, { 7, 26, 9}, { 7, 26, 17}, { 7, 26, 19},
1013 { 7, 26, 21}, { 7, 26, 23}, { 7, 27, 1}, { 7, 27, 2},
1014 { 7, 27, 5}, { 7, 27, 9}, { 7, 27, 17}, { 7, 27, 19},
1015 { 7, 27, 21}, { 7, 27, 23}, { 7, 27, 24}, { 7, 27, 27},
1016 { 7, 27, 28}, { 7, 29, 1}, { 7, 29, 2}, { 7, 29, 5},
1017 { 7, 29, 9}, { 7, 29, 17}, { 7, 29, 19}, { 7, 29, 21},
1018 { 7, 29, 23}, { 8, 3, 1}, { 8, 3, 2}, { 8, 3, 5},
1019 { 8, 3, 7}, { 8, 3, 8}, { 8, 3, 9}, { 8, 3, 10},
1020 { 8, 3, 11}, { 8, 3, 17}, { 8, 3, 19}, { 8, 3, 21},
1021 { 8, 3, 23}, { 8, 3, 24}, { 8, 3, 27}, { 8, 3, 29},
1022 { 8, 4, 1}, { 8, 4, 2}, { 8, 4, 5}, { 8, 4, 9},
1023 { 8, 4, 17}, { 8, 4, 19}, { 8, 4, 21}, { 8, 4, 22},
1024 { 8, 4, 23}, { 8, 4, 24}, { 8, 5, 1}, { 8, 5, 2},
1025 { 8, 5, 9}, { 8, 5, 23}, { 8, 7, 1}, { 8, 7, 2},
1026 { 8, 7, 5}, { 8, 7, 9}, { 8, 7, 11}, { 8, 7, 17},
1027 { 8, 7, 19}, { 8, 7, 21}, { 8, 7, 23}, { 8, 7, 24},
1028 { 8, 7, 29}, { 8, 10, 1}, { 8, 10, 2}, { 8, 10, 5},
1029 { 8, 10, 9}, { 8, 10, 17}, { 8, 10, 19}, { 8, 10, 21},
1030 { 8, 10, 22}, { 8, 10, 23}, { 8, 11, 1}, { 8, 11, 2},
1031 { 8, 11, 5}, { 8, 11, 9}, { 8, 11, 21}, { 8, 11, 22},
1032 { 8, 11, 23}, { 8, 11, 25}, { 8, 12, 1}, { 8, 13, 1},
1033 { 8, 13, 2}, { 8, 13, 4}, { 8, 13, 5}, { 8, 13, 9},
1034 { 8, 13, 11}, { 8, 13, 17}, { 8, 13, 19}, { 8, 13, 21},
1035 { 8, 13, 23}, { 8, 14, 1}, { 8, 14, 5}, { 8, 14, 22},
1036 { 8, 14, 23}, { 8, 18, 1}, { 8, 18, 5}, { 8, 18, 9},
1037 { 8, 18, 19}, { 8, 18, 21}, { 8, 18, 23}, { 8, 19, 1},
1038 { 8, 19, 5}, { 8, 19, 9}, { 8, 19, 19}, { 8, 19, 21},
1039 { 8, 20, 1}, { 8, 20, 2}, { 8, 20, 3}, { 8, 20, 5},
1040 { 8, 20, 8}, { 8, 20, 9}, { 8, 20, 10}, { 8, 20, 11},
1041 { 8, 20, 17}, { 8, 20, 19}, { 8, 20, 21}, { 8, 20, 23},
1042 { 8, 20, 27}, { 8, 20, 29}, { 8, 21, 1}, { 8, 21, 5},
1043 { 8, 21, 9}, { 8, 21, 19}, { 8, 21, 21}, { 8, 22, 1},
1044 { 8, 23, 1}, { 8, 23, 5}, { 8, 23, 9}, { 8, 26, 1},
1045 { 8, 26, 5}, { 8, 26, 9}, { 8, 26, 17}, { 8, 26, 21},
1046 { 8, 27, 1}, { 8, 27, 5}, { 8, 27, 9}, { 8, 27, 17},
1047 { 8, 27, 21}, { 8, 29, 1}, { 8, 29, 2}, { 8, 29, 5},
1048 { 8, 29, 8}, { 8, 29, 9}, { 8, 29, 11}, { 8, 29, 17},
1049 { 8, 29, 19}, { 8, 29, 21}, { 8, 29, 22}, { 8, 29, 23},
1050 { 8, 29, 25}, { 8, 29, 27}, { 9, 3, 1}, { 9, 3, 2},
1051 { 9, 3, 3}, { 9, 3, 4}, { 9, 3, 5}, { 9, 3, 8},
1052 { 9, 3, 9}, { 9, 3, 10}, { 9, 3, 11}, { 9, 3, 12},
1053 { 9, 3, 17}, { 9, 3, 19}, { 9, 3, 21}, { 9, 3, 23},
1054 { 9, 3, 27}, { 9, 4, 1}, { 9, 4, 2}, { 9, 4, 5},
1055 { 9, 4, 9}, { 9, 4, 17}, { 9, 4, 19}, { 9, 4, 21},
1056 { 9, 4, 22}, { 9, 4, 23}, { 9, 4, 27}, { 9, 5, 1},
1057 { 9, 5, 2}, { 9, 5, 5}, { 9, 5, 19}, { 9, 7, 1},
1058 { 9, 7, 2}, { 9, 7, 5}, { 9, 7, 8}, { 9, 7, 9},
1059 { 9, 7, 11}, { 9, 7, 17}, { 9, 7, 19}, { 9, 7, 21},
1060 { 9, 7, 23}, { 9, 7, 24}, { 9, 10, 1}, { 9, 10, 2},
1061 { 9, 10, 5}, { 9, 10, 8}, { 9, 10, 9}, { 9, 10, 17},
1062 { 9, 10, 19}, { 9, 10, 21}, { 9, 10, 22}, { 9, 10, 23},
1063 { 9, 11, 1}, { 9, 11, 2}, { 9, 11, 5}, { 9, 11, 9},
1064 { 9, 11, 19}, { 9, 11, 21}, { 9, 11, 22}, { 9, 11, 23},
1065 { 9, 11, 27}, { 9, 12, 1}, { 9, 12, 5}, { 9, 13, 1},
1066 { 9, 13, 2}, { 9, 13, 3}, { 9, 13, 5}, { 9, 13, 9},
1067 { 9, 13, 17}, { 9, 13, 19}, { 9, 13, 21}, { 9, 13, 23},
1068 { 9, 14, 1}, { 9, 14, 5}, { 9, 14, 22}, { 9, 15, 1},
1069 { 9, 15, 22}, { 9, 18, 1}, { 9, 18, 2}, { 9, 18, 5},
1070 { 9, 18, 9}, { 9, 18, 17}, { 9, 18, 19}, { 9, 19, 1},
1071 { 9, 19, 5}, { 9, 20, 1}, { 9, 20, 2}, { 9, 20, 5},
1072 { 9, 20, 8}, { 9, 20, 9}, { 9, 20, 10}, { 9, 20, 11},
1073 { 9, 20, 17}, { 9, 20, 19}, { 9, 20, 21}, { 9, 20, 23},
1074 { 9, 20, 27}, { 9, 20, 28}, { 9, 21, 1}, { 9, 21, 9},
1075 { 9, 21, 22}, { 9, 22, 1}, { 9, 23, 1}, { 9, 23, 2},
1076 { 9, 23, 5}, { 9, 23, 9}, { 9, 23, 23}, { 9, 26, 1},
1077 { 9, 26, 5}, { 9, 26, 9}, { 9, 26, 17}, { 9, 26, 21},
1078 { 9, 26, 23}, { 9, 27, 1}, { 9, 27, 2}, { 9, 27, 5},
1079 { 9, 27, 9}, { 9, 27, 17}, { 9, 27, 19}, { 9, 27, 21},
1080 { 9, 29, 1}, { 9, 29, 2}, { 9, 29, 5}, { 9, 29, 9},
1081 { 9, 29, 11}, { 9, 29, 17}, { 9, 29, 19}, { 9, 29, 21},
1082 { 9, 29, 23}, { 9, 29, 24}, { 9, 29, 25}, { 10, 3, 1},
1083 { 10, 3, 2}, { 10, 3, 5}, { 10, 3, 9}, { 10, 3, 11},
1084 { 10, 3, 17}, { 10, 3, 19}, { 10, 3, 21}, { 10, 3, 22},
1085 { 10, 3, 23}, { 10, 3, 29}, { 10, 4, 1}, { 10, 4, 2},
1086 { 10, 4, 5}, { 10, 4, 9}, { 10, 4, 17}, { 10, 4, 19},
1087 { 10, 4, 21}, { 10, 4, 22}, { 10, 4, 23}, { 10, 5, 1},
1088 { 10, 5, 2}, { 10, 5, 17}, { 10, 7, 1}, { 10, 7, 2},
1089 { 10, 7, 5}, { 10, 7, 8}, { 10, 7, 9}, { 10, 7, 17},
1090 { 10, 7, 21}, { 10, 7, 22}, { 10, 7, 23}, { 10, 10, 1},
1091 { 10, 10, 23}, { 10, 11, 1}, { 10, 11, 2}, { 10, 11, 17},
1092 { 10, 11, 19}, { 10, 11, 21}, { 10, 11, 22}, { 10, 11, 23},
1093 { 10, 13, 1}, { 10, 13, 2}, { 10, 13, 5}, { 10, 13, 9},
1094 { 10, 13, 17}, { 10, 13, 19}, { 10, 13, 23}, { 10, 18, 1},
1095 { 10, 19, 1}, { 10, 19, 23}, { 10, 20, 1}, { 10, 20, 2},
1096 { 10, 20, 5}, { 10, 20, 9}, { 10, 20, 17}, { 10, 20, 21},
1097 { 10, 20, 23}, { 10, 26, 1}, { 10, 26, 23}, { 10, 27, 1},
1098 { 10, 27, 5}, { 10, 27, 9}, { 10, 27, 17}, { 10, 27, 19},
1099 { 10, 29, 1}, { 10, 29, 2}, { 10, 29, 5}, { 10, 29, 9},
1100 { 10, 29, 17}, { 10, 29, 19}, { 10, 29, 21}, { 10, 29, 23},
1101 { 11, 3, 1}, { 11, 3, 2}, { 11, 3, 4}, { 11, 3, 5},
1102 { 11, 3, 8}, { 11, 3, 9}, { 11, 3, 10}, { 11, 3, 11},
1103 { 11, 3, 17}, { 11, 3, 19}, { 11, 3, 21}, { 11, 3, 22},
1104 { 11, 3, 23}, { 11, 3, 27}, { 11, 4, 1}, { 11, 4, 2},
1105 { 11, 4, 5}, { 11, 4, 9}, { 11, 4, 17}, { 11, 4, 19},
1106 { 11, 4, 21}, { 11, 4, 22}, { 11, 4, 23}, { 11, 5, 1},
1107 { 11, 5, 2}, { 11, 5, 5}, { 11, 5, 9}, { 11, 5, 17},
1108 { 11, 5, 19}, { 11, 5, 21}, { 11, 5, 23}, { 11, 6, 1},
1109 { 11, 6, 5}, { 11, 6, 9}, { 11, 6, 17}, { 11, 6, 23},
1110 { 11, 7, 1}, { 11, 7, 2}, { 11, 7, 3}, { 11, 7, 4},
1111 { 11, 7, 5}, { 11, 7, 8}, { 11, 7, 9}, { 11, 7, 11},
1112 { 11, 7, 12}, { 11, 7, 17}, { 11, 7, 19}, { 11, 7, 21},
1113 { 11, 7, 22}, { 11, 7, 23}, { 11, 7, 28}, { 11, 10, 1},
1114 { 11, 10, 2}, { 11, 10, 5}, { 11, 10, 9}, { 11, 10, 17},
1115 { 11, 10, 19}, { 11, 10, 21}, { 11, 10, 22}, { 11, 10, 23},
1116 { 11, 11, 1}, { 11, 11, 2}, { 11, 11, 5}, { 11, 11, 9},
1117 { 11, 11, 17}, { 11, 11, 19}, { 11, 11, 21}, { 11, 11, 22},
1118 { 11, 11, 23}, { 11, 12, 1}, { 11, 12, 5}, { 11, 12, 9},
1119 { 11, 12, 23}, { 11, 13, 1}, { 11, 13, 2}, { 11, 13, 3},
1120 { 11, 13, 5}, { 11, 13, 9}, { 11, 13, 11}, { 11, 13, 17},
1121 { 11, 13, 19}, { 11, 13, 21}, { 11, 13, 23}, { 11, 13, 27},
1122 { 11, 14, 1}, { 11, 14, 2}, { 11, 14, 5}, { 11, 14, 9},
1123 { 11, 14, 23}, { 11, 15, 1}, { 11, 15, 5}, { 11, 15, 9},
1124 { 11, 15, 17}, { 11, 15, 21}, { 11, 15, 22}, { 11, 18, 1},
1125 { 11, 18, 5}, { 11, 18, 9}, { 11, 18, 17}, { 11, 18, 19},
1126 { 11, 18, 21}, { 11, 19, 1}, { 11, 19, 2}, { 11, 19, 5},
1127 { 11, 19, 9}, { 11, 19, 17}, { 11, 19, 19}, { 11, 19, 21},
1128 { 11, 19, 23}, { 11, 20, 1}, { 11, 20, 2}, { 11, 20, 5},
1129 { 11, 20, 8}, { 11, 20, 9}, { 11, 20, 17}, { 11, 20, 19},
1130 { 11, 20, 21}, { 11, 20, 23}, { 11, 20, 25}, { 11, 20, 27},
1131 { 11, 20, 28}, { 11, 21, 1}, { 11, 21, 22}, { 11, 22, 1},
1132 { 11, 22, 2}, { 11, 22, 5}, { 11, 22, 9}, { 11, 22, 17},
1133 { 11, 22, 23}, { 11, 23, 1}, { 11, 23, 2}, { 11, 23, 5},
1134 { 11, 23, 9}, { 11, 23, 17}, { 11, 23, 19}, { 11, 23, 21},
1135 { 11, 23, 23}, { 11, 26, 1}, { 11, 26, 2}, { 11, 26, 9},
1136 { 11, 26, 17}, { 11, 26, 21}, { 11, 26, 23}, { 11, 27, 1},
1137 { 11, 27, 2}, { 11, 27, 5}, { 11, 27, 9}, { 11, 27, 10},
1138 { 11, 27, 17}, { 11, 27, 19}, { 11, 27, 21}, { 11, 27, 23},
1139 { 11, 29, 1}, { 11, 29, 2}, { 11, 29, 5}, { 11, 29, 8},
1140 { 11, 29, 9}, { 11, 29, 16}, { 11, 29, 17}, { 11, 29, 19},
1141 { 11, 29, 21}, { 11, 29, 23}, { 11, 29, 28}, { 12, 3, 1},
1142 { 12, 3, 2}, { 12, 3, 4}, { 12, 3, 5}, { 12, 3, 9},
1143 { 12, 3, 17}, { 12, 3, 19}, { 12, 3, 22}, { 12, 3, 23},
1144 { 12, 3, 29}, { 12, 4, 1}, { 12, 4, 2}, { 12, 4, 5},
1145 { 12, 4, 9}, { 12, 4, 17}, { 12, 4, 19}, { 12, 4, 22},
1146 { 12, 4, 23}, { 12, 5, 23}, { 12, 7, 1}, { 12, 7, 2},
1147 { 12, 7, 5}, { 12, 7, 9}, { 12, 7, 11}, { 12, 7, 17},
1148 { 12, 7, 19}, { 12, 7, 22}, { 12, 7, 23}, { 12, 10, 1},
1149 { 12, 10, 5}, { 12, 10, 9}, { 12, 12, 5}, { 12, 13, 1},
1150 { 12, 13, 2}, { 12, 13, 5}, { 12, 13, 8}, { 12, 13, 9},
1151 { 12, 13, 11}, { 12, 13, 17}, { 12, 13, 19}, { 12, 13, 23},
1152 { 12, 14, 1}, { 12, 14, 2}, { 12, 14, 5}, { 12, 14, 22},
1153 { 12, 15, 1}, { 12, 15, 22}, { 12, 18, 1}, { 12, 18, 5},
1154 { 12, 18, 9}, { 12, 18, 17}, { 12, 18, 19}, { 12, 19, 1},
1155 { 12, 20, 1}, { 12, 20, 2}, { 12, 20, 5}, { 12, 20, 9},
1156 { 12, 20, 17}, { 12, 20, 19}, { 12, 20, 23}, { 12, 21, 1},
1157 { 12, 21, 22}, { 12, 22, 1}, { 12, 23, 1}, { 12, 23, 5},
1158 { 12, 26, 23}, { 12, 27, 1}, { 12, 27, 2}, { 12, 27, 5},
1159 { 12, 27, 9}, { 12, 27, 11}, { 12, 27, 16}, { 12, 27, 17},
1160 { 12, 27, 19}, { 12, 28, 1}, { 12, 28, 5}, { 12, 28, 9},
1161 { 12, 28, 17}, { 12, 29, 1}, { 12, 29, 2}, { 12, 29, 5},
1162 { 12, 29, 9}, { 12, 29, 17}, { 12, 29, 19}, { 12, 29, 21},
1163 { 12, 29, 23}, { 13, 3, 1}, { 13, 3, 2}, { 13, 3, 5},
1164 { 13, 3, 6}, { 13, 3, 7}, { 13, 3, 9}, { 13, 3, 10},
1165 { 13, 3, 11}, { 13, 3, 16}, { 13, 3, 17}, { 13, 3, 19},
1166 { 13, 3, 21}, { 13, 3, 22}, { 13, 3, 23}, { 13, 3, 27},
1167 { 13, 3, 28}, { 13, 4, 1}, { 13, 4, 2}, { 13, 4, 5},
1168 { 13, 4, 9}, { 13, 4, 17}, { 13, 4, 19}, { 13, 4, 21},
1169 { 13, 4, 22}, { 13, 4, 23}, { 13, 5, 1}, { 13, 5, 2},
1170 { 13, 5, 5}, { 13, 5, 9}, { 13, 5, 12}, { 13, 5, 17},
1171 { 13, 5, 19}, { 13, 5, 21}, { 13, 5, 23}, { 13, 5, 27},
1172 { 13, 5, 29}, { 13, 6, 1}, { 13, 6, 5}, { 13, 6, 9},
1173 { 13, 6, 19}, { 13, 7, 1}, { 13, 7, 2}, { 13, 7, 5},
1174 { 13, 7, 6}, { 13, 7, 8}, { 13, 7, 9}, { 13, 7, 10},
1175 { 13, 7, 11}, { 13, 7, 17}, { 13, 7, 19}, { 13, 7, 20},
1176 { 13, 7, 21}, { 13, 7, 22}, { 13, 7, 23}, { 13, 7, 24},
1177 { 13, 7, 26}, { 13, 7, 28}, { 13, 10, 1}, { 13, 10, 2},
1178 { 13, 10, 5}, { 13, 10, 9}, { 13, 10, 17}, { 13, 10, 19},
1179 { 13, 10, 21}, { 13, 10, 23}, { 13, 11, 1}, { 13, 11, 2},
1180 { 13, 11, 3}, { 13, 11, 5}, { 13, 11, 9}, { 13, 11, 11},
1181 { 13, 11, 12}, { 13, 11, 17}, { 13, 11, 19}, { 13, 11, 20},
1182 { 13, 11, 21}, { 13, 11, 22}, { 13, 11, 23}, { 13, 11, 27},
1183 { 13, 11, 28}, { 13, 11, 29}, { 13, 12, 1}, { 13, 12, 5},
1184 { 13, 12, 9}, { 13, 12, 17}, { 13, 12, 19}, { 13, 12, 21},
1185 { 13, 12, 22}, { 13, 13, 1}, { 13, 13, 2}, { 13, 13, 5},
1186 { 13, 13, 9}, { 13, 13, 10}, { 13, 13, 11}, { 13, 13, 13},
1187 { 13, 13, 16}, { 13, 13, 17}, { 13, 13, 19}, { 13, 13, 21},
1188 { 13, 13, 23}, { 13, 13, 25}, { 13, 14, 1}, { 13, 14, 2},
1189 { 13, 14, 5}, { 13, 14, 9}, { 13, 14, 17}, { 13, 14, 19},
1190 { 13, 14, 21}, { 13, 14, 22}, { 13, 14, 23}, { 13, 15, 1},
1191 { 13, 15, 2}, { 13, 15, 5}, { 13, 15, 17}, { 13, 15, 21},
1192 { 13, 15, 23}, { 13, 18, 1}, { 13, 18, 2}, { 13, 18, 5},
1193 { 13, 18, 9}, { 13, 18, 17}, { 13, 18, 19}, { 13, 18, 21},
1194 { 13, 18, 23}, { 13, 19, 1}, { 13, 19, 2}, { 13, 19, 5},
1195 { 13, 19, 9}, { 13, 19, 17}, { 13, 19, 19}, { 13, 19, 21},
1196 { 13, 19, 23}, { 13, 20, 1}, { 13, 20, 2}, { 13, 20, 5},
1197 { 13, 20, 9}, { 13, 20, 10}, { 13, 20, 11}, { 13, 20, 17},
1198 { 13, 20, 19}, { 13, 20, 21}, { 13, 20, 23}, { 13, 21, 1},
1199 { 13, 21, 2}, { 13, 21, 5}, { 13, 21, 9}, { 13, 21, 17},
1200 { 13, 21, 19}, { 13, 21, 22}, { 13, 21, 23}, { 13, 22, 1},
1201 { 13, 22, 2}, { 13, 22, 5}, { 13, 22, 9}, { 13, 22, 17},
1202 { 13, 22, 19}, { 13, 22, 23}, { 13, 23, 1}, { 13, 23, 2},
1203 { 13, 23, 5}, { 13, 23, 9}, { 13, 23, 17}, { 13, 23, 19},
1204 { 13, 23, 21}, { 13, 23, 23}, { 13, 26, 1}, { 13, 26, 2},
1205 { 13, 26, 5}, { 13, 26, 9}, { 13, 26, 17}, { 13, 26, 19},
1206 { 13, 26, 21}, { 13, 26, 23}, { 13, 26, 25}, { 13, 27, 1},
1207 { 13, 27, 2}, { 13, 27, 5}, { 13, 27, 9}, { 13, 27, 15},
1208 { 13, 27, 17}, { 13, 27, 19}, { 13, 27, 21}, { 13, 27, 23},
1209 { 13, 27, 24}, { 13, 27, 25}, { 13, 27, 26}, { 13, 27, 27},
1210 { 13, 27, 28}, { 13, 27, 29}, { 13, 28, 1}, { 13, 28, 5},
1211 { 13, 28, 9}, { 13, 28, 17}, { 13, 28, 21}, { 13, 29, 1},
1212 { 13, 29, 2}, { 13, 29, 5}, { 13, 29, 9}, { 13, 29, 10},
1213 { 13, 29, 11}, { 13, 29, 16}, { 13, 29, 17}, { 13, 29, 19},
1214 { 13, 29, 21}, { 13, 29, 22}, { 13, 29, 23}, { 13, 29, 24},
1215 { 13, 29, 28}, { 14, 3, 1}, { 14, 3, 2}, { 14, 3, 5},
1216 { 14, 3, 7}, { 14, 3, 8}, { 14, 3, 9}, { 14, 3, 11},
1217 { 14, 3, 17}, { 14, 3, 19}, { 14, 3, 21}, { 14, 3, 22},
1218 { 14, 3, 23}, { 14, 3, 24}, { 14, 4, 1}, { 14, 4, 2},
1219 { 14, 4, 5}, { 14, 4, 9}, { 14, 4, 17}, { 14, 4, 19},
1220 { 14, 4, 21}, { 14, 4, 22}, { 14, 4, 23}, { 14, 5, 1},
1221 { 14, 5, 2}, { 14, 5, 5}, { 14, 5, 7}, { 14, 5, 9},
1222 { 14, 5, 17}, { 14, 5, 23}, { 14, 6, 1}, { 14, 6, 5},
1223 { 14, 6, 9}, { 14, 7, 1}, { 14, 7, 2}, { 14, 7, 5},
1224 { 14, 7, 9}, { 14, 7, 11}, { 14, 7, 17}, { 14, 7, 19},
1225 { 14, 7, 21}, { 14, 7, 23}, { 14, 7, 24}, { 14, 10, 1},
1226 { 14, 10, 2}, { 14, 10, 5}, { 14, 10, 9}, { 14, 10, 17},
1227 { 14, 10, 19}, { 14, 10, 21}, { 14, 10, 23}, { 14, 11, 1},
1228 { 14, 11, 5}, { 14, 11, 9}, { 14, 11, 17}, { 14, 11, 19},
1229 { 14, 11, 22}, { 14, 11, 23}, { 14, 12, 1}, { 14, 13, 1},
1230 { 14, 13, 2}, { 14, 13, 5}, { 14, 13, 9}, { 14, 13, 11},
1231 { 14, 13, 17}, { 14, 13, 19}, { 14, 13, 21}, { 14, 13, 23},
1232 { 14, 13, 24}, { 14, 13, 25}, { 14, 13, 29}, { 14, 14, 1},
1233 { 14, 14, 2}, { 14, 14, 9}, { 14, 14, 19}, { 14, 14, 21},
1234 { 14, 14, 23}, { 14, 15, 1}, { 14, 15, 22}, { 14, 15, 23},
1235 { 14, 18, 1}, { 14, 18, 5}, { 14, 18, 9}, { 14, 18, 17},
1236 { 14, 18, 19}, { 14, 18, 21}, { 14, 18, 23}, { 14, 19, 1},
1237 { 14, 19, 2}, { 14, 19, 5}, { 14, 19, 23}, { 14, 20, 1},
1238 { 14, 20, 2}, { 14, 20, 5}, { 14, 20, 9}, { 14, 20, 10},
1239 { 14, 20, 11}, { 14, 20, 17}, { 14, 20, 19}, { 14, 20, 21},
1240 { 14, 20, 23}, { 14, 21, 1}, { 14, 21, 22}, { 14, 22, 1},
1241 { 14, 23, 1}, { 14, 23, 2}, { 14, 23, 5}, { 14, 23, 9},
1242 { 14, 23, 17}, { 14, 23, 19}, { 14, 23, 21}, { 14, 26, 1},
1243 { 14, 26, 5}, { 14, 26, 9}, { 14, 26, 17}, { 14, 27, 1},
1244 { 14, 27, 2}, { 14, 27, 5}, { 14, 27, 9}, { 14, 27, 17},
1245 { 14, 27, 19}, { 14, 27, 21}, { 14, 27, 23}, { 14, 29, 1},
1246 { 14, 29, 2}, { 14, 29, 5}, { 14, 29, 8}, { 14, 29, 9},
1247 { 14, 29, 11}, { 14, 29, 17}, { 14, 29, 19}, { 14, 29, 21},
1248 { 14, 29, 23}, { 14, 29, 24}, { 14, 29, 27}, { 14, 29, 28},
1249 { 15, 3, 1}, { 15, 3, 2}, { 15, 3, 5}, { 15, 3, 7},
1250 { 15, 3, 9}, { 15, 3, 12}, { 15, 3, 17}, { 15, 3, 19},
1251 { 15, 3, 21}, { 15, 3, 22}, { 15, 3, 23}, { 15, 4, 1},
1252 { 15, 4, 2}, { 15, 4, 5}, { 15, 4, 9}, { 15, 4, 17},
1253 { 15, 4, 19}, { 15, 4, 21}, { 15, 4, 22}, { 15, 4, 23},
1254 { 15, 5, 1}, { 15, 5, 5}, { 15, 5, 23}, { 15, 7, 1},
1255 { 15, 7, 2}, { 15, 7, 5}, { 15, 7, 9}, { 15, 7, 17},
1256 { 15, 7, 19}, { 15, 7, 21}, { 15, 7, 22}, { 15, 7, 23},
1257 { 15, 10, 1}, { 15, 10, 23}, { 15, 11, 1}, { 15, 11, 22},
1258 { 15, 13, 1}, { 15, 13, 2}, { 15, 13, 5}, { 15, 13, 9},
1259 { 15, 13, 17}, { 15, 13, 19}, { 15, 13, 21}, { 15, 13, 23},
1260 { 15, 13, 25}, { 15, 14, 1}, { 15, 14, 2}, { 15, 14, 9},
1261 { 15, 14, 22}, { 15, 15, 1}, { 15, 15, 22}, { 15, 18, 1},
1262 { 15, 18, 5}, { 15, 18, 9}, { 15, 18, 17}, { 15, 18, 19},
1263 { 15, 19, 23}, { 15, 20, 1}, { 15, 20, 2}, { 15, 20, 5},
1264 { 15, 20, 9}, { 15, 20, 17}, { 15, 20, 19}, { 15, 20, 23},
1265 { 15, 21, 1}, { 15, 21, 22}, { 15, 21, 23}, { 15, 23, 1},
1266 { 15, 26, 1}, { 15, 27, 1}, { 15, 27, 17}, { 15, 27, 21},
1267 { 15, 27, 23}, { 15, 29, 1}, { 15, 29, 2}, { 15, 29, 5},
1268 { 15, 29, 9}, { 15, 29, 17}, { 15, 29, 19}, { 15, 29, 23},
1269 { 15, 29, 24}, { 15, 29, 29}, { 16, 3, 1}, { 16, 3, 2},
1270 { 16, 3, 5}, { 16, 3, 7}, { 16, 3, 9}, { 16, 3, 17},
1271 { 16, 3, 19}, { 16, 3, 21}, { 16, 3, 22}, { 16, 3, 23},
1272 { 16, 3, 24}, { 16, 4, 1}, { 16, 4, 2}, { 16, 4, 5},
1273 { 16, 4, 9}, { 16, 4, 17}, { 16, 4, 19}, { 16, 4, 21},
1274 { 16, 4, 22}, { 16, 4, 23}, { 16, 5, 1}, { 16, 5, 5},
1275 { 16, 5, 7}, { 16, 5, 9}, { 16, 5, 17}, { 16, 5, 23},
1276 { 16, 7, 1}, { 16, 7, 2}, { 16, 7, 5}, { 16, 7, 9},
1277 { 16, 7, 17}, { 16, 7, 19}, { 16, 7, 21}, { 16, 7, 22},
1278 { 16, 7, 23}, { 16, 10, 1}, { 16, 10, 2}, { 16, 10, 5},
1279 { 16, 10, 9}, { 16, 10, 17}, { 16, 10, 19}, { 16, 10, 21},
1280 { 16, 10, 23}, { 16, 11, 1}, { 16, 11, 5}, { 16, 11, 22},
1281 { 16, 12, 1}, { 16, 12, 5}, { 16, 12, 23}, { 16, 13, 1},
1282 { 16, 13, 2}, { 16, 13, 5}, { 16, 13, 9}, { 16, 13, 17},
1283 { 16, 13, 19}, { 16, 13, 21}, { 16, 13, 23}, { 16, 14, 1},
1284 { 16, 14, 5}, { 16, 14, 9}, { 16, 14, 23}, { 16, 18, 1},
1285 { 16, 18, 5}, { 16, 18, 9}, { 16, 18, 17}, { 16, 18, 19},
1286 { 16, 18, 21}, { 16, 18, 23}, { 16, 19, 1}, { 16, 19, 17},
1287 { 16, 20, 1}, { 16, 20, 2}, { 16, 20, 5}, { 16, 20, 9},
1288 { 16, 20, 17}, { 16, 20, 19}, { 16, 20, 21}, { 16, 20, 23},
1289 { 16, 21, 1}, { 16, 21, 22}, { 16, 22, 1}, { 16, 22, 5},
1290 { 16, 23, 1}, { 16, 23, 5}, { 16, 23, 9}, { 16, 23, 17},
1291 { 16, 23, 19}, { 16, 23, 21}, { 16, 23, 23}, { 16, 26, 1},
1292 { 16, 26, 5}, { 16, 26, 9}, { 16, 26, 17}, { 16, 26, 23},
1293 { 16, 27, 1}, { 16, 27, 2}, { 16, 27, 5}, { 16, 27, 9},
1294 { 16, 27, 17}, { 16, 27, 19}, { 16, 27, 21}, { 16, 27, 23},
1295 { 16, 29, 1}, { 16, 29, 2}, { 16, 29, 5}, { 16, 29, 8},
1296 { 16, 29, 9}, { 16, 29, 10}, { 16, 29, 17}, { 16, 29, 19},
1297 { 16, 29, 21}, { 16, 29, 23}, { 17, 3, 1}, { 17, 3, 2},
1298 { 17, 3, 5}, { 17, 3, 9}, { 17, 3, 17}, { 17, 3, 19},
1299 { 17, 3, 21}, { 17, 3, 23}, { 17, 4, 1}, { 17, 4, 2},
1300 { 17, 4, 5}, { 17, 4, 9}, { 17, 4, 17}, { 17, 4, 19},
1301 { 17, 4, 21}, { 17, 4, 22}, { 17, 4, 23}, { 17, 5, 1},
1302 { 17, 5, 2}, { 17, 5, 23}, { 17, 7, 1}, { 17, 7, 2},
1303 { 17, 7, 5}, { 17, 7, 8}, { 17, 7, 9}, { 17, 7, 17},
1304 { 17, 7, 19}, { 17, 7, 21}, { 17, 7, 22}, { 17, 7, 23},
1305 { 17, 10, 1}, { 17, 10, 2}, { 17, 10, 5}, { 17, 10, 9},
1306 { 17, 10, 17}, { 17, 10, 19}, { 17, 10, 21}, { 17, 10, 23},
1307 { 17, 11, 1}, { 17, 11, 5}, { 17, 11, 9}, { 17, 11, 17},
1308 { 17, 11, 19}, { 17, 11, 21}, { 17, 11, 22}, { 17, 11, 23},
1309 { 17, 12, 1}, { 17, 13, 1}, { 17, 13, 2}, { 17, 13, 5},
1310 { 17, 13, 9}, { 17, 13, 17}, { 17, 13, 19}, { 17, 13, 21},
1311 { 17, 13, 23}, { 17, 14, 1}, { 17, 14, 2}, { 17, 14, 5},
1312 { 17, 14, 9}, { 17, 14, 17}, { 17, 14, 23}, { 17, 15, 1},
1313 { 17, 15, 23}, { 17, 18, 1}, { 17, 18, 9}, { 17, 19, 1},
1314 { 17, 20, 1}, { 17, 20, 2}, { 17, 20, 5}, { 17, 20, 9},
1315 { 17, 20, 17}, { 17, 20, 19}, { 17, 20, 21}, { 17, 20, 23},
1316 { 17, 21, 1}, { 17, 21, 5}, { 17, 21, 9}, { 17, 21, 23},
1317 { 17, 22, 1}, { 17, 22, 23}, { 17, 23, 1}, { 17, 23, 2},
1318 { 17, 23, 5}, { 17, 23, 9}, { 17, 23, 17}, { 17, 23, 19},
1319 { 17, 23, 21}, { 17, 23, 23}, { 17, 26, 1}, { 17, 26, 5},
1320 { 17, 26, 9}, { 17, 26, 17}, { 17, 27, 1}, { 17, 27, 2},
1321 { 17, 27, 5}, { 17, 27, 9}, { 17, 27, 17}, { 17, 27, 19},
1322 { 17, 27, 23}, { 17, 29, 1}, { 17, 29, 2}, { 17, 29, 5},
1323 { 17, 29, 9}, { 17, 29, 17}, { 17, 29, 19}, { 17, 29, 21},
1324 { 17, 29, 23}, { 18, 3, 1}, { 18, 3, 2}, { 18, 3, 5},
1325 { 18, 3, 9}, { 18, 3, 10}, { 18, 3, 17}, { 18, 3, 19},
1326 { 18, 3, 21}, { 18, 3, 22}, { 18, 3, 23}, { 18, 4, 1},
1327 { 18, 4, 2}, { 18, 4, 5}, { 18, 4, 9}, { 18, 4, 17},
1328 { 18, 4, 19}, { 18, 4, 21}, { 18, 4, 22}, { 18, 4, 23},
1329 { 18, 5, 1}, { 18, 5, 23}, { 18, 7, 1}, { 18, 7, 2},
1330 { 18, 7, 5}, { 18, 7, 9}, { 18, 7, 11}, { 18, 7, 17},
1331 { 18, 7, 19}, { 18, 7, 21}, { 18, 7, 22}, { 18, 7, 23},
1332 { 18, 10, 1}, { 18, 10, 2}, { 18, 10, 5}, { 18, 10, 9},
1333 { 18, 10, 17}, { 18, 10, 19}, { 18, 10, 21}, { 18, 10, 23},
1334 { 18, 11, 1}, { 18, 11, 5}, { 18, 11, 22}, { 18, 12, 1},
1335 { 18, 12, 5}, { 18, 13, 1}, { 18, 13, 2}, { 18, 13, 5},
1336 { 18, 13, 9}, { 18, 13, 17}, { 18, 13, 19}, { 18, 13, 21},
1337 { 18, 13, 23}, { 18, 13, 28}, { 18, 14, 1}, { 18, 14, 5},
1338 { 18, 15, 1}, { 18, 18, 1}, { 18, 18, 5}, { 18, 18, 21},
1339 { 18, 18, 23}, { 18, 19, 1}, { 18, 20, 1}, { 18, 20, 2},
1340 { 18, 20, 5}, { 18, 20, 9}, { 18, 20, 17}, { 18, 20, 19},
1341 { 18, 20, 21}, { 18, 20, 23}, { 18, 21, 1}, { 18, 21, 22},
1342 { 18, 22, 1}, { 18, 23, 1}, { 18, 23, 2}, { 18, 23, 5},
1343 { 18, 23, 9}, { 18, 23, 17}, { 18, 23, 19}, { 18, 23, 23},
1344 { 18, 26, 1}, { 18, 26, 5}, { 18, 26, 9}, { 18, 26, 17},
1345 { 18, 26, 23}, { 18, 27, 1}, { 18, 27, 2}, { 18, 27, 5},
1346 { 18, 27, 8}, { 18, 27, 9}, { 18, 27, 11}, { 18, 27, 17},
1347 { 18, 27, 19}, { 18, 27, 21}, { 18, 28, 1}, { 18, 28, 5},
1348 { 18, 28, 9}, { 18, 28, 17}, { 18, 28, 19}, { 18, 29, 1},
1349 { 18, 29, 2}, { 18, 29, 5}, { 18, 29, 9}, { 18, 29, 17},
1350 { 18, 29, 19}, { 18, 29, 21}, { 18, 29, 23}, { 19, 3, 1},
1351 { 19, 3, 2}, { 19, 3, 3}, { 19, 3, 5}, { 19, 3, 9},
1352 { 19, 3, 11}, { 19, 3, 17}, { 19, 3, 19}, { 19, 3, 21},
1353 { 19, 3, 22}, { 19, 3, 23}, { 19, 3, 27}, { 19, 4, 1},
1354 { 19, 4, 2}, { 19, 4, 5}, { 19, 4, 9}, { 19, 4, 17},
1355 { 19, 4, 19}, { 19, 4, 21}, { 19, 4, 22}, { 19, 4, 23},
1356 { 19, 5, 1}, { 19, 5, 2}, { 19, 7, 1}, { 19, 7, 2},
1357 { 19, 7, 5}, { 19, 7, 9}, { 19, 7, 17}, { 19, 7, 19},
1358 { 19, 7, 21}, { 19, 7, 22}, { 19, 7, 23}, { 19, 10, 1},
1359 { 19, 10, 2}, { 19, 10, 5}, { 19, 10, 9}, { 19, 10, 17},
1360 { 19, 10, 19}, { 19, 10, 21}, { 19, 10, 23}, { 19, 11, 1},
1361 { 19, 11, 5}, { 19, 11, 9}, { 19, 11, 17}, { 19, 11, 19},
1362 { 19, 11, 22}, { 19, 11, 23}, { 19, 12, 1}, { 19, 12, 9},
1363 { 19, 12, 19}, { 19, 12, 21}, { 19, 13, 1}, { 19, 13, 2},
1364 { 19, 13, 5}, { 19, 13, 9}, { 19, 13, 17}, { 19, 13, 19},
1365 { 19, 13, 21}, { 19, 13, 23}, { 19, 14, 1}, { 19, 14, 23},
1366 { 19, 18, 1}, { 19, 18, 5}, { 19, 19, 1}, { 19, 19, 5},
1367 { 19, 19, 9}, { 19, 19, 19}, { 19, 19, 21}, { 19, 20, 1},
1368 { 19, 20, 2}, { 19, 20, 5}, { 19, 20, 8}, { 19, 20, 9},
1369 { 19, 20, 11}, { 19, 20, 17}, { 19, 20, 19}, { 19, 20, 21},
1370 { 19, 20, 23}, { 19, 21, 1}, { 19, 21, 23}, { 19, 23, 1},
1371 { 19, 23, 5}, { 19, 23, 9}, { 19, 23, 17}, { 19, 23, 21},
1372 { 19, 26, 1}, { 19, 26, 5}, { 19, 26, 9}, { 19, 26, 17},
1373 { 19, 26, 21}, { 19, 26, 23}, { 19, 27, 1}, { 19, 27, 5},
1374 { 19, 27, 9}, { 19, 27, 17}, { 19, 27, 19}, { 19, 27, 21},
1375 { 19, 29, 1}, { 19, 29, 2}, { 19, 29, 5}, { 19, 29, 9},
1376 { 19, 29, 17}, { 19, 29, 19}, { 19, 29, 21}, { 19, 29, 23},
1377 { 20, 3, 1}, { 20, 3, 2}, { 20, 3, 5}, { 20, 3, 9},
1378 { 20, 3, 14}, { 20, 3, 17}, { 20, 3, 19}, { 20, 3, 21},
1379 { 20, 3, 23}, { 20, 4, 1}, { 20, 4, 2}, { 20, 4, 5},
1380 { 20, 4, 9}, { 20, 4, 17}, { 20, 4, 19}, { 20, 4, 21},
1381 { 20, 4, 22}, { 20, 4, 23}, { 20, 5, 1}, { 20, 5, 23},
1382 { 20, 7, 1}, { 20, 7, 2}, { 20, 7, 5}, { 20, 7, 9},
1383 { 20, 7, 11}, { 20, 7, 17}, { 20, 7, 19}, { 20, 7, 21},
1384 { 20, 7, 23}, { 20, 10, 1}, { 20, 10, 2}, { 20, 10, 5},
1385 { 20, 10, 9}, { 20, 10, 17}, { 20, 10, 19}, { 20, 10, 21},
1386 { 20, 10, 23}, { 20, 11, 1}, { 20, 11, 2}, { 20, 11, 5},
1387 { 20, 11, 9}, { 20, 11, 17}, { 20, 11, 19}, { 20, 11, 21},
1388 { 20, 11, 22}, { 20, 11, 23}, { 20, 12, 1}, { 20, 12, 5},
1389 { 20, 12, 9}, { 20, 12, 19}, { 20, 13, 1}, { 20, 13, 2},
1390 { 20, 13, 5}, { 20, 13, 9}, { 20, 13, 14}, { 20, 13, 17},
1391 { 20, 13, 19}, { 20, 13, 21}, { 20, 13, 23}, { 20, 13, 27},
1392 { 20, 14, 1}, { 20, 14, 2}, { 20, 14, 5}, { 20, 14, 9},
1393 { 20, 14, 21}, { 20, 14, 23}, { 20, 15, 1}, { 20, 15, 2},
1394 { 20, 15, 5}, { 20, 15, 21}, { 20, 15, 23}, { 20, 18, 1},
1395 { 20, 18, 2}, { 20, 18, 5}, { 20, 18, 9}, { 20, 18, 19},
1396 { 20, 18, 21}, { 20, 18, 23}, { 20, 19, 1}, { 20, 19, 5},
1397 { 20, 19, 9}, { 20, 19, 19}, { 20, 19, 21}, { 20, 20, 1},
1398 { 20, 20, 2}, { 20, 20, 5}, { 20, 20, 9}, { 20, 20, 14},
1399 { 20, 20, 17}, { 20, 20, 21}, { 20, 20, 23}, { 20, 21, 1},
1400 { 20, 21, 5}, { 20, 21, 9}, { 20, 21, 17}, { 20, 21, 23},
1401 { 20, 22, 1}, { 20, 22, 2}, { 20, 22, 5}, { 20, 22, 9},
1402 { 20, 22, 23}, { 20, 23, 1}, { 20, 23, 2}, { 20, 23, 5},
1403 { 20, 23, 9}, { 20, 23, 17}, { 20, 23, 19}, { 20, 23, 21},
1404 { 20, 23, 23}, { 20, 26, 1}, { 20, 26, 2}, { 20, 26, 5},
1405 { 20, 26, 9}, { 20, 26, 17}, { 20, 26, 21}, { 20, 26, 23},
1406 { 20, 27, 1}, { 20, 27, 2}, { 20, 27, 5}, { 20, 27, 7},
1407 { 20, 27, 8}, { 20, 27, 9}, { 20, 27, 10}, { 20, 27, 17},
1408 { 20, 27, 19}, { 20, 27, 21}, { 20, 27, 23}, { 20, 27, 27},
1409 { 20, 28, 1}, { 20, 28, 5}, { 20, 28, 9}, { 20, 28, 17},
1410 { 20, 28, 19}, { 20, 28, 23}, { 20, 29, 1}, { 20, 29, 2},
1411 { 20, 29, 5}, { 20, 29, 9}, { 20, 29, 17}, { 20, 29, 19},
1412 { 20, 29, 21}, { 20, 29, 23},
1413};
1414
1415
1416static const unsigned short ks_table2[][4] =
1417{
1418 {0xa4bf, 1, 3, 1}, {0xa4c0, 1, 4, 1},
1419 {0xa4c1, 1, 5, 1}, {0xa4c2, 1, 6, 1},
1420 {0xa4c3, 1, 7, 1}, {0xa4c4, 1, 10, 1},
1421 {0xa4c5, 1, 11, 1}, {0xa4c6, 1, 12, 1},
1422 {0xa4c7, 1, 13, 1}, {0xa4c8, 1, 14, 1},
1423 {0xa4c9, 1, 15, 1}, {0xa4ca, 1, 18, 1},
1424 {0xa4cb, 1, 19, 1}, {0xa4cc, 1, 20, 1},
1425 {0xa4cd, 1, 21, 1}, {0xa4ce, 1, 22, 1},
1426 {0xa4cf, 1, 23, 1}, {0xa4d0, 1, 26, 1},
1427 {0xa4d1, 1, 27, 1}, {0xa4d2, 1, 28, 1},
1428 {0xa4d3, 1, 29, 1}, {0xa4a1, 2, 2, 1},
1429 {0xa4a2, 3, 2, 1}, {0xa4a4, 4, 2, 1},
1430 {0xa4a7, 5, 2, 1}, {0xa4a8, 6, 2, 1},
1431 {0xa4a9, 7, 2, 1}, {0xa4b1, 8, 2, 1},
1432 {0xa4b2, 9, 2, 1}, {0xa4b3, 10, 2, 1},
1433 {0xa4b5, 11, 2, 1}, {0xa4b6, 12, 2, 1},
1434 {0xa4b7, 13, 2, 1}, {0xa4b8, 14, 2, 1},
1435 {0xa4b9, 15, 2, 1}, {0xa4ba, 16, 2, 1},
1436 {0xa4bb, 17, 2, 1}, {0xa4bc, 18, 2, 1},
1437 {0xa4bd, 19, 2, 1}, {0xa4be, 20, 2, 1},
1438};
1439
1440/* Á¶ÇÕÇü Ãʼº - ¿Ï¼ºÇü ³¹ÀÚ º¯È¯
1441 * conversion: initial sound of compound type - ??? of completion type
1442 */
1443
1444static const char_u johab_fcon_to_wan[] =
1445{
1446 0,
1447 0xd4, 0xa1, 0xa2, 0xa4, 0xa7, /* (ä¿ò),¤¡,¤¢,¤¤,¤§ */
1448 0xa8, 0xa9, 0xb1, 0xb2, 0xb3, /* ¤¨,¤©,¤±,¤²,¤³ */
1449 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, /* ¤µ,¤¶,¤·,¤¸,¤¹ */
1450 0xba, 0xbb, 0xbc, 0xbd, 0xbe /* ¤º,¤»,¤¼,¤½,¤¾ */
1451};
1452
1453/* Á¶ÇÕÇü Áß¼º -> ¿Ï¼ºÇü ³¹ÀÚ º¯È¯
1454 * conversion: medial vowel of compound type - ??? of completion type
1455 */
1456
1457static const char_u johab_vow_to_wan[] =
1458{
1459 0, 0,
1460 0xd4, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, /* (ä¿ò),¤¿,¤À,¤Á,¤Â,¤Ã */
1461 0, 0,
1462 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, /* ¤Ä,¤Å,¤Æ,¤Ç,¤Ç¤¿,¤Ç¤À */
1463 0, 0,
1464 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* ¤Ç¤Ó,¤Ë,¤Ì,¤Ì¤Ã,¤Ì¤Ä,¤Ì¤Ó */
1465 0, 0,
1466 0xd0, 0xd1, 0xd2, 0xd3 /* ¤Ð,¤Ñ,¤Ñ¤Ó,¤Ó */
1467};
1468
1469/* Á¶ÇÕÇü Á¾¼º -> ¿Ï¼ºÇü ³¹ÀÚ º¯È¯
1470 * conversion: final consonant of compound type - ??? of completion type
1471 */
1472
1473static const char_u johab_lcon_to_wan[] =
1474{
1475 0,
1476 0xd4, 0xa1, 0xa2, 0xa3, 0xa4, /* (ä¿ò), ¤¡, ¤¢, ¤¡¤µ, ¤¤ */
1477 0xa5, 0xa6, 0xa7, 0xa9, 0xaa, /* ¤¤¤¸, ¤¤¤¾, ¤§, ¤©, ¤©¤¡ */
1478 0xab, 0xac, 0xad, 0xae, 0xaf, /* ¤©¤±, ¤©¤², ¤©¤µ, ¤©¤¼, ¤©¤½ */
1479 0xb0, 0xb1, 0, 0xb2, 0xb4, /* ¤©¤¾, ¤±, 0, ¤², ¤²¤µ */
1480 0xb5, 0xb6, 0xb7, 0xb8, 0xba, /* ¤µ, ¤¶, ¤·, ¤¸, ¤º */
1481 0xbb, 0xbc, 0xbd, 0xbe /* ¤», ¤¼, ¤½, ¤¾ */
1482};
1483
1484 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001485convert_ks_to_3(
1486 const char_u *src,
1487 int *fp,
1488 int *mp,
1489 int *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490{
1491 int h = *src;
1492 int low = *(src + 1);
1493 int c;
1494 int i;
1495
1496 if ((i = han_index(h, low)) >= 0
Bram Moolenaar1be2ed62015-11-10 19:11:58 +01001497 && i < (int)(sizeof(ks_table1)/sizeof(ks_table1[0])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 {
1499 *fp = ks_table1[i][0];
1500 *mp = ks_table1[i][1];
1501 *lp = ks_table1[i][2];
1502 }
1503 else
1504 {
1505 c = (h << 8) | low;
1506 for (i = 0; i < 40; i++)
1507 if (ks_table2[i][0] == c)
1508 {
1509 *fp = ks_table2[i][1];
1510 *mp = ks_table2[i][2];
1511 *lp = ks_table2[i][3];
1512 return;
1513 }
1514 *fp = 0xff; /* ±×·¡ÇÈ ÄÚµå (graphic code) */
1515 *mp = h;
1516 *lp = low;
1517 }
1518}
1519
1520 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001521convert_3_to_ks(
1522 int fv,
1523 int mv,
1524 int lv,
1525 char_u *des)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526{
1527 char_u key[3];
1528 register int hi, lo, mi = 0, result, found;
1529
1530 if (fv == 0xff)
1531 {
1532 des[0] = mv;
1533 des[1] = lv;
1534 return 2;
1535 }
1536 key[0] = fv;
1537 key[1] = mv;
1538 key[2] = lv;
1539 lo = 0;
1540 hi = sizeof(ks_table1)/3 - 1;
1541 found = 0;
1542 while (lo + 1 < hi)
1543 {
1544 mi = (lo + hi)/2;
1545 result = STRNCMP(ks_table1[mi], key, 3);
1546 if (result == 0)
1547 {
1548 found = 1;
1549 break;
1550 }
1551 else if (result > 0)
1552 hi = mi;
1553 else
1554 lo = mi;
1555 }
1556 if (!found)
1557 {
1558 if (!STRNCMP(ks_table1[lo], key, 3))
1559 {
1560 found = 1;
1561 mi = lo;
1562 }
1563 if (!STRNCMP(ks_table1[hi], key, 3))
1564 {
1565 found = 1;
1566 mi = hi;
1567 }
1568 }
1569 if (!found)
1570 {
1571 for (mi = 0; mi < 40; mi++)
1572 if (ks_table2[mi][1] == fv && ks_table2[mi][2] == mv &&
1573 ks_table2[mi][3] == lv)
1574 {
1575 des[0] = (unsigned)(ks_table2[mi][0]) >> 8;
1576 des[1] = ks_table2[mi][0];
1577 return 2; /* found */
1578 }
1579 }
1580 else
1581 {
1582 des[0] = mi / (0xff-0xa1) + 0xb0;
1583 des[1] = mi % (0xff-0xa1) + 0xa1;
1584 return 2; /* found */
1585 }
1586
1587 /* ¿Ï¼ºÇü Ç¥¿¡ ¾ø´Ù. ``KS C 5601 - 1992 Á¤º¸ ±³È¯¿ë ºÎÈ£ ÇØ¼³''
1588 * 3.3 Àý¿¡ ¼³¸íµÈ ¹æ¹ýÀ¸·Î encoding ÇÑ´Ù.
1589 */
1590
1591 *des++ = 0xa4; /* ä¿ò */
1592 *des++ = 0xd4;
1593 *des++ = 0xa4; /* ³¹ÀÚ´Â ¸ðµÎ a4 Çà¿¡ ÀÖ´Ù. */
1594 *des++ = johab_fcon_to_wan[fv];
1595 *des++ = 0xa4;
1596 *des++ = johab_vow_to_wan[mv];
1597 *des++ = 0xa4;
1598 *des++ = johab_lcon_to_wan[lv];
1599 return 8;
1600}
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001601
1602 char_u *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001603hangul_string_convert(char_u *buf, int *p_len)
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001604{
1605 char_u *tmpbuf = NULL;
1606 vimconv_T vc;
1607
1608 if (enc_utf8)
1609 {
1610 vc.vc_type = CONV_NONE;
1611 if (convert_setup(&vc, (char_u *)"euc-kr", p_enc) == OK)
1612 {
1613 tmpbuf = string_convert(&vc, buf, p_len);
1614 convert_setup(&vc, NULL, NULL);
1615 }
1616 }
1617
1618 return tmpbuf;
1619}
1620
1621 char_u *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001622hangul_composing_buffer_get(int *p_len)
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001623{
1624 char_u *tmpbuf = NULL;
1625
1626 if (composing_hangul)
1627 {
1628 int len = 2;
1629
1630 tmpbuf = hangul_string_convert(composing_hangul_buffer, &len);
1631 if (tmpbuf != NULL)
1632 {
1633 *p_len = len;
1634 }
1635 else
1636 {
1637 tmpbuf = vim_strnsave(composing_hangul_buffer, 2);
1638 *p_len = 2;
1639 }
1640 }
1641
1642 return tmpbuf;
1643}