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,293 @@
1
+ # Pending: 'caseFirst="upper"' is not supported (http://unicode.org/cldr/trac/browser/tags/release-21/common/collation/da.xml#L176).
2
+
3
+ // X
4
+ x
5
+ x x
6
+ // X.
7
+ x.
8
+ x.x
9
+ // X0
10
+ x0
11
+ x0x
12
+ // X12
13
+ x12
14
+ x12x
15
+ // X2
16
+ x2
17
+ x2x
18
+ // XA
19
+ // Xa
20
+ // xA
21
+ xa
22
+ // XÁ
23
+ // Xá
24
+ // xÁ
25
+
26
+ // xAx
27
+ xax
28
+ // xÁx
29
+ xáx
30
+ // XB
31
+ // Xb
32
+ // xB
33
+ xb
34
+ // xBx
35
+ xbx
36
+ // XC
37
+ // Xc
38
+ // xC
39
+ xc
40
+ // xCx
41
+ xcx
42
+ // XD
43
+ // Xd
44
+ // xD
45
+ xd
46
+ // XĐ
47
+ // Xđ
48
+ // xĐ
49
+
50
+ // XÐ
51
+ // Xð
52
+ // xÐ
53
+
54
+ // xDx
55
+ xdx
56
+ // xĐx
57
+ xđx
58
+ // xÐx
59
+ xðx
60
+ // XE
61
+ // Xe
62
+ // xE
63
+ xe
64
+ // XÉ
65
+ // Xé
66
+ // xÉ
67
+
68
+ // XÈ
69
+ // Xè
70
+ // xÈ
71
+
72
+ // XÊ
73
+ // Xê
74
+ // xÊ
75
+
76
+ // XË
77
+ // Xë
78
+ // xË
79
+
80
+ // xEx
81
+ xex
82
+ // xÉx
83
+ xéx
84
+ // xÈx
85
+ xèx
86
+ // xÊx
87
+ xêx
88
+ // xËx
89
+ xëx
90
+ // XF
91
+ // Xf
92
+ // xF
93
+ xf
94
+ // xFx
95
+ xfx
96
+ // XG
97
+ // Xg
98
+ // xG
99
+ xg
100
+ // xGx
101
+ xgx
102
+ // XH
103
+ // Xh
104
+ // xH
105
+ xh
106
+ // xHx
107
+ xhx
108
+ // XI
109
+ // Xi
110
+ // xI
111
+ xi
112
+ // xIx
113
+ xix
114
+ // XJ
115
+ // Xj
116
+ // xJ
117
+ xj
118
+ // xJx
119
+ xjx
120
+ // XK
121
+ // Xk
122
+ // xK
123
+ xk
124
+ // xKx
125
+ xkx
126
+ // XL
127
+ // Xl
128
+ // xL
129
+ xl
130
+ // xLx
131
+ xlx
132
+ // XM
133
+ // Xm
134
+ // xM
135
+ xm
136
+ // xMx
137
+ xmx
138
+ // XN
139
+ // Xn
140
+ // xN
141
+ xn
142
+ // xNx
143
+ xnx
144
+ // XO
145
+ // Xo
146
+ // xO
147
+ xo
148
+ // xOx
149
+ xox
150
+ // XP
151
+ // Xp
152
+ // xP
153
+ xp
154
+ // xPx
155
+ xpx
156
+ // XQ
157
+ // Xq
158
+ // xQ
159
+ xq
160
+ // xQx
161
+ xqx
162
+ // XR
163
+ // Xr
164
+ // xR
165
+ xr
166
+ // xRx
167
+ xrx
168
+ // XS
169
+ // Xs
170
+ // xS
171
+ xs
172
+ // xSx
173
+ xsx
174
+ // XT
175
+ // Xt
176
+ // xT
177
+ xt
178
+ // XÞ
179
+ // Xþ
180
+ // xÞ
181
+
182
+ // xÞx
183
+ xþx
184
+ // xTx
185
+ xtx
186
+ // XU
187
+ // Xu
188
+ // xU
189
+ xu
190
+ // xUx
191
+ xux
192
+ // XV
193
+ // Xv
194
+ // xV
195
+ xv
196
+ // xVx
197
+ xvx
198
+ // XW
199
+ // Xw
200
+ // xW
201
+ xw
202
+ // xWx
203
+ xwx
204
+ // XX
205
+ // Xx
206
+ // xX
207
+ xx
208
+ // xXx
209
+ xxx
210
+ // XY
211
+ // Xy
212
+ // xY
213
+ xy
214
+ // XÜ
215
+ // Xü
216
+ // xÜ
217
+
218
+ // XŰ
219
+ // Xű
220
+ // xŰ
221
+
222
+ // xYx
223
+ xyx
224
+ // xÜx
225
+ xüx
226
+ // xŰx
227
+ xűx
228
+ // XZ
229
+ // Xz
230
+ // xZ
231
+ xz
232
+ // xZx
233
+ xzx
234
+ // XÆ
235
+ // Xæ
236
+ // xÆ
237
+
238
+ // XÄ
239
+ // Xä
240
+ // xÄ
241
+
242
+ // XĘ
243
+ // Xę
244
+ // xĘ
245
+
246
+ // xÆx
247
+ xæx
248
+ // xÄx
249
+ xäx
250
+ // xĘx
251
+ xęx
252
+ // XØ
253
+ // Xø
254
+ // xØ
255
+
256
+ // XÖ
257
+ // Xö
258
+ // xÖ
259
+
260
+ // XŐ
261
+ // Xő
262
+ // xŐ
263
+
264
+ // XŒ
265
+ // Xœ
266
+ // xŒ
267
+
268
+ // xØx
269
+ xøx
270
+ // xÖx
271
+ xöx
272
+ // xŐx
273
+ xőx
274
+ // xŒx
275
+ xœx
276
+
277
+ // XAA
278
+ XaA
279
+ // XAa
280
+
281
+ // Xaa
282
+
283
+ // xAA
284
+ xaA
285
+ // xAa
286
+
287
+ xaa
288
+ xÅx
289
+ // xAAx
290
+ xaAx
291
+ // xAax
292
+ xåx
293
+ xaax
@@ -0,0 +1,414 @@
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
+ xa
17
+ xA
18
+ Xa
19
+ XA
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
+ xæx
57
+ xÆx
58
+ xax
59
+ xAx
60
+ xáx
61
+ xÁx
62
+ xàx
63
+ xÀx
64
+ xăx
65
+ xĂx
66
+ xâx
67
+ xÂx
68
+ xåx
69
+ xÅx
70
+ xäx
71
+ xÄx
72
+ xãx
73
+ xÃx
74
+ xāx
75
+ xĀx
76
+ xb
77
+ xB
78
+ Xb
79
+ XB
80
+ xbx
81
+ xBx
82
+ xc
83
+ xC
84
+ Xc
85
+ XC
86
+
87
+
88
+
89
+
90
+ xcx
91
+ xCx
92
+ xçx
93
+ xÇx
94
+ xd
95
+ xD
96
+ Xd
97
+ XD
98
+ xdx
99
+ xDx
100
+ xe
101
+ xE
102
+ Xe
103
+ XE
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
+ xex
129
+ xEx
130
+ xéx
131
+ xÉx
132
+ xèx
133
+ xÈx
134
+ xĕx
135
+ xĔx
136
+ xêx
137
+ xÊx
138
+ xëx
139
+ xËx
140
+ xēx
141
+ xĒx
142
+ xf
143
+ xF
144
+ Xf
145
+ XF
146
+ xfx
147
+ xFx
148
+ xg
149
+ xG
150
+ Xg
151
+ XG
152
+ xgx
153
+ xGx
154
+ xh
155
+ xH
156
+ Xh
157
+ XH
158
+ xhx
159
+ xHx
160
+ xi
161
+ xI
162
+ Xi
163
+ XI
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
+ xix
189
+ xIx
190
+ xíx
191
+ xÍx
192
+ xìx
193
+ xÌx
194
+ xĭx
195
+ xĬx
196
+ xîx
197
+ xÎx
198
+ xïx
199
+ xÏx
200
+ xīx
201
+ xĪx
202
+ xj
203
+ xJ
204
+ Xj
205
+ XJ
206
+ xjx
207
+ xJx
208
+ xk
209
+ xK
210
+ Xk
211
+ XK
212
+ xkx
213
+ xKx
214
+ xl
215
+ xL
216
+ Xl
217
+ XL
218
+ xlx
219
+ xLx
220
+ xm
221
+ xM
222
+ Xm
223
+ XM
224
+ xmx
225
+ xMx
226
+ xn
227
+ xN
228
+ Xn
229
+ XN
230
+
231
+
232
+
233
+
234
+ xnx
235
+ xNx
236
+ xñx
237
+ xÑx
238
+ xo
239
+ xO
240
+ Xo
241
+ XO
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
+ xœx
275
+ xŒx
276
+ xox
277
+ xOx
278
+ xóx
279
+ xÓx
280
+ xòx
281
+ xÒx
282
+ xŏx
283
+ xŎx
284
+ xôx
285
+ xÔx
286
+ xöx
287
+ xÖx
288
+ xøx
289
+ xØx
290
+ xōx
291
+ xŌx
292
+ xp
293
+ xP
294
+ Xp
295
+ XP
296
+ xpx
297
+ xPx
298
+ xq
299
+ xQ
300
+ Xq
301
+ XQ
302
+ xqx
303
+ xQx
304
+ xr
305
+ xR
306
+ Xr
307
+ XR
308
+ xrx
309
+ xRx
310
+ xs
311
+ xS
312
+ Xs
313
+ XS
314
+ xss
315
+ xsS
316
+ xSs
317
+ xSS
318
+ Xss
319
+ XsS
320
+ XSs
321
+ XSS
322
+
323
+
324
+ xssx
325
+ xsSx
326
+ xSsx
327
+ xSSx
328
+ xßx
329
+ xsx
330
+ xSx
331
+ xt
332
+ xT
333
+ Xt
334
+ XT
335
+ xtx
336
+ xTx
337
+ xu
338
+ xU
339
+ Xu
340
+ XU
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
+ xux
366
+ xUx
367
+ xúx
368
+ xÚx
369
+ xùx
370
+ xÙx
371
+ xŭx
372
+ xŬx
373
+ xûx
374
+ xÛx
375
+ xüx
376
+ xÜx
377
+ xūx
378
+ xŪx
379
+ xv
380
+ xV
381
+ Xv
382
+ XV
383
+ xvx
384
+ xVx
385
+ xw
386
+ xW
387
+ Xw
388
+ XW
389
+ xwx
390
+ xWx
391
+ xx
392
+ xX
393
+ Xx
394
+ XX
395
+ xxx
396
+ xXx
397
+ xy
398
+ xY
399
+ Xy
400
+ XY
401
+ xÿ
402
+
403
+ Xÿ
404
+
405
+ xyx
406
+ xYx
407
+ xÿx
408
+ xŸx
409
+ xz
410
+ xZ
411
+ Xz
412
+ XZ
413
+ xzx
414
+ xZx