twitter_cldr 1.5.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (203) hide show
  1. data/Gemfile +32 -0
  2. data/History.txt +78 -0
  3. data/README.md +72 -62
  4. data/Rakefile +22 -0
  5. data/js/lib/compiler.rb +40 -0
  6. data/js/lib/mustache/bundle.coffee +14 -0
  7. data/js/lib/mustache/calendars/datetime.coffee +240 -0
  8. data/js/lib/mustache/calendars/timespan.coffee +52 -0
  9. data/js/lib/mustache/plurals/rules.coffee +14 -0
  10. data/js/lib/renderers/base.rb +18 -0
  11. data/js/lib/renderers/bundle.rb +18 -0
  12. data/js/lib/renderers/calendars/datetime_renderer.rb +34 -0
  13. data/js/lib/renderers/calendars/timespan_renderer.rb +39 -0
  14. data/js/lib/renderers/plurals/rules/plural_rules_compiler.rb +89 -0
  15. data/js/lib/renderers/plurals/rules/plural_rules_renderer.rb +26 -0
  16. data/js/lib/twitter_cldr_js.rb +85 -0
  17. data/js/spec/js/calendars/datetime_spec.js +418 -0
  18. data/js/spec/js/calendars/timespan_spec.js +91 -0
  19. data/js/spec/js/plurals/plural_rules_spec.js +28 -0
  20. data/js/spec/js/support/jasmine.yml +8 -0
  21. data/js/spec/rb/renderers/plurals/plural_rules_compiler_spec.rb +52 -0
  22. data/js/spec/rb/spec_helper.rb +13 -0
  23. data/lib/twitter_cldr.rb +2 -1
  24. data/lib/twitter_cldr/collation.rb +2 -1
  25. data/lib/twitter_cldr/collation/collator.rb +49 -31
  26. data/lib/twitter_cldr/collation/{sort_key.rb → sort_key_builder.rb} +31 -8
  27. data/lib/twitter_cldr/collation/trie.rb +116 -24
  28. data/lib/twitter_cldr/collation/trie_builder.rb +54 -28
  29. data/lib/twitter_cldr/collation/trie_with_fallback.rb +55 -0
  30. data/lib/twitter_cldr/core_ext/array.rb +14 -1
  31. data/lib/twitter_cldr/core_ext/calendars/datetime.rb +8 -2
  32. data/lib/twitter_cldr/core_ext/calendars/timespan.rb +5 -5
  33. data/lib/twitter_cldr/formatters/calendars/timespan_formatter.rb +10 -10
  34. data/lib/twitter_cldr/formatters/plurals/rules.rb +3 -5
  35. data/lib/twitter_cldr/resources.rb +11 -0
  36. data/lib/twitter_cldr/resources/import.rb +12 -0
  37. data/lib/twitter_cldr/resources/import/tailoring.rb +193 -0
  38. data/lib/twitter_cldr/{shared/resources.rb → resources/loader.rb} +17 -4
  39. data/lib/twitter_cldr/shared.rb +0 -1
  40. data/lib/twitter_cldr/tokenizers/base.rb +9 -9
  41. data/lib/twitter_cldr/tokenizers/calendars/datetime_tokenizer.rb +0 -4
  42. data/lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb +21 -7
  43. data/lib/twitter_cldr/utils.rb +11 -0
  44. data/lib/twitter_cldr/version.rb +1 -1
  45. data/resources/collation/tailoring/af.yml +3 -0
  46. data/resources/collation/tailoring/ar.yml +21 -0
  47. data/resources/collation/tailoring/ca.yml +9 -0
  48. data/resources/collation/tailoring/cs.yml +25 -0
  49. data/resources/collation/tailoring/da.yml +59 -0
  50. data/resources/collation/tailoring/de.yml +3 -0
  51. data/resources/collation/tailoring/el.yml +3 -0
  52. data/resources/collation/tailoring/en.yml +3 -0
  53. data/resources/collation/tailoring/es.yml +5 -0
  54. data/resources/collation/tailoring/eu.yml +3 -0
  55. data/resources/collation/tailoring/fa.yml +73 -0
  56. data/resources/collation/tailoring/fi.yml +61 -0
  57. data/resources/collation/tailoring/fil.yml +11 -0
  58. data/resources/collation/tailoring/fr.yml +3 -0
  59. data/resources/collation/tailoring/he.yml +3 -0
  60. data/resources/collation/tailoring/hi.yml +7 -0
  61. data/resources/collation/tailoring/hu.yml +125 -0
  62. data/resources/collation/tailoring/id.yml +3 -0
  63. data/resources/collation/tailoring/it.yml +3 -0
  64. data/resources/collation/tailoring/ja.yml +14647 -0
  65. data/resources/collation/tailoring/ko.yml +14953 -0
  66. data/resources/collation/tailoring/ms.yml +3 -0
  67. data/resources/collation/tailoring/nb.yml +59 -0
  68. data/resources/collation/tailoring/nl.yml +3 -0
  69. data/resources/collation/tailoring/pl.yml +37 -0
  70. data/resources/collation/tailoring/pt.yml +3 -0
  71. data/resources/collation/tailoring/ru.yml +3 -0
  72. data/resources/collation/tailoring/sv.yml +63 -0
  73. data/resources/collation/tailoring/th.yml +19 -0
  74. data/resources/collation/tailoring/tr.yml +27 -0
  75. data/resources/collation/tailoring/uk.yml +5 -0
  76. data/resources/collation/tailoring/ur.yml +163 -0
  77. data/resources/collation/tailoring/zh-Hant.yml +3 -0
  78. data/resources/collation/tailoring/zh.yml +149 -0
  79. data/resources/custom/locales/af/units.yml +19 -0
  80. data/resources/custom/locales/ar/units.yml +35 -0
  81. data/resources/custom/locales/ca/units.yml +19 -0
  82. data/resources/custom/locales/cs/units.yml +23 -0
  83. data/resources/custom/locales/da/units.yml +19 -0
  84. data/resources/custom/locales/de/units.yml +19 -0
  85. data/resources/custom/locales/el/units.yml +19 -0
  86. data/resources/custom/locales/en/units.yml +18 -0
  87. data/resources/custom/locales/es/units.yml +19 -0
  88. data/resources/custom/locales/eu/units.yml +19 -0
  89. data/resources/custom/locales/fa/units.yml +15 -0
  90. data/resources/custom/locales/fi/units.yml +19 -0
  91. data/resources/custom/locales/fil/units.yml +19 -0
  92. data/resources/custom/locales/fr/units.yml +19 -0
  93. data/resources/custom/locales/he/units.yml +19 -0
  94. data/resources/custom/locales/hi/units.yml +19 -0
  95. data/resources/custom/locales/hu/units.yml +15 -0
  96. data/resources/custom/locales/id/units.yml +15 -0
  97. data/resources/custom/locales/it/units.yml +19 -0
  98. data/resources/custom/locales/ja/units.yml +15 -0
  99. data/resources/custom/locales/ko/units.yml +15 -0
  100. data/resources/custom/locales/ms/units.yml +15 -0
  101. data/resources/custom/locales/nb/units.yml +19 -0
  102. data/resources/custom/locales/nl/units.yml +19 -0
  103. data/resources/custom/locales/pl/units.yml +23 -0
  104. data/resources/custom/locales/pt/units.yml +19 -0
  105. data/resources/custom/locales/ru/units.yml +27 -0
  106. data/resources/custom/locales/sv/units.yml +19 -0
  107. data/resources/custom/locales/th/units.yml +15 -0
  108. data/resources/custom/locales/tr/units.yml +15 -0
  109. data/resources/custom/locales/uk/units.yml +27 -0
  110. data/resources/custom/locales/ur/units.yml +19 -0
  111. data/resources/custom/locales/zh-Hant/units.yml +15 -0
  112. data/resources/custom/locales/zh/units.yml +15 -0
  113. data/resources/locales/af/units.yml +112 -65
  114. data/resources/locales/ar/units.yml +196 -126
  115. data/resources/locales/ca/units.yml +112 -70
  116. data/resources/locales/cs/units.yml +140 -91
  117. data/resources/locales/da/units.yml +98 -56
  118. data/resources/locales/de/units.yml +112 -70
  119. data/resources/locales/el/units.yml +119 -84
  120. data/resources/locales/en/units.yml +84 -42
  121. data/resources/locales/es/units.yml +112 -70
  122. data/resources/locales/eu/units.yml +105 -68
  123. data/resources/locales/fa/units.yml +98 -63
  124. data/resources/locales/fi/units.yml +112 -70
  125. data/resources/locales/fil/units.yml +98 -56
  126. data/resources/locales/fr/units.yml +112 -70
  127. data/resources/locales/he/units.yml +98 -56
  128. data/resources/locales/hi/units.yml +98 -56
  129. data/resources/locales/hu/units.yml +84 -49
  130. data/resources/locales/id/units.yml +84 -49
  131. data/resources/locales/it/units.yml +98 -56
  132. data/resources/locales/ja/units.yml +84 -49
  133. data/resources/locales/ko/units.yml +84 -49
  134. data/resources/locales/ms/units.yml +112 -63
  135. data/resources/locales/nb/units.yml +106 -64
  136. data/resources/locales/nl/units.yml +98 -56
  137. data/resources/locales/pl/units.yml +181 -112
  138. data/resources/locales/pt/units.yml +112 -70
  139. data/resources/locales/ru/units.yml +168 -112
  140. data/resources/locales/sv/units.yml +112 -70
  141. data/resources/locales/th/units.yml +84 -49
  142. data/resources/locales/tr/units.yml +84 -49
  143. data/resources/locales/uk/units.yml +168 -112
  144. data/resources/locales/ur/units.yml +112 -63
  145. data/resources/locales/zh-Hant/units.yml +84 -49
  146. data/resources/locales/zh/units.yml +84 -49
  147. data/spec/collation/collation_spec.rb +1 -1
  148. data/spec/collation/collator_spec.rb +120 -48
  149. data/spec/collation/sort_key_builder_spec.rb +80 -0
  150. data/spec/collation/tailoring_spec.rb +137 -0
  151. data/spec/collation/tailoring_tests/af.txt +321 -0
  152. data/spec/collation/tailoring_tests/ar.txt +188 -0
  153. data/spec/collation/tailoring_tests/ca.txt +446 -0
  154. data/spec/collation/tailoring_tests/cs.txt +273 -0
  155. data/spec/collation/tailoring_tests/da.txt +293 -0
  156. data/spec/collation/tailoring_tests/de.txt +414 -0
  157. data/spec/collation/tailoring_tests/el.txt +228 -0
  158. data/spec/collation/tailoring_tests/en.txt +399 -0
  159. data/spec/collation/tailoring_tests/es.txt +402 -0
  160. data/spec/collation/tailoring_tests/eu.txt +183 -0
  161. data/spec/collation/tailoring_tests/fa.txt +263 -0
  162. data/spec/collation/tailoring_tests/fi.txt +389 -0
  163. data/spec/collation/tailoring_tests/fil.txt +279 -0
  164. data/spec/collation/tailoring_tests/fr.txt +363 -0
  165. data/spec/collation/tailoring_tests/he.txt +167 -0
  166. data/spec/collation/tailoring_tests/hi.txt +230 -0
  167. data/spec/collation/tailoring_tests/hu.txt +773 -0
  168. data/spec/collation/tailoring_tests/id.txt +171 -0
  169. data/spec/collation/tailoring_tests/it.txt +231 -0
  170. data/spec/collation/tailoring_tests/ja.txt +4287 -0
  171. data/spec/collation/tailoring_tests/ko.txt +1761 -0
  172. data/spec/collation/tailoring_tests/ms.txt +531 -0
  173. data/spec/collation/tailoring_tests/nb.txt +375 -0
  174. data/spec/collation/tailoring_tests/nl.txt +273 -0
  175. data/spec/collation/tailoring_tests/pl.txt +225 -0
  176. data/spec/collation/tailoring_tests/pt.txt +405 -0
  177. data/spec/collation/tailoring_tests/ru.txt +213 -0
  178. data/spec/collation/tailoring_tests/sv.txt +353 -0
  179. data/spec/collation/tailoring_tests/th.txt +239 -0
  180. data/spec/collation/tailoring_tests/tr.txt +414 -0
  181. data/spec/collation/tailoring_tests/uk.txt +218 -0
  182. data/spec/collation/tailoring_tests/ur.txt +284 -0
  183. data/spec/collation/tailoring_tests/zh-Hant.txt +626 -0
  184. data/spec/collation/tailoring_tests/zh.txt +717 -0
  185. data/spec/collation/trie_builder_spec.rb +131 -51
  186. data/spec/collation/trie_spec.rb +301 -26
  187. data/spec/collation/trie_with_fallback_spec.rb +41 -0
  188. data/spec/core_ext/array_spec.rb +46 -3
  189. data/spec/core_ext/calendars/date_spec.rb +24 -24
  190. data/spec/core_ext/calendars/datetime_spec.rb +7 -0
  191. data/spec/core_ext/calendars/time_spec.rb +2 -2
  192. data/spec/formatters/calendars/timespan_formatter_spec.rb +47 -18
  193. data/spec/formatters/plurals/rules_spec.rb +3 -11
  194. data/spec/readme_spec.rb +15 -15
  195. data/spec/resources/loader_spec.rb +94 -0
  196. data/spec/spec_helper.rb +6 -0
  197. data/spec/tokenizers/calendars/timespan_tokenizer_spec.rb +1 -1
  198. data/spec/twitter_cldr_spec.rb +3 -3
  199. data/spec/utils_spec.rb +38 -0
  200. data/twitter_cldr.gemspec +25 -0
  201. metadata +156 -110
  202. data/spec/collation/sort_key_spec.rb +0 -56
  203. data/spec/shared/resources_spec.rb +0 -75
@@ -0,0 +1,717 @@
1
+ x
2
+ X
3
+ x x
4
+ x.
5
+ X.
6
+ x.x
7
+ x0
8
+ X0
9
+ x0x
10
+ x12
11
+ X12
12
+ x12x
13
+ x2
14
+ X2
15
+ x2x
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+ xa
33
+ xA
34
+ Xa
35
+ XA
36
+ xāx
37
+ xĀx
38
+ xáx
39
+ xÁx
40
+ xǎx
41
+ xǍx
42
+ xàx
43
+ xÀx
44
+ xax
45
+ xAx
46
+ xb
47
+ xB
48
+ Xb
49
+ XB
50
+ xbx
51
+ xBx
52
+ xc
53
+ xC
54
+ Xc
55
+ XC
56
+ xcx
57
+ xCx
58
+ xd
59
+ xD
60
+ Xd
61
+ XD
62
+ xdx
63
+ xDx
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+ xe
81
+ xE
82
+ Xe
83
+ XE
84
+ xê̄
85
+ xÊ̄
86
+ Xê̄
87
+ XÊ̄
88
+ xế
89
+ xẾ
90
+ Xế
91
+ XẾ
92
+ xê̌
93
+ xÊ̌
94
+ Xê̌
95
+ XÊ̌
96
+ xề
97
+ xỀ
98
+ Xề
99
+ XỀ
100
+ xēx
101
+ xĒx
102
+ xéx
103
+ xÉx
104
+ xěx
105
+ xĚx
106
+ xèx
107
+ xÈx
108
+ xex
109
+ xEx
110
+ xê̄x
111
+ xÊ̄x
112
+ xếx
113
+ xẾx
114
+ xê̌x
115
+ xÊ̌x
116
+ xềx
117
+ xỀx
118
+ xf
119
+ xF
120
+ Xf
121
+ XF
122
+ xfx
123
+ xFx
124
+ xg
125
+ xG
126
+ Xg
127
+ XG
128
+ xgx
129
+ xGx
130
+ xh
131
+ xH
132
+ Xh
133
+ XH
134
+ xhx
135
+ xHx
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+ xi
153
+ xI
154
+ Xi
155
+ XI
156
+ xīx
157
+ xĪx
158
+ xíx
159
+ xÍx
160
+ xǐx
161
+ xǏx
162
+ xìx
163
+ xÌx
164
+ xix
165
+ xIx
166
+ xj
167
+ xJ
168
+ Xj
169
+ XJ
170
+ xjx
171
+ xJx
172
+ xk
173
+ xK
174
+ Xk
175
+ XK
176
+ xkx
177
+ xKx
178
+ xl
179
+ xL
180
+ Xl
181
+ XL
182
+ xlx
183
+ xLx
184
+ xm̄
185
+ xM̄
186
+ Xm̄
187
+ XM̄
188
+ xḿ
189
+ xḾ
190
+ Xḿ
191
+ XḾ
192
+ xm̌
193
+ xM̌
194
+ Xm̌
195
+ XM̌
196
+ xm̀
197
+ xM̀
198
+ Xm̀
199
+ XM̀
200
+ xm
201
+ xM
202
+ Xm
203
+ XM
204
+ xm̄x
205
+ xM̄x
206
+ xḿx
207
+ xḾx
208
+ xm̌x
209
+ xM̌x
210
+ xm̀x
211
+ xM̀x
212
+ xmx
213
+ xMx
214
+ xn̄
215
+ xN̄
216
+ Xn̄
217
+ XN̄
218
+
219
+
220
+
221
+
222
+
223
+
224
+
225
+
226
+
227
+
228
+
229
+
230
+ xn
231
+ xN
232
+ Xn
233
+ XN
234
+ xn̄x
235
+ xN̄x
236
+ xńx
237
+ xŃx
238
+ xňx
239
+ xŇx
240
+ xǹx
241
+ xǸx
242
+ xnx
243
+ xNx
244
+
245
+
246
+
247
+
248
+
249
+
250
+
251
+
252
+
253
+
254
+
255
+
256
+
257
+
258
+
259
+
260
+ xo
261
+ xO
262
+ Xo
263
+ XO
264
+ xōx
265
+ xŌx
266
+ xóx
267
+ xÓx
268
+ xǒx
269
+ xǑx
270
+ xòx
271
+ xÒx
272
+ xox
273
+ xOx
274
+ xp
275
+ xP
276
+ Xp
277
+ XP
278
+ xpx
279
+ xPx
280
+ xq
281
+ xQ
282
+ Xq
283
+ XQ
284
+ xqx
285
+ xQx
286
+ xr
287
+ xR
288
+ Xr
289
+ XR
290
+ xrx
291
+ xRx
292
+ xs
293
+ xS
294
+ Xs
295
+ XS
296
+ xsx
297
+ xSx
298
+ xt
299
+ xT
300
+ Xt
301
+ XT
302
+ xtx
303
+ xTx
304
+
305
+
306
+
307
+
308
+
309
+
310
+
311
+
312
+
313
+
314
+
315
+
316
+
317
+
318
+
319
+
320
+ xu
321
+ xU
322
+ Xu
323
+ XU
324
+
325
+
326
+
327
+
328
+
329
+
330
+
331
+
332
+
333
+
334
+
335
+
336
+
337
+
338
+
339
+
340
+
341
+
342
+
343
+
344
+ xūx
345
+ xŪx
346
+ xúx
347
+ xÚx
348
+ xǔx
349
+ xǓx
350
+ xùx
351
+ xÙx
352
+ xux
353
+ xUx
354
+ xǖx
355
+ xǕx
356
+ xǘx
357
+ xǗx
358
+ xǚx
359
+ xǙx
360
+ xǜx
361
+ xǛx
362
+ xüx
363
+ xÜx
364
+ xw
365
+ xW
366
+ Xw
367
+ XW
368
+ xwx
369
+ xWx
370
+ xx
371
+ xX
372
+ Xx
373
+ XX
374
+ xxx
375
+ xXx
376
+ xy
377
+ xY
378
+ Xy
379
+ XY
380
+ xyx
381
+ xYx
382
+ xz
383
+ xZ
384
+ Xz
385
+ XZ
386
+ xzx
387
+ xZx
388
+ x一
389
+ X一
390
+ x一x
391
+ x丁
392
+ X丁
393
+ x丁x
394
+ x七
395
+ X七
396
+ x七x
397
+ x万
398
+ X万
399
+ x万x
400
+ x丈
401
+ X丈
402
+ x丈x
403
+ x三
404
+ X三
405
+ x三x
406
+ x上
407
+ X上
408
+ x上x
409
+ x下
410
+ X下
411
+ x下x
412
+ x丌
413
+ X丌
414
+ x丌x
415
+ x不
416
+ X不
417
+ x不x
418
+ x与
419
+ X与
420
+ x与x
421
+ x专
422
+ X专
423
+ x专x
424
+ x且
425
+ X且
426
+ x且x
427
+ x世
428
+ X世
429
+ x世x
430
+ x丘
431
+ X丘
432
+ x丘x
433
+ x丙
434
+ X丙
435
+ x丙x
436
+ x业
437
+ X业
438
+ x业x
439
+ x东
440
+ X东
441
+ x东x
442
+ x丝
443
+ X丝
444
+ x丝x
445
+ x丢
446
+ X丢
447
+ x丢x
448
+ x两
449
+ X两
450
+ x两x
451
+ x严
452
+ X严
453
+ x严x
454
+ x丧
455
+ X丧
456
+ x丧x
457
+ x个
458
+ X个
459
+ x个x
460
+ x中
461
+ X中
462
+ x中x
463
+ x丰
464
+ X丰
465
+ x丰x
466
+ x串
467
+ X串
468
+ x串x
469
+ x临
470
+ X临
471
+ x临x
472
+ x丸
473
+ X丸
474
+ x丸x
475
+ x丹
476
+ X丹
477
+ x丹x
478
+ x为
479
+ X为
480
+ x为x
481
+ x主
482
+ X主
483
+ x主x
484
+ x丽
485
+ X丽
486
+ x丽x
487
+ x举
488
+ X举
489
+ x举x
490
+ x乃
491
+ X乃
492
+ x乃x
493
+ x久
494
+ X久
495
+ x久x
496
+ x么
497
+ X么
498
+ x么x
499
+ x义
500
+ X义
501
+ x义x
502
+ x之
503
+ X之
504
+ x之x
505
+ x乌
506
+ X乌
507
+ x乌x
508
+ x乍
509
+ X乍
510
+ x乍x
511
+ x乎
512
+ X乎
513
+ x乎x
514
+ x乏
515
+ X乏
516
+ x乏x
517
+ x乐
518
+ X乐
519
+ x乐x
520
+ x乔
521
+ X乔
522
+ x乔x
523
+ x乖
524
+ X乖
525
+ x乖x
526
+ x乘
527
+ X乘
528
+ x乘x
529
+ x乙
530
+ X乙
531
+ x乙x
532
+ x九
533
+ X九
534
+ x九x
535
+ x也
536
+ X也
537
+ x也x
538
+ x习
539
+ X习
540
+ x习x
541
+ x乡
542
+ X乡
543
+ x乡x
544
+ x书
545
+ X书
546
+ x书x
547
+ x买
548
+ X买
549
+ x买x
550
+ x乱
551
+ X乱
552
+ x乱x
553
+ x乾
554
+ X乾
555
+ x乾x
556
+ x了
557
+ X了
558
+ x了x
559
+ x予
560
+ X予
561
+ x予x
562
+ x争
563
+ X争
564
+ x争x
565
+ x事
566
+ X事
567
+ x事x
568
+ x二
569
+ X二
570
+ x二x
571
+ x于
572
+ X于
573
+ x于x
574
+ x亏
575
+ X亏
576
+ x亏x
577
+ x云
578
+ X云
579
+ x云x
580
+ x互
581
+ X互
582
+ x互x
583
+ x五
584
+ X五
585
+ x五x
586
+ x井
587
+ X井
588
+ x井x
589
+ x亚
590
+ X亚
591
+ x亚x
592
+ x些
593
+ X些
594
+ x些x
595
+ x亡
596
+ X亡
597
+ x亡x
598
+ x交
599
+ X交
600
+ x交x
601
+ x亦
602
+ X亦
603
+ x亦x
604
+ x亨
605
+ X亨
606
+ x亨x
607
+ x享
608
+ X享
609
+ x享x
610
+ x京
611
+ X京
612
+ x京x
613
+ x亮
614
+ X亮
615
+ x亮x
616
+ x亲
617
+ X亲
618
+ x亲x
619
+ x人
620
+ X人
621
+ x人x
622
+ x亿
623
+ X亿
624
+ x亿x
625
+ x什
626
+ X什
627
+ x什x
628
+ x仁
629
+ X仁
630
+ x仁x
631
+ x仅
632
+ X仅
633
+ x仅x
634
+ x仇
635
+ X仇
636
+ x仇x
637
+ x今
638
+ X今
639
+ x今x
640
+ x介
641
+ X介
642
+ x介x
643
+ x仍
644
+ X仍
645
+ x仍x
646
+ x从
647
+ X从
648
+ x从x
649
+ x仔
650
+ X仔
651
+ x仔x
652
+ x他
653
+ X他
654
+ x他x
655
+ x付
656
+ X付
657
+ x付x
658
+ x仙
659
+ X仙
660
+ x仙x
661
+ x代
662
+ X代
663
+ x代x
664
+ x令
665
+ X令
666
+ x令x
667
+ x以
668
+ X以
669
+ x以x
670
+ x仪
671
+ X仪
672
+ x仪x
673
+ x们
674
+ X们
675
+ x们x
676
+ x仰
677
+ X仰
678
+ x仰x
679
+ x仲
680
+ X仲
681
+ x仲x
682
+ x件
683
+ X件
684
+ x件x
685
+ x任
686
+ X任
687
+ x任x
688
+ x份
689
+ X份
690
+ x份x
691
+ x仿
692
+ X仿
693
+ x仿x
694
+ x鼓
695
+ X鼓
696
+ x鼓x
697
+ x鼠
698
+ X鼠
699
+ x鼠x
700
+ x鼻
701
+ X鼻
702
+ x鼻x
703
+ x齐
704
+ X齐
705
+ x齐x
706
+ x齿
707
+ X齿
708
+ x齿x
709
+ x龄
710
+ X龄
711
+ x龄x
712
+ x龙
713
+ X龙
714
+ x龙x
715
+ x龟
716
+ X龟
717
+ x龟x