-
Notifications
You must be signed in to change notification settings - Fork 1
/
hannom-telex.schema.yaml
13816 lines (13789 loc) · 340 KB
/
hannom-telex.schema.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Rime schema
# encoding: utf-8
schema:
schema_id: hannom-telex
name: 漢喃Telex
version: "0.10"
author:
- Keepout2010 <Keepout2010@163.com>
- Mike Vo 武祥明 <info@miketvo.com>
description: |
Schema漢喃-Telex
dependencies:
- cangjie5
switches:
- name: ascii_mode
reset: 0
states: [ 中文, 西文 ]
- name: full_shape
states: [ 半角, 全角 ]
- name: hn_sp
states: [ 漢字, 汉字 ]
engine:
processors:
- ascii_composer
- recognizer
- key_binder
- speller
- punctuator
- selector
- navigator
- express_editor
segmentors:
- ascii_segmentor
- matcher
- abc_segmentor
- punct_segmentor
- fallback_segmentor
translators:
- punct_translator
- r10n_translator
- reverse_lookup_translator
filters:
- simplifier
- uniquifier
speller:
alphabet: Azyxwvutsrqponmlkjihgfedcba,
delimiter: " '"
algebra:
- abbrev/^([a-z]).+$/$1/
- derive/^(.*)[z,sxjfrA]$/$1/
translator:
dictionary: hannom-telex
prism: hannom-telex
spelling_hints: 10 # 〜字以內候選標註完整帶調拼音
enable_completion: false
preedit_format:
- 'xform ([aeiouâăôê])(ng|nh|ch)([sfjxr]) $1$3$2'
- 'xform ([aeiouâăôê])([iunptcmy])([sfjxr]) $1$3$2'
- 'xform ([ae])([ou])([sfjxr]) $1$3$2'
- 'xform (aw|ow|uw)([iunptcmy])([sfjxr]) $1$3$2'
- 'xform (aw|ow|uw)(ng|nh|ch)([sfjxr]) $1$3$2'
- 'xform (uow|thuow|phuow|quow|huow)([iunptcmy])([sfjxr]) $1$3$2'
- 'xform (uow|thuow|phuow|quow|huow)(ng|nh|ch)([sfjxr]) $1$3$2'
- 'xform z '
- 'xform , '
- 'xform A '
- 'xform dd đ'
- 'xform aa â'
- 'xform âs ấ'
- 'xform âf ầ'
- 'xform âj ậ'
- 'xform âx ẫ'
- 'xform âr ẩ'
- 'xform aw ă'
- 'xform ăs ắ'
- 'xform ăf ằ'
- 'xform ăj ặ'
- 'xform ăx ẵ'
- 'xform ăr ẳ'
- 'xform oo ô'
- 'xform ôs ố'
- 'xform ôf ồ'
- 'xform ôj ộ'
- 'xform ôx ỗ'
- 'xform ôr ổ'
- 'xform ee ê'
- 'xform ês ế'
- 'xform êf ề'
- 'xform êj ệ'
- 'xform êx ễ'
- 'xform êr ể'
- 'xform uw ư'
- 'xform ưs ứ'
- 'xform ưf ừ'
- 'xform ưj ự'
- 'xform ưx ữ'
- 'xform ưr ử'
- 'xform ow ơ'
- 'xform ơs ớ'
- 'xform ơf ờ'
- 'xform ơj ợ'
- 'xform ơx ỡ'
- 'xform ơr ở'
- 'xform as á'
- 'xform af à'
- 'xform aj ạ'
- 'xform ax ã'
- 'xform ar ả'
- 'xform is í'
- 'xform if ì'
- 'xform ij ị'
- 'xform ix ĩ'
- 'xform ir ỉ'
- 'xform us ú'
- 'xform uf ù'
- 'xform uj ụ'
- 'xform ux ũ'
- 'xform ur ủ'
- 'xform es é'
- 'xform ef è'
- 'xform ej ẹ'
- 'xform ex ẽ'
- 'xform er ẻ'
- 'xform os ó'
- 'xform of ò'
- 'xform oj ọ'
- 'xform ox õ'
- 'xform or ỏ'
- 'xform ys ý'
- 'xform yf ỳ'
- 'xform yj ỵ'
- 'xform yx ỹ'
- 'xform yr ỷ'
# Special ươ vowel nuclei rules - Uppercase and Lowercase
- 'xform uow ươ'
- 'xform ươw uow'
# Special uơ/ươ vowel nuclei rules - Uppercase and Lowercase
- 'xform quow quơ'
- 'xform quơw quow'
- 'xform huow huơ'
- 'xform thuow thuơ'
# Special uơ/ươ vowel nuclei rules - Uppercase and Lowercase - Reciprocal
- 'xform phuow phươ'
- 'xform chuow chươ'
# Special uơ/ươ vowel nuclei rules - Uppercase and Lowercase - Final modifiers
- 'xform huơm hươm'
- 'xform huơn hươn'
- 'xform huơc hươc'
- 'xform huơt hươt'
- 'xform huơp hươp'
- 'xform huớm hướm'
- 'xform huớn hướn'
- 'xform huớc hước'
- 'xform huớt hướt'
- 'xform huớp hướp'
- 'xform huờm hườm'
- 'xform huờn hườn'
- 'xform huờc hườc'
- 'xform huờt hườt'
- 'xform huờp hườp'
- 'xform huởm hưởm'
- 'xform huởn hưởn'
- 'xform huởc hưởc'
- 'xform huởt hưởt'
- 'xform huởp hưởp'
- 'xform huởm hưởm'
- 'xform huởn hưởn'
- 'xform huởc hưởc'
- 'xform huởt hưởt'
- 'xform huởp hưởp'
- 'xform huợm hượm'
- 'xform huợn hượn'
- 'xform huợc hược'
- 'xform huợt hượt'
- 'xform huợp hượp'
- 'xform aa â'
- 'xform aua âu'
- 'xform aya ây'
- 'xform ama âm'
- 'xform ana ân'
- 'xform anga âng'
- 'xform aca âc'
- 'xform ata ât'
- 'xform apa âp'
- 'xform ăa â'
- 'xform ăma âm'
- 'xform ăna ân'
- 'xform ănga âng'
- 'xform ăca âc'
- 'xform ăta ât'
- 'xform ăpa âp'
- 'xform ee ê'
- 'xform eme êm'
- 'xform ene ên'
- 'xform ete êt'
- 'xform epe êp'
- 'xform oo ô'
- 'xform oio ôi'
- 'xform omo ôm'
- 'xform ono ôn'
- 'xform ongo ông'
- 'xform oco ôc'
- 'xform oto ôt'
- 'xform opo ôp'
- 'xform aw ă'
- 'xform amw ăm'
- 'xform anw ăn'
- 'xform angw ăng'
- 'xform acw ăc'
- 'xform atw ăt'
- 'xform apw ăp'
- 'xform âw ă'
- 'xform âmw ăm'
- 'xform ânw ăn'
- 'xform ângw ăng'
- 'xform âcw ăc'
- 'xform âtw ăt'
- 'xform âpw ăp'
- 'xform ow ơ'
- 'xform oiw ơi'
- 'xform omw ơm'
- 'xform onw ơn'
- 'xform otw ơt'
- 'xform opw ơp'
- 'xform uw ư'
- 'xform uaw ưa'
- 'xform uiw ưi'
- 'xform umw ưm'
- 'xform unw ưn'
- 'xform ungw ưng'
- 'xform ucw ưc'
- 'xform utw ưt'
- 'xform as á'
- 'xform ás as'
- 'xform áf à'
- 'xform ár ả'
- 'xform áx ã'
- 'xform áj ạ'
- 'xform ăs ắ'
- 'xform ắs ăs'
- 'xform ắf ằ'
- 'xform ắr ẳ'
- 'xform ắx ẵ'
- 'xform ắj ặ'
- 'xform âs ấ'
- 'xform ấs âs'
- 'xform ấf ầ'
- 'xform ấr ẩ'
- 'xform ấx ẫ'
- 'xform ấj ậ'
- 'xform es é'
- 'xform és es'
- 'xform éf è'
- 'xform ér ẻ'
- 'xform éx ẽ'
- 'xform éj ẹ'
- 'xform ês ế'
- 'xform ếs ês'
- 'xform ếf ề'
- 'xform ếr ể'
- 'xform ếx ễ'
- 'xform ếj ệ'
- 'xform is í'
- 'xform ís is'
- 'xform íf ì'
- 'xform ír ỉ'
- 'xform íx ĩ'
- 'xform íj ị'
- 'xform os ó'
- 'xform ós os'
- 'xform óf ò'
- 'xform ór ỏ'
- 'xform óx õ'
- 'xform ój ọ'
- 'xform ôs ố'
- 'xform ốs ôs'
- 'xform ốf ồ'
- 'xform ốr ổ'
- 'xform ốx ỗ'
- 'xform ốj ộ'
- 'xform ơs ớ'
- 'xform ớs ơs'
- 'xform ớf ờ'
- 'xform ớr ở'
- 'xform ớx ỡ'
- 'xform ớj ợ'
- 'xform us ú'
- 'xform ús us'
- 'xform úf ù'
- 'xform úr ủ'
- 'xform úx ũ'
- 'xform új ụ'
- 'xform ưs ứ'
- 'xform ứs ưs'
- 'xform ứf ừ'
- 'xform ứr ử'
- 'xform ứx ữ'
- 'xform ứj ự'
- 'xform ys ý'
- 'xform ýs ys'
- 'xform ýf ỳ'
- 'xform ýr ỷ'
- 'xform ýx ỹ'
- 'xform ýj ỵ'
- 'xform iês iế'
- 'xform iếs iês'
- 'xform iếf iề'
- 'xform iếr iể'
- 'xform iếx iễ'
- 'xform iếj iệ'
- 'xform oas oá'
- 'xform oás oas'
- 'xform oáf oà'
- 'xform oár oả'
- 'xform oáx oã'
- 'xform oáj oạ'
- 'xform oăs oắ'
- 'xform oắs oăs'
- 'xform oắf oằ'
- 'xform oắr oẳ'
- 'xform oắx oẵ'
- 'xform oắj oặ'
- 'xform oes oé'
- 'xform oés oes'
- 'xform oéf oè'
- 'xform oér oẻ'
- 'xform oéx oẽ'
- 'xform oéj oẹ'
- 'xform oos oó'
- 'xform oós oos'
- 'xform oóf oò'
- 'xform oór oỏ'
- 'xform oóx oõ'
- 'xform oój oọ'
- 'xform uâs uấ'
- 'xform uấs uâs'
- 'xform uấf uầ'
- 'xform uấr uẩ'
- 'xform uấx uẫ'
- 'xform uấj uậ'
- 'xform uês uế'
- 'xform uếs uês'
- 'xform uếf uề'
- 'xform uếr uể'
- 'xform uếx uễ'
- 'xform uếj uệ'
- 'xform uôs uố'
- 'xform uốs uôs'
- 'xform uốf uồ'
- 'xform uốr uổ'
- 'xform uốx uỗ'
- 'xform uốj uộ'
- 'xform uys uý'
- 'xform uýs uys'
- 'xform uýf uỳ'
- 'xform uýr uỷ'
- 'xform uýx uỹ'
- 'xform uýj uỵ'
- 'xform ươs ướ'
- 'xform ướs ươs'
- 'xform ướf ườ'
- 'xform ướr ưở'
- 'xform ướx ưỡ'
- 'xform ướj ượ'
- 'xform uyês uyế'
- 'xform uyếs uyês'
- 'xform uyếf uyề'
- 'xform uyếr uyể'
- 'xform uyếx uyễ'
- 'xform uyếj uyệ'
- 'xform yês yế'
- 'xform yếs yês'
- 'xform yếf yề'
- 'xform yếr yể'
- 'xform yếx yễ'
- 'xform yếj yệ'
- 'xform ias ía'
- 'xform ías ias'
- 'xform íaf ìa'
- 'xform íar ỉa'
- 'xform íax ĩa'
- 'xform íaj ịa'
- 'xform uas úa'
- 'xform úas uas'
- 'xform úaf ùa'
- 'xform úar ủa'
- 'xform úax ũa'
- 'xform úaj ụa'
- 'xform ưas ứa'
- 'xform ứas ưas'
- 'xform ứaf ừa'
- 'xform ứar ửa'
- 'xform ứax ữa'
- 'xform ứaj ựa'
- 'xform uyas uýa'
- 'xform uýas uyas'
- 'xform uýaf uỳa'
- 'xform uýar uỷa'
- 'xform uýax uỹa'
- 'xform uýaj uỵa'
- 'xform ais ái'
- 'xform áis ais'
- 'xform áif ài'
- 'xform áir ải'
- 'xform áix ãi'
- 'xform áij ại'
- 'xform ois ói'
- 'xform óis ois'
- 'xform óif òi'
- 'xform óir ỏi'
- 'xform óix õi'
- 'xform óij ọi'
- 'xform ôis ối'
- 'xform ốis ôis'
- 'xform ốif ồi'
- 'xform ốir ổi'
- 'xform ốix ỗi'
- 'xform ốij ội'
- 'xform ơis ới'
- 'xform ớis ơis'
- 'xform ớif ời'
- 'xform ớir ởi'
- 'xform ớix ỡi'
- 'xform ớij ợi'
- 'xform uis úi'
- 'xform úis uis'
- 'xform úif ùi'
- 'xform úir ủi'
- 'xform úix ũi'
- 'xform úij ụi'
- 'xform ưis ứi'
- 'xform ứis ưis'
- 'xform ứif ừi'
- 'xform ứir ửi'
- 'xform ứix ữi'
- 'xform ứij ựi'
- 'xform oais oái'
- 'xform oáis oais'
- 'xform oáif oài'
- 'xform oáir oải'
- 'xform oáix oãi'
- 'xform oáij oại'
- 'xform uôis uối'
- 'xform uốis uôis'
- 'xform uốif uồi'
- 'xform uốir uổi'
- 'xform uốix uỗi'
- 'xform uốij uội'
- 'xform ươis ưới'
- 'xform ướis ươis'
- 'xform ướif ười'
- 'xform ướir ưởi'
- 'xform ướix ưỡi'
- 'xform ướij ượi'
- 'xform aos áo'
- 'xform áos aos'
- 'xform áof ào'
- 'xform áor ảo'
- 'xform áox ão'
- 'xform áoj ạo'
- 'xform eos éo'
- 'xform éos eos'
- 'xform éof èo'
- 'xform éor ẻo'
- 'xform éox ẽo'
- 'xform éoj ẹo'
- 'xform oaos oáo'
- 'xform oáos oaos'
- 'xform oáof oào'
- 'xform oáor oảo'
- 'xform oáox oão'
- 'xform oáoj oạo'
- 'xform oeos oéo'
- 'xform oéos oeos'
- 'xform oéof oèo'
- 'xform oéor oẻo'
- 'xform oéox oẽo'
- 'xform oéoj oẹo'
- 'xform aus áu'
- 'xform áus aus'
- 'xform áuf àu'
- 'xform áur ảu'
- 'xform áux ãu'
- 'xform áuj ạu'
- 'xform âus ấu'
- 'xform ấus âus'
- 'xform ấuf ầu'
- 'xform ấur ẩu'
- 'xform ấux ẫu'
- 'xform ấuj ậu'
- 'xform êus ếu'
- 'xform ếus êus'
- 'xform ếuf ều'
- 'xform ếur ểu'
- 'xform ếux ễu'
- 'xform ếuj ệu'
- 'xform ius íu'
- 'xform íus ius'
- 'xform íuf ìu'
- 'xform íur ỉu'
- 'xform íux ĩu'
- 'xform íuj ịu'
- 'xform ưus ứu'
- 'xform ứus ưus'
- 'xform ứuf ừu'
- 'xform ứur ửu'
- 'xform ứux ữu'
- 'xform ứuj ựu'
- 'xform iêus iếu'
- 'xform iếus iêus'
- 'xform iếuf iều'
- 'xform iếur iểu'
- 'xform iếux iễu'
- 'xform iếuj iệu'
- 'xform uyus uýu'
- 'xform uýus uyus'
- 'xform uýuf uỳu'
- 'xform uýur uỷu'
- 'xform uýux uỹu'
- 'xform uýuj uỵu'
- 'xform ươus ướu'
- 'xform ướus ươus'
- 'xform ướuf ườu'
- 'xform ướur ưởu'
- 'xform ướux ưỡu'
- 'xform ướuj ượu'
- 'xform yêus yếu'
- 'xform yếus yêus'
- 'xform yếuf yều'
- 'xform yếur yểu'
- 'xform yếux yễu'
- 'xform yếuj yệu'
- 'xform ays áy'
- 'xform áys ays'
- 'xform áyf ày'
- 'xform áyr ảy'
- 'xform áyx ãy'
- 'xform áyj ạy'
- 'xform âys ấy'
- 'xform ấys âys'
- 'xform ấyf ầy'
- 'xform ấyr ẩy'
- 'xform ấyx ẫy'
- 'xform ấyj ậy'
- 'xform oays oáy'
- 'xform oáys oays'
- 'xform oáyf oày'
- 'xform oáyr oảy'
- 'xform oáyx oãy'
- 'xform oáyj oạy'
- 'xform uâys uấy'
- 'xform uấys uâys'
- 'xform uấyf uầy'
- 'xform uấyr uẩy'
- 'xform uấyx uẫy'
- 'xform uấyj uậy'
- 'xform ams ám'
- 'xform áms ams'
- 'xform ámf àm'
- 'xform ámr ảm'
- 'xform ámx ãm'
- 'xform ámj ạm'
- 'xform ăms ắm'
- 'xform ắms ăms'
- 'xform ắmf ằm'
- 'xform ắmr ẳm'
- 'xform ắmx ẵm'
- 'xform ắmj ặm'
- 'xform âms ấm'
- 'xform ấms âms'
- 'xform ấmf ầm'
- 'xform ấmr ẩm'
- 'xform ấmx ẫm'
- 'xform ấmj ậm'
- 'xform ems ém'
- 'xform éms ems'
- 'xform émf èm'
- 'xform émr ẻm'
- 'xform émx ẽm'
- 'xform émj ẹm'
- 'xform êms ếm'
- 'xform ếms êms'
- 'xform ếmf ềm'
- 'xform ếmr ểm'
- 'xform ếmx ễm'
- 'xform ếmj ệm'
- 'xform ims ím'
- 'xform íms ims'
- 'xform ímf ìm'
- 'xform ímr ỉm'
- 'xform ímx ĩm'
- 'xform ímj ịm'
- 'xform oms óm'
- 'xform óms oms'
- 'xform ómf òm'
- 'xform ómr ỏm'
- 'xform ómx õm'
- 'xform ómj ọm'
- 'xform ôms ốm'
- 'xform ốms ôms'
- 'xform ốmf ồm'
- 'xform ốmr ổm'
- 'xform ốmx ỗm'
- 'xform ốmj ộm'
- 'xform ơms ớm'
- 'xform ớms ơms'
- 'xform ớmf ờm'
- 'xform ớmr ởm'
- 'xform ớmx ỡm'
- 'xform ớmj ợm'
- 'xform ums úm'
- 'xform úms ums'
- 'xform úmf ùm'
- 'xform úmr ủm'
- 'xform úmx ũm'
- 'xform úmj ụm'
- 'xform ưms ứm'
- 'xform ứms ưms'
- 'xform ứmf ừm'
- 'xform ứmr ửm'
- 'xform ứmx ữm'
- 'xform ứmj ựm'
- 'xform iêms iếm'
- 'xform iếms iêms'
- 'xform iếmf iềm'
- 'xform iếmr iểm'
- 'xform iếmx iễm'
- 'xform iếmj iệm'
- 'xform oams oám'
- 'xform oáms oams'
- 'xform oámf oàm'
- 'xform oámr oảm'
- 'xform oámx oãm'
- 'xform oámj oạm'
- 'xform oăms oắm'
- 'xform oắms oăms'
- 'xform oắmf oằm'
- 'xform oắmr oẳm'
- 'xform oắmx oẵm'
- 'xform oắmj oặm'
- 'xform oems oém'
- 'xform oéms oems'
- 'xform oémf oèm'
- 'xform oémr oẻm'
- 'xform oémx oẽm'
- 'xform oémj oẹm'
- 'xform uôms uốm'
- 'xform uốms uôms'
- 'xform uốmf uồm'
- 'xform uốmr uổm'
- 'xform uốmx uỗm'
- 'xform uốmj uộm'
- 'xform ươms ướm'
- 'xform ướms ươms'
- 'xform ướmf ườm'
- 'xform ướmr ưởm'
- 'xform ướmx ưỡm'
- 'xform ướmj ượm'
- 'xform yêms yếm'
- 'xform yếms yêms'
- 'xform yếmf yềm'
- 'xform yếmr yểm'
- 'xform yếmx yễm'
- 'xform yếmj yệm'
- 'xform ans án'
- 'xform áns ans'
- 'xform ánf àn'
- 'xform ánr ản'
- 'xform ánx ãn'
- 'xform ánj ạn'
- 'xform ăns ắn'
- 'xform ắns ăns'
- 'xform ắnf ằn'
- 'xform ắnr ẳn'
- 'xform ắnx ẵn'
- 'xform ắnj ặn'
- 'xform âns ấn'
- 'xform ấns âns'
- 'xform ấnf ần'
- 'xform ấnr ẩn'
- 'xform ấnx ẫn'
- 'xform ấnj ận'
- 'xform ens én'
- 'xform éns ens'
- 'xform énf èn'
- 'xform énr ẻn'
- 'xform énx ẽn'
- 'xform énj ẹn'
- 'xform êns ến'
- 'xform ếns êns'
- 'xform ếnf ền'
- 'xform ếnr ển'
- 'xform ếnx ễn'
- 'xform ếnj ện'
- 'xform ins ín'
- 'xform íns ins'
- 'xform ínf ìn'
- 'xform ínr ỉn'
- 'xform ínx ĩn'
- 'xform ínj ịn'
- 'xform ons ón'
- 'xform óns ons'
- 'xform ónf òn'
- 'xform ónr ỏn'
- 'xform ónx õn'
- 'xform ónj ọn'
- 'xform ôns ốn'
- 'xform ốns ôns'
- 'xform ốnf ồn'
- 'xform ốnr ổn'
- 'xform ốnx ỗn'
- 'xform ốnj ộn'
- 'xform ơns ớn'
- 'xform ớns ơns'
- 'xform ớnf ờn'
- 'xform ớnr ởn'
- 'xform ớnx ỡn'
- 'xform ớnj ợn'
- 'xform uns ún'
- 'xform úns uns'
- 'xform únf ùn'
- 'xform únr ủn'
- 'xform únx ũn'
- 'xform únj ụn'
- 'xform ưns ứn'
- 'xform ứns ưns'
- 'xform ứnf ừn'
- 'xform ứnr ửn'
- 'xform ứnx ữn'
- 'xform ứnj ựn'
- 'xform iêns iến'
- 'xform iếns iêns'
- 'xform iếnf iền'
- 'xform iếnr iển'
- 'xform iếnx iễn'
- 'xform iếnj iện'
- 'xform oans oán'
- 'xform oáns oans'
- 'xform oánf oàn'
- 'xform oánr oản'
- 'xform oánx oãn'
- 'xform oánj oạn'
- 'xform oăns oắn'
- 'xform oắns oăns'
- 'xform oắnf oằn'
- 'xform oắnr oẳn'
- 'xform oắnx oẵn'
- 'xform oắnj oặn'
- 'xform oens oén'
- 'xform oéns oens'
- 'xform oénf oèn'
- 'xform oénr oẻn'
- 'xform oénx oẽn'
- 'xform oénj oẹn'
- 'xform uâns uấn'
- 'xform uấns uâns'
- 'xform uấnf uần'
- 'xform uấnr uẩn'
- 'xform uấnx uẫn'
- 'xform uấnj uận'
- 'xform uôns uốn'
- 'xform uốns uôns'
- 'xform uốnf uồn'
- 'xform uốnr uổn'
- 'xform uốnx uỗn'
- 'xform uốnj uộn'
- 'xform uyns uýn'
- 'xform uýns uyns'
- 'xform uýnf uỳn'
- 'xform uýnr uỷn'
- 'xform uýnx uỹn'
- 'xform uýnj uỵn'
- 'xform ươns ướn'
- 'xform ướns ươns'
- 'xform ướnf ườn'
- 'xform ướnr ưởn'
- 'xform ướnx ưỡn'
- 'xform ướnj ượn'
- 'xform uyêns uyến'
- 'xform uyếns uyêns'
- 'xform uyếnf uyền'
- 'xform uyếnr uyển'
- 'xform uyếnx uyễn'
- 'xform uyếnj uyện'
- 'xform yêns yến'
- 'xform yếns yêns'
- 'xform yếnf yền'
- 'xform yếnr yển'
- 'xform yếnx yễn'
- 'xform yếnj yện'
- 'xform angs áng'
- 'xform ángs angs'
- 'xform ángf àng'
- 'xform ángr ảng'
- 'xform ángx ãng'
- 'xform ángj ạng'
- 'xform ăngs ắng'
- 'xform ắngs ăngs'
- 'xform ắngf ằng'
- 'xform ắngr ẳng'
- 'xform ắngx ẵng'
- 'xform ắngj ặng'
- 'xform ângs ấng'
- 'xform ấngs ângs'
- 'xform ấngf ầng'
- 'xform ấngr ẩng'
- 'xform ấngx ẫng'
- 'xform ấngj ậng'
- 'xform engs éng'
- 'xform éngs engs'
- 'xform éngf èng'
- 'xform éngr ẻng'
- 'xform éngx ẽng'
- 'xform éngj ẹng'
- 'xform ongs óng'
- 'xform óngs ongs'
- 'xform óngf òng'
- 'xform óngr ỏng'
- 'xform óngx õng'
- 'xform óngj ọng'
- 'xform ôngs ống'
- 'xform ốngs ôngs'
- 'xform ốngf ồng'
- 'xform ốngr ổng'
- 'xform ốngx ỗng'
- 'xform ốngj ộng'
- 'xform ungs úng'
- 'xform úngs ungs'
- 'xform úngf ùng'
- 'xform úngr ủng'
- 'xform úngx ũng'
- 'xform úngj ụng'
- 'xform ưngs ứng'
- 'xform ứngs ưngs'
- 'xform ứngf ừng'
- 'xform ứngr ửng'
- 'xform ứngx ững'
- 'xform ứngj ựng'
- 'xform iêngs iếng'
- 'xform iếngs iêngs'
- 'xform iếngf iềng'
- 'xform iếngr iểng'
- 'xform iếngx iễng'
- 'xform iếngj iệng'
- 'xform oangs oáng'
- 'xform oángs oangs'
- 'xform oángf oàng'
- 'xform oángr oảng'
- 'xform oángx oãng'
- 'xform oángj oạng'
- 'xform oăngs oắng'
- 'xform oắngs oăngs'
- 'xform oắngf oằng'
- 'xform oắngr oẳng'
- 'xform oắngx oẵng'
- 'xform oắngj oặng'
- 'xform oongs oóng'
- 'xform oóngs oongs'
- 'xform oóngf oòng'
- 'xform oóngr oỏng'
- 'xform oóngx oõng'
- 'xform oóngj oọng'
- 'xform uângs uấng'
- 'xform uấngs uângs'
- 'xform uấngf uầng'
- 'xform uấngr uẩng'
- 'xform uấngx uẫng'
- 'xform uấngj uậng'
- 'xform uôngs uống'
- 'xform uốngs uôngs'
- 'xform uốngf uồng'
- 'xform uốngr uổng'
- 'xform uốngx uỗng'
- 'xform uốngj uộng'
- 'xform ươngs ướng'
- 'xform ướngs ươngs'
- 'xform ướngf ường'
- 'xform ướngr ưởng'
- 'xform ướngx ưỡng'
- 'xform ướngj ượng'
- 'xform yêngs yếng'
- 'xform yếngs yêngs'
- 'xform yếngf yềng'
- 'xform yếngr yểng'
- 'xform yếngx yễng'
- 'xform yếngj yệng'
- 'xform anhs ánh'
- 'xform ánhs anhs'
- 'xform ánhf ành'
- 'xform ánhr ảnh'
- 'xform ánhx ãnh'
- 'xform ánhj ạnh'
- 'xform ênhs ếnh'
- 'xform ếnhs ênhs'
- 'xform ếnhf ềnh'
- 'xform ếnhr ểnh'
- 'xform ếnhx ễnh'
- 'xform ếnhj ệnh'
- 'xform inhs ính'
- 'xform ínhs inhs'
- 'xform ínhf ình'
- 'xform ínhr ỉnh'
- 'xform ínhx ĩnh'
- 'xform ínhj ịnh'
- 'xform oanhs oánh'
- 'xform oánhs oanhs'
- 'xform oánhf oành'
- 'xform oánhr oảnh'
- 'xform oánhx oãnh'
- 'xform oánhj oạnh'
- 'xform uênhs uếnh'
- 'xform uếnhs uênhs'
- 'xform uếnhf uềnh'
- 'xform uếnhr uểnh'
- 'xform uếnhx uễnh'
- 'xform uếnhj uệnh'
- 'xform uynhs uýnh'
- 'xform uýnhs uynhs'
- 'xform uýnhf uỳnh'
- 'xform uýnhr uỷnh'
- 'xform uýnhx uỹnh'
- 'xform uýnhj uỵnh'
- 'xform achs ách'
- 'xform áchs achs'
- 'xform áchf àch'
- 'xform áchr ảch'
- 'xform áchx ãch'
- 'xform áchj ạch'
- 'xform êchs ếch'
- 'xform ếchs êchs'
- 'xform ếchf ềch'
- 'xform ếchr ểch'
- 'xform ếchx ễch'
- 'xform ếchj ệch'
- 'xform ichs ích'
- 'xform íchs ichs'
- 'xform íchf ìch'
- 'xform íchr ỉch'
- 'xform íchx ĩch'
- 'xform íchj ịch'
- 'xform oachs oách'
- 'xform oáchs oachs'
- 'xform oáchf oàch'
- 'xform oáchr oảch'
- 'xform oáchx oãch'
- 'xform oáchj oạch'
- 'xform uêchs uếch'
- 'xform uếchs uêchs'
- 'xform uếchf uềch'
- 'xform uếchr uểch'
- 'xform uếchx uễch'
- 'xform uếchj uệch'
- 'xform uychs uých'
- 'xform uýchs uychs'
- 'xform uýchf uỳch'
- 'xform uýchr uỷch'
- 'xform uýchx uỹch'
- 'xform uýchj uỵch'
- 'xform acs ác'
- 'xform ács acs'
- 'xform ácf àc'
- 'xform ácr ảc'
- 'xform ácx ãc'
- 'xform ácj ạc'
- 'xform ăcs ắc'
- 'xform ắcs ăcs'
- 'xform ắcf ằc'
- 'xform ắcr ẳc'
- 'xform ắcx ẵc'
- 'xform ắcj ặc'
- 'xform âcs ấc'
- 'xform ấcs âcs'
- 'xform ấcf ầc'
- 'xform ấcr ẩc'
- 'xform ấcx ẫc'
- 'xform ấcj ậc'
- 'xform ecs éc'
- 'xform écs ecs'
- 'xform écf èc'
- 'xform écr ẻc'
- 'xform écx ẽc'
- 'xform écj ẹc'
- 'xform ocs óc'
- 'xform ócs ocs'
- 'xform ócf òc'
- 'xform ócr ỏc'
- 'xform ócx õc'
- 'xform ócj ọc'
- 'xform ôcs ốc'
- 'xform ốcs ôcs'