@read-frog/definitions 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +19 -7
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +18 -14
- package/dist/index.js.map +1 -1
- package/package.json +7 -4
- package/src/constants/app.ts +1 -0
- package/src/constants/auth.ts +6 -0
- package/src/constants/beta-access.ts +9 -0
- package/src/constants/column.ts +2 -0
- package/src/constants/dictionary.ts +2379 -0
- package/src/constants/url.ts +22 -0
- package/src/index.ts +10 -0
- package/src/schemas/cell-value.ts +54 -0
- package/src/schemas/version.ts +101 -0
- package/src/types/column.ts +60 -0
- package/src/types/languages.ts +905 -0
|
@@ -0,0 +1,2379 @@
|
|
|
1
|
+
import type { LangCodeISO6393 } from "@/types/languages"
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* This file is used to assemble a system prompt according to different languages.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
export interface DictionaryFieldLabels {
|
|
8
|
+
pronunciation: string // The name of the language's mainstream phonetic/romanization scheme. 如英语是国际音标,中文则是拼音
|
|
9
|
+
partOfSpeech: string
|
|
10
|
+
definition: string
|
|
11
|
+
exampleSentence: string
|
|
12
|
+
extendedVocabulary: string
|
|
13
|
+
synonyms: string
|
|
14
|
+
antonyms: string
|
|
15
|
+
root: string
|
|
16
|
+
grammarPoint: string
|
|
17
|
+
explanation: string
|
|
18
|
+
uniqueAttributes: string
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export const LANG_DICTIONARY_LABELS: Record<LangCodeISO6393, DictionaryFieldLabels> = {
|
|
22
|
+
"eng": {
|
|
23
|
+
pronunciation: "IPA",
|
|
24
|
+
partOfSpeech: "Part of Speech",
|
|
25
|
+
definition: "Definition",
|
|
26
|
+
exampleSentence: "Example Sentence",
|
|
27
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
28
|
+
synonyms: "Synonyms",
|
|
29
|
+
antonyms: "Antonyms",
|
|
30
|
+
root: "Root",
|
|
31
|
+
grammarPoint: "Grammar Point",
|
|
32
|
+
explanation: "Explanation",
|
|
33
|
+
uniqueAttributes: `{% if existed %}
|
|
34
|
+
## Phrasal Verb
|
|
35
|
+
{{phrasal verb forms and meanings}}
|
|
36
|
+
{% end if %}`,
|
|
37
|
+
},
|
|
38
|
+
"cmn": {
|
|
39
|
+
pronunciation: "拼音",
|
|
40
|
+
partOfSpeech: "词性",
|
|
41
|
+
definition: "释义",
|
|
42
|
+
exampleSentence: "例句",
|
|
43
|
+
extendedVocabulary: "扩展词汇",
|
|
44
|
+
synonyms: "近义词",
|
|
45
|
+
antonyms: "反义词",
|
|
46
|
+
root: "词根",
|
|
47
|
+
grammarPoint: "语法点",
|
|
48
|
+
explanation: "讲解",
|
|
49
|
+
uniqueAttributes: "",
|
|
50
|
+
},
|
|
51
|
+
"cmn-Hant": {
|
|
52
|
+
pronunciation: "拼音/注音符號",
|
|
53
|
+
partOfSpeech: "詞性",
|
|
54
|
+
definition: "釋義",
|
|
55
|
+
exampleSentence: "例句",
|
|
56
|
+
extendedVocabulary: "擴展詞彙",
|
|
57
|
+
synonyms: "近義詞",
|
|
58
|
+
antonyms: "反義詞",
|
|
59
|
+
root: "詞根",
|
|
60
|
+
grammarPoint: "語法點",
|
|
61
|
+
explanation: "講解",
|
|
62
|
+
uniqueAttributes: "",
|
|
63
|
+
},
|
|
64
|
+
"yue": {
|
|
65
|
+
pronunciation: "香港語言學學會粵語拼音",
|
|
66
|
+
partOfSpeech: "詞性",
|
|
67
|
+
definition: "釋義",
|
|
68
|
+
exampleSentence: "例句",
|
|
69
|
+
extendedVocabulary: "擴展詞彙",
|
|
70
|
+
synonyms: "近義詞",
|
|
71
|
+
antonyms: "反義詞",
|
|
72
|
+
root: "詞根",
|
|
73
|
+
grammarPoint: "語法點",
|
|
74
|
+
explanation: "講解",
|
|
75
|
+
uniqueAttributes: "",
|
|
76
|
+
},
|
|
77
|
+
"spa": {
|
|
78
|
+
pronunciation: "IPA",
|
|
79
|
+
partOfSpeech: "Categoría Gramatical",
|
|
80
|
+
definition: "Definición",
|
|
81
|
+
exampleSentence: "Oración de Ejemplo",
|
|
82
|
+
extendedVocabulary: "Vocabulario Extendido",
|
|
83
|
+
synonyms: "Sinónimos",
|
|
84
|
+
antonyms: "Antónimos",
|
|
85
|
+
root: "Raíz",
|
|
86
|
+
grammarPoint: "Punto Gramatical",
|
|
87
|
+
explanation: "Explicación",
|
|
88
|
+
uniqueAttributes: `{% if existed %}
|
|
89
|
+
## Género
|
|
90
|
+
{{masculino / femenino}}
|
|
91
|
+
{% end if %}`,
|
|
92
|
+
},
|
|
93
|
+
"rus": {
|
|
94
|
+
pronunciation: "Романизация",
|
|
95
|
+
partOfSpeech: "Часть речи",
|
|
96
|
+
definition: "Определение",
|
|
97
|
+
exampleSentence: "Пример предложения",
|
|
98
|
+
extendedVocabulary: "Расширенный словарь",
|
|
99
|
+
synonyms: "Синонимы",
|
|
100
|
+
antonyms: "Антонимы",
|
|
101
|
+
root: "Корень",
|
|
102
|
+
grammarPoint: "Грамматика",
|
|
103
|
+
explanation: "Объяснение",
|
|
104
|
+
uniqueAttributes: `{% if existed %}
|
|
105
|
+
## Падеж
|
|
106
|
+
{{именительный/родительный/дательный/винительный/творительный/предложный}}
|
|
107
|
+
{% end if %}`,
|
|
108
|
+
},
|
|
109
|
+
"arb": {
|
|
110
|
+
pronunciation: "حروف لاتينية",
|
|
111
|
+
partOfSpeech: "جزء من الكلام",
|
|
112
|
+
definition: "تعريف",
|
|
113
|
+
exampleSentence: "جملة مثال",
|
|
114
|
+
extendedVocabulary: "مفردات موسعة",
|
|
115
|
+
synonyms: "مرادفات",
|
|
116
|
+
antonyms: "أضداد",
|
|
117
|
+
root: "الجذر",
|
|
118
|
+
grammarPoint: "نقطة نحوية",
|
|
119
|
+
explanation: "شرح",
|
|
120
|
+
uniqueAttributes: `{% if existed %}
|
|
121
|
+
## الجذر الثلاثي
|
|
122
|
+
{{الجذر والوزن}}
|
|
123
|
+
{% end if %}`,
|
|
124
|
+
},
|
|
125
|
+
"ben": {
|
|
126
|
+
pronunciation: "রোমানাইজেশন",
|
|
127
|
+
partOfSpeech: "শব্দের প্রকার",
|
|
128
|
+
definition: "সংজ্ঞা",
|
|
129
|
+
exampleSentence: "উদাহরণ বাক্য",
|
|
130
|
+
extendedVocabulary: "সম্প্রসারিত শব্দভাণ্ডার",
|
|
131
|
+
synonyms: "সমার্থক শব্দ",
|
|
132
|
+
antonyms: "বিপরীত শব্দ",
|
|
133
|
+
root: "মূল",
|
|
134
|
+
grammarPoint: "ব্যাকরণ পয়েন্ট",
|
|
135
|
+
explanation: "ব্যাখ্যা",
|
|
136
|
+
uniqueAttributes: "",
|
|
137
|
+
},
|
|
138
|
+
"hin": {
|
|
139
|
+
pronunciation: "रोमनकरण",
|
|
140
|
+
partOfSpeech: "शब्द भेद",
|
|
141
|
+
definition: "परिभाषा",
|
|
142
|
+
exampleSentence: "उदाहरण वाक्य",
|
|
143
|
+
extendedVocabulary: "विस्तारित शब्दावली",
|
|
144
|
+
synonyms: "समानार्थी शब्द",
|
|
145
|
+
antonyms: "विलोम शब्द",
|
|
146
|
+
root: "मूल",
|
|
147
|
+
grammarPoint: "व्याकरण बिंदु",
|
|
148
|
+
explanation: "व्याख्या",
|
|
149
|
+
uniqueAttributes: "",
|
|
150
|
+
},
|
|
151
|
+
"por": {
|
|
152
|
+
pronunciation: "IPA",
|
|
153
|
+
partOfSpeech: "Classe Gramatical",
|
|
154
|
+
definition: "Definição",
|
|
155
|
+
exampleSentence: "Frase de Exemplo",
|
|
156
|
+
extendedVocabulary: "Vocabulário Estendido",
|
|
157
|
+
synonyms: "Sinónimos",
|
|
158
|
+
antonyms: "Antónimos",
|
|
159
|
+
root: "Raiz",
|
|
160
|
+
grammarPoint: "Ponto Gramatical",
|
|
161
|
+
explanation: "Explicação",
|
|
162
|
+
uniqueAttributes: `{% if existed %}
|
|
163
|
+
## Gênero
|
|
164
|
+
{{masculino / feminino}}
|
|
165
|
+
{% end if %}`,
|
|
166
|
+
},
|
|
167
|
+
"ind": {
|
|
168
|
+
pronunciation: "IPA",
|
|
169
|
+
partOfSpeech: "Kelas Kata",
|
|
170
|
+
definition: "Definisi",
|
|
171
|
+
exampleSentence: "Contoh Kalimat",
|
|
172
|
+
extendedVocabulary: "Kosakata Diperluas",
|
|
173
|
+
synonyms: "Sinonim",
|
|
174
|
+
antonyms: "Antonim",
|
|
175
|
+
root: "Akar Kata",
|
|
176
|
+
grammarPoint: "Poin Tata Bahasa",
|
|
177
|
+
explanation: "Penjelasan",
|
|
178
|
+
uniqueAttributes: "",
|
|
179
|
+
},
|
|
180
|
+
"jpn": {
|
|
181
|
+
pronunciation: "平仮名",
|
|
182
|
+
partOfSpeech: "品詞",
|
|
183
|
+
definition: "定義",
|
|
184
|
+
exampleSentence: "例文",
|
|
185
|
+
extendedVocabulary: "拡張語彙",
|
|
186
|
+
synonyms: "類義語",
|
|
187
|
+
antonyms: "対義語",
|
|
188
|
+
root: "語根",
|
|
189
|
+
grammarPoint: "文法ポイント",
|
|
190
|
+
explanation: "解説",
|
|
191
|
+
uniqueAttributes: `{% if existed %}
|
|
192
|
+
## 動詞活用
|
|
193
|
+
{{ます形|て形|辞書形|た形|ない形|可能形}}
|
|
194
|
+
{% end if %}`,
|
|
195
|
+
},
|
|
196
|
+
"fra": {
|
|
197
|
+
pronunciation: "IPA",
|
|
198
|
+
partOfSpeech: "Classe Grammaticale",
|
|
199
|
+
definition: "Définition",
|
|
200
|
+
exampleSentence: "Phrase d'Exemple",
|
|
201
|
+
extendedVocabulary: "Vocabulaire Étendu",
|
|
202
|
+
synonyms: "Synonymes",
|
|
203
|
+
antonyms: "Antonymes",
|
|
204
|
+
root: "Racine",
|
|
205
|
+
grammarPoint: "Point de Grammaire",
|
|
206
|
+
explanation: "Explication",
|
|
207
|
+
uniqueAttributes: `{% if existed %}
|
|
208
|
+
## Genre
|
|
209
|
+
{{masculin / féminin}}
|
|
210
|
+
{% end if %}`,
|
|
211
|
+
},
|
|
212
|
+
"deu": {
|
|
213
|
+
pronunciation: "IPA",
|
|
214
|
+
partOfSpeech: "Wortart",
|
|
215
|
+
definition: "Definition",
|
|
216
|
+
exampleSentence: "Beispielsatz",
|
|
217
|
+
extendedVocabulary: "Erweiterter Wortschatz",
|
|
218
|
+
synonyms: "Synonyme",
|
|
219
|
+
antonyms: "Antonyme",
|
|
220
|
+
root: "Wortwurzel",
|
|
221
|
+
grammarPoint: "Grammatikpunkt",
|
|
222
|
+
explanation: "Erklärung",
|
|
223
|
+
uniqueAttributes: `{% if existed %}
|
|
224
|
+
## Genus und Kasus
|
|
225
|
+
{{maskulin/feminin/neutral; Nominativ/Genitiv/Dativ/Akkusativ}}
|
|
226
|
+
{% end if %}`,
|
|
227
|
+
},
|
|
228
|
+
"jav": {
|
|
229
|
+
pronunciation: "Romanisasi",
|
|
230
|
+
partOfSpeech: "Jinising Tembung",
|
|
231
|
+
definition: "Dhefinisi",
|
|
232
|
+
exampleSentence: "Ukara Conto",
|
|
233
|
+
extendedVocabulary: "Kosakata Tambahan",
|
|
234
|
+
synonyms: "Sinonim",
|
|
235
|
+
antonyms: "Antonim",
|
|
236
|
+
root: "Tembung Dhasar",
|
|
237
|
+
grammarPoint: "Poin Tata Basa",
|
|
238
|
+
explanation: "Katerangan",
|
|
239
|
+
uniqueAttributes: "",
|
|
240
|
+
},
|
|
241
|
+
"kor": {
|
|
242
|
+
pronunciation: "로마자 표기법",
|
|
243
|
+
partOfSpeech: "품사",
|
|
244
|
+
definition: "정의",
|
|
245
|
+
exampleSentence: "예문",
|
|
246
|
+
extendedVocabulary: "확장 어휘",
|
|
247
|
+
synonyms: "유의어",
|
|
248
|
+
antonyms: "반의어",
|
|
249
|
+
root: "어근",
|
|
250
|
+
grammarPoint: "문법 포인트",
|
|
251
|
+
explanation: "설명",
|
|
252
|
+
uniqueAttributes: `{% if existed %}
|
|
253
|
+
## 동사 활용
|
|
254
|
+
{{어간·어미 변화, 시제·높임·연결 형태}}
|
|
255
|
+
{% end if %}`,
|
|
256
|
+
},
|
|
257
|
+
"tel": {
|
|
258
|
+
pronunciation: "రోమనీకరణ",
|
|
259
|
+
partOfSpeech: "పదం రకం",
|
|
260
|
+
definition: "నిర్వచనం",
|
|
261
|
+
exampleSentence: "ఉదాహరణ వాక్యం",
|
|
262
|
+
extendedVocabulary: "విస్తరించిన పదజాలం",
|
|
263
|
+
synonyms: "పర్యాయపదాలు",
|
|
264
|
+
antonyms: "వ్యతిరేక పదాలు",
|
|
265
|
+
root: "మూలం",
|
|
266
|
+
grammarPoint: "వ్యాకరణ అంశం",
|
|
267
|
+
explanation: "వివరణ",
|
|
268
|
+
uniqueAttributes: "",
|
|
269
|
+
},
|
|
270
|
+
"vie": {
|
|
271
|
+
pronunciation: "Phiên Âm",
|
|
272
|
+
partOfSpeech: "Từ Loại",
|
|
273
|
+
definition: "Định Nghĩa",
|
|
274
|
+
exampleSentence: "Câu Ví Dụ",
|
|
275
|
+
extendedVocabulary: "Từ Vựng Mở Rộng",
|
|
276
|
+
synonyms: "Từ Đồng Nghĩa",
|
|
277
|
+
antonyms: "Từ Trái Nghĩa",
|
|
278
|
+
root: "Gốc Từ",
|
|
279
|
+
grammarPoint: "Điểm Ngữ Pháp",
|
|
280
|
+
explanation: "Giải Thích",
|
|
281
|
+
uniqueAttributes: "",
|
|
282
|
+
},
|
|
283
|
+
"mar": {
|
|
284
|
+
pronunciation: "रोमनकरण",
|
|
285
|
+
partOfSpeech: "शब्दप्रकार",
|
|
286
|
+
definition: "व्याख्या",
|
|
287
|
+
exampleSentence: "उदाहरण वाक्य",
|
|
288
|
+
extendedVocabulary: "विस्तारित शब्दसंग्रह",
|
|
289
|
+
synonyms: "समानार्थी शब्द",
|
|
290
|
+
antonyms: "विरुद्धार्थी शब्द",
|
|
291
|
+
root: "मूळ",
|
|
292
|
+
grammarPoint: "व्याकरण बिंदु",
|
|
293
|
+
explanation: "स्पष्टीकरण",
|
|
294
|
+
uniqueAttributes: "",
|
|
295
|
+
},
|
|
296
|
+
"ita": {
|
|
297
|
+
pronunciation: "IPA",
|
|
298
|
+
partOfSpeech: "Categoria Grammaticale",
|
|
299
|
+
definition: "Definizione",
|
|
300
|
+
exampleSentence: "Frase di Esempio",
|
|
301
|
+
extendedVocabulary: "Vocabolario Esteso",
|
|
302
|
+
synonyms: "Sinonimi",
|
|
303
|
+
antonyms: "Contrari",
|
|
304
|
+
root: "Radice",
|
|
305
|
+
grammarPoint: "Punto Grammaticale",
|
|
306
|
+
explanation: "Spiegazione",
|
|
307
|
+
uniqueAttributes: `{% if existed %}
|
|
308
|
+
## Genere
|
|
309
|
+
{{maschile / femminile}}
|
|
310
|
+
{% end if %}`,
|
|
311
|
+
},
|
|
312
|
+
"tam": {
|
|
313
|
+
pronunciation: "இலத்தீன் எழுத்துமுறை",
|
|
314
|
+
partOfSpeech: "சொல் வகை",
|
|
315
|
+
definition: "வரையறை",
|
|
316
|
+
exampleSentence: "உதாரண வாக்கியம்",
|
|
317
|
+
extendedVocabulary: "விரிவாக்கப்பட்ட சொற்கள்",
|
|
318
|
+
synonyms: "ஒத்த சொற்கள்",
|
|
319
|
+
antonyms: "எதிர் சொற்கள்",
|
|
320
|
+
root: "சொல்லின் வேர்",
|
|
321
|
+
grammarPoint: "இலக்கண புள்ளி",
|
|
322
|
+
explanation: "விளக்கம்",
|
|
323
|
+
uniqueAttributes: "",
|
|
324
|
+
},
|
|
325
|
+
"tur": {
|
|
326
|
+
pronunciation: "Latin Alfabesi",
|
|
327
|
+
partOfSpeech: "Sözcük Türü",
|
|
328
|
+
definition: "Tanım",
|
|
329
|
+
exampleSentence: "Örnek Cümle",
|
|
330
|
+
extendedVocabulary: "Genişletilmiş Kelime Dağarcığı",
|
|
331
|
+
synonyms: "Eş Anlamlılar",
|
|
332
|
+
antonyms: "Zıt Anlamlılar",
|
|
333
|
+
root: "Kök",
|
|
334
|
+
grammarPoint: "Dilbilgisi Noktası",
|
|
335
|
+
explanation: "Açıklama",
|
|
336
|
+
uniqueAttributes: "",
|
|
337
|
+
},
|
|
338
|
+
"urd": {
|
|
339
|
+
pronunciation: "رومنائزیشن",
|
|
340
|
+
partOfSpeech: "کلام کا حصہ",
|
|
341
|
+
definition: "تعریف",
|
|
342
|
+
exampleSentence: "مثال کا جملہ",
|
|
343
|
+
extendedVocabulary: "توسیع شدہ الفاظ",
|
|
344
|
+
synonyms: "مترادفات",
|
|
345
|
+
antonyms: "متضادات",
|
|
346
|
+
root: "جڑ",
|
|
347
|
+
grammarPoint: "گرائمر پوائنٹ",
|
|
348
|
+
explanation: "وضاحت",
|
|
349
|
+
uniqueAttributes: "",
|
|
350
|
+
},
|
|
351
|
+
"guj": {
|
|
352
|
+
pronunciation: "રોમનાઇઝેશન",
|
|
353
|
+
partOfSpeech: "શબ્દ પ્રકાર",
|
|
354
|
+
definition: "વ્યાખ્યા",
|
|
355
|
+
exampleSentence: "ઉદાહરણ વાક્ય",
|
|
356
|
+
extendedVocabulary: "વિસ્તૃત શબ્દભંડોળ",
|
|
357
|
+
synonyms: "સમાનાર્થી શબ્દો",
|
|
358
|
+
antonyms: "વિરોધી શબ્દો",
|
|
359
|
+
root: "મૂળ",
|
|
360
|
+
grammarPoint: "વ્યાકરણ બિંદુ",
|
|
361
|
+
explanation: "સમજૂતી",
|
|
362
|
+
uniqueAttributes: "",
|
|
363
|
+
},
|
|
364
|
+
"pol": {
|
|
365
|
+
pronunciation: "IPA",
|
|
366
|
+
partOfSpeech: "Część Mowy",
|
|
367
|
+
definition: "Definicja",
|
|
368
|
+
exampleSentence: "Przykładowe Zdanie",
|
|
369
|
+
extendedVocabulary: "Rozszerzony Słownik",
|
|
370
|
+
synonyms: "Synonimy",
|
|
371
|
+
antonyms: "Antonimy",
|
|
372
|
+
root: "Rdzeń",
|
|
373
|
+
grammarPoint: "Punkt Gramatyczny",
|
|
374
|
+
explanation: "Wyjaśnienie",
|
|
375
|
+
uniqueAttributes: "",
|
|
376
|
+
},
|
|
377
|
+
"ukr": {
|
|
378
|
+
pronunciation: "Романізація",
|
|
379
|
+
partOfSpeech: "Частина мови",
|
|
380
|
+
definition: "Визначення",
|
|
381
|
+
exampleSentence: "Приклад речення",
|
|
382
|
+
extendedVocabulary: "Розширений словник",
|
|
383
|
+
synonyms: "Синоніми",
|
|
384
|
+
antonyms: "Антоніми",
|
|
385
|
+
root: "Корінь",
|
|
386
|
+
grammarPoint: "Граматична точка",
|
|
387
|
+
explanation: "Пояснення",
|
|
388
|
+
uniqueAttributes: "",
|
|
389
|
+
},
|
|
390
|
+
"kan": {
|
|
391
|
+
pronunciation: "ರೋಮನೀಕರಣ",
|
|
392
|
+
partOfSpeech: "ಪದದ ವರ್ಗ",
|
|
393
|
+
definition: "ವ್ಯಾಖ್ಯಾನ",
|
|
394
|
+
exampleSentence: "ಉದಾಹರಣೆ ವಾಕ್ಯ",
|
|
395
|
+
extendedVocabulary: "ವಿಸ್ತೃತ ಶಬ್ದಕೋಶ",
|
|
396
|
+
synonyms: "ಸಮಾನಾರ್ಥಕ ಪದಗಳು",
|
|
397
|
+
antonyms: "ವಿರುದ್ಧಾರ್ಥಕ ಪದಗಳು",
|
|
398
|
+
root: "ಮೂಲ",
|
|
399
|
+
grammarPoint: "ವ್ಯಾಕರಣ ಅಂಶ",
|
|
400
|
+
explanation: "ವಿವರಣೆ",
|
|
401
|
+
uniqueAttributes: "",
|
|
402
|
+
},
|
|
403
|
+
"mai": {
|
|
404
|
+
pronunciation: "रोमनकरण",
|
|
405
|
+
partOfSpeech: "शब्द भेद",
|
|
406
|
+
definition: "परिभाषा",
|
|
407
|
+
exampleSentence: "उदाहरण वाक्य",
|
|
408
|
+
extendedVocabulary: "विस्तारित शब्दावली",
|
|
409
|
+
synonyms: "समानार्थी",
|
|
410
|
+
antonyms: "विलोम",
|
|
411
|
+
root: "मूल",
|
|
412
|
+
grammarPoint: "व्याकरण बिंदु",
|
|
413
|
+
explanation: "व्याख्या",
|
|
414
|
+
uniqueAttributes: "",
|
|
415
|
+
},
|
|
416
|
+
"mal": {
|
|
417
|
+
pronunciation: "ലാറ്റിനീകരണം",
|
|
418
|
+
partOfSpeech: "വാക്ക് തരം",
|
|
419
|
+
definition: "നിർവചനം",
|
|
420
|
+
exampleSentence: "ഉദാഹരണ വാക്യം",
|
|
421
|
+
extendedVocabulary: "വിപുലീകൃത പദാവലി",
|
|
422
|
+
synonyms: "പര്യായപദങ്ങൾ",
|
|
423
|
+
antonyms: "വിപരീതപദങ്ങൾ",
|
|
424
|
+
root: "മൂലം",
|
|
425
|
+
grammarPoint: "വ്യാകരണ പോയിന്റ്",
|
|
426
|
+
explanation: "വിശദീകരണം",
|
|
427
|
+
uniqueAttributes: "",
|
|
428
|
+
},
|
|
429
|
+
"pes": {
|
|
430
|
+
pronunciation: "رومیسازی",
|
|
431
|
+
partOfSpeech: "نوع کلمه",
|
|
432
|
+
definition: "تعریف",
|
|
433
|
+
exampleSentence: "جمله مثال",
|
|
434
|
+
extendedVocabulary: "واژگان گسترده",
|
|
435
|
+
synonyms: "مترادفها",
|
|
436
|
+
antonyms: "متضادها",
|
|
437
|
+
root: "ریشه",
|
|
438
|
+
grammarPoint: "نکته دستوری",
|
|
439
|
+
explanation: "توضیح",
|
|
440
|
+
uniqueAttributes: "",
|
|
441
|
+
},
|
|
442
|
+
"mya": {
|
|
443
|
+
pronunciation: "ရိုမနైဇေးရှင်း",
|
|
444
|
+
partOfSpeech: "စကားစု အမျိုးအစား",
|
|
445
|
+
definition: "အဓိပ္ပာယ်",
|
|
446
|
+
exampleSentence: "ဥပမာ စာကြောင်း",
|
|
447
|
+
extendedVocabulary: "တိုးချဲ့ စကားလုံး",
|
|
448
|
+
synonyms: "ဆင်တူ စကားလုံး",
|
|
449
|
+
antonyms: "ဆန့်ကျင် စကားလုံး",
|
|
450
|
+
root: "မူလ",
|
|
451
|
+
grammarPoint: "သဒ္ဒါအချက်",
|
|
452
|
+
explanation: "ရှင်းလင်းချက်",
|
|
453
|
+
uniqueAttributes: "",
|
|
454
|
+
},
|
|
455
|
+
"swh": {
|
|
456
|
+
pronunciation: "IPA",
|
|
457
|
+
partOfSpeech: "Aina ya Neno",
|
|
458
|
+
definition: "Maana",
|
|
459
|
+
exampleSentence: "Mfano wa Sentensi",
|
|
460
|
+
extendedVocabulary: "Msamiati Uliopanuliwa",
|
|
461
|
+
synonyms: "Visawe",
|
|
462
|
+
antonyms: "Kinyume",
|
|
463
|
+
root: "Mzizi",
|
|
464
|
+
grammarPoint: "Pointi ya Sarufi",
|
|
465
|
+
explanation: "Ufafanuzi",
|
|
466
|
+
uniqueAttributes: "",
|
|
467
|
+
},
|
|
468
|
+
"sun": {
|
|
469
|
+
pronunciation: "Romanisasi",
|
|
470
|
+
partOfSpeech: "Jinis Kecap",
|
|
471
|
+
definition: "Harti",
|
|
472
|
+
exampleSentence: "Conto Kalimah",
|
|
473
|
+
extendedVocabulary: "Kosakata Ditambah",
|
|
474
|
+
synonyms: "Sinonim",
|
|
475
|
+
antonyms: "Antonim",
|
|
476
|
+
root: "Akar Kecap",
|
|
477
|
+
grammarPoint: "Titik Tata Basa",
|
|
478
|
+
explanation: "Katerangan",
|
|
479
|
+
uniqueAttributes: "",
|
|
480
|
+
},
|
|
481
|
+
"ron": {
|
|
482
|
+
pronunciation: "IPA",
|
|
483
|
+
partOfSpeech: "Parte de Vorbire",
|
|
484
|
+
definition: "Definiție",
|
|
485
|
+
exampleSentence: "Propoziție Exemplu",
|
|
486
|
+
extendedVocabulary: "Vocabular Extins",
|
|
487
|
+
synonyms: "Sinonime",
|
|
488
|
+
antonyms: "Antonime",
|
|
489
|
+
root: "Rădăcină",
|
|
490
|
+
grammarPoint: "Punct Gramatical",
|
|
491
|
+
explanation: "Explicație",
|
|
492
|
+
uniqueAttributes: "",
|
|
493
|
+
},
|
|
494
|
+
"pan": {
|
|
495
|
+
pronunciation: "ਰੋਮਨਾਈਜ਼ੇਸ਼ਨ",
|
|
496
|
+
partOfSpeech: "ਸ਼ਬਦ ਦੀ ਕਿਸਮ",
|
|
497
|
+
definition: "ਪਰਿਭਾਸ਼ਾ",
|
|
498
|
+
exampleSentence: "ਉਦਾਹਰਨ ਵਾਕ",
|
|
499
|
+
extendedVocabulary: "ਵਿਸਤ੍ਰਿਤ ਸ਼ਬਦਾਵਲੀ",
|
|
500
|
+
synonyms: "ਸਮਾਨਾਰਥੀ ਸ਼ਬਦ",
|
|
501
|
+
antonyms: "ਵਿਰੋਧੀ ਸ਼ਬਦ",
|
|
502
|
+
root: "ਮੂਲ",
|
|
503
|
+
grammarPoint: "ਵਿਆਕਰਣ ਬਿੰਦੂ",
|
|
504
|
+
explanation: "ਸਪੱਸ਼ਟੀਕਰਨ",
|
|
505
|
+
uniqueAttributes: "",
|
|
506
|
+
},
|
|
507
|
+
"bho": {
|
|
508
|
+
pronunciation: "रोमनकरण",
|
|
509
|
+
partOfSpeech: "शब्द भेद",
|
|
510
|
+
definition: "परिभाषा",
|
|
511
|
+
exampleSentence: "उदाहरण वाक्य",
|
|
512
|
+
extendedVocabulary: "विस्तारित शब्दावली",
|
|
513
|
+
synonyms: "समानार्थी",
|
|
514
|
+
antonyms: "विलोम",
|
|
515
|
+
root: "मूल",
|
|
516
|
+
grammarPoint: "व्याकरण बिंदु",
|
|
517
|
+
explanation: "व्याख्या",
|
|
518
|
+
uniqueAttributes: "",
|
|
519
|
+
},
|
|
520
|
+
"amh": {
|
|
521
|
+
pronunciation: "ሮማናይዜሽን",
|
|
522
|
+
partOfSpeech: "የቃል አይነት",
|
|
523
|
+
definition: "ትርጉም",
|
|
524
|
+
exampleSentence: "የምሳሌ ዓረፍተ ነገር",
|
|
525
|
+
extendedVocabulary: "የተዘረጋ ቃላት",
|
|
526
|
+
synonyms: "ተመሳሳይ ቃላት",
|
|
527
|
+
antonyms: "ተቃራኒ ቃላት",
|
|
528
|
+
root: "ሥር",
|
|
529
|
+
grammarPoint: "ሰዋሰው ነጥብ",
|
|
530
|
+
explanation: "ማብራሪያ",
|
|
531
|
+
uniqueAttributes: "",
|
|
532
|
+
},
|
|
533
|
+
"hau": {
|
|
534
|
+
pronunciation: "IPA",
|
|
535
|
+
partOfSpeech: "Nau'in Kalma",
|
|
536
|
+
definition: "Ma'ana",
|
|
537
|
+
exampleSentence: "Misali Jimla",
|
|
538
|
+
extendedVocabulary: "Ƙarin Kalmomi",
|
|
539
|
+
synonyms: "Kalmomi Masu Kamanceceniya",
|
|
540
|
+
antonyms: "Sabanin Kalmomi",
|
|
541
|
+
root: "Tushen Kalma",
|
|
542
|
+
grammarPoint: "Manufa na Nahawu",
|
|
543
|
+
explanation: "Bayani",
|
|
544
|
+
uniqueAttributes: "",
|
|
545
|
+
},
|
|
546
|
+
"fuv": {
|
|
547
|
+
pronunciation: "IPA",
|
|
548
|
+
partOfSpeech: "Nokkuure Ɗemɗe",
|
|
549
|
+
definition: "Faamsɗo",
|
|
550
|
+
exampleSentence: "Winndere Seedantaare",
|
|
551
|
+
extendedVocabulary: "Ɗemɗe Ɓurɗe",
|
|
552
|
+
synonyms: "Ɗemɗe Noon",
|
|
553
|
+
antonyms: "Ɗemɗe Feeñal",
|
|
554
|
+
root: "Lewru",
|
|
555
|
+
grammarPoint: "Ganndal Ganndal",
|
|
556
|
+
explanation: "Tafsiir",
|
|
557
|
+
uniqueAttributes: "",
|
|
558
|
+
},
|
|
559
|
+
"bos": {
|
|
560
|
+
pronunciation: "Latinica",
|
|
561
|
+
partOfSpeech: "Vrsta riječi",
|
|
562
|
+
definition: "Definicija",
|
|
563
|
+
exampleSentence: "Primjer rečenice",
|
|
564
|
+
extendedVocabulary: "Prošireni rečnik",
|
|
565
|
+
synonyms: "Sinonimi",
|
|
566
|
+
antonyms: "Antonimi",
|
|
567
|
+
root: "Korijen",
|
|
568
|
+
grammarPoint: "Gramatički punkt",
|
|
569
|
+
explanation: "Objašnjenje",
|
|
570
|
+
uniqueAttributes: "",
|
|
571
|
+
},
|
|
572
|
+
"hrv": {
|
|
573
|
+
pronunciation: "IPA",
|
|
574
|
+
partOfSpeech: "Vrsta Riječi",
|
|
575
|
+
definition: "Definicija",
|
|
576
|
+
exampleSentence: "Primjer Rečenice",
|
|
577
|
+
extendedVocabulary: "Prošireni Rječnik",
|
|
578
|
+
synonyms: "Sinonimi",
|
|
579
|
+
antonyms: "Antonimi",
|
|
580
|
+
root: "Korijen",
|
|
581
|
+
grammarPoint: "Gramatička Točka",
|
|
582
|
+
explanation: "Objašnjenje",
|
|
583
|
+
uniqueAttributes: "",
|
|
584
|
+
},
|
|
585
|
+
"nld": {
|
|
586
|
+
pronunciation: "IPA",
|
|
587
|
+
partOfSpeech: "Woordsoort",
|
|
588
|
+
definition: "Definitie",
|
|
589
|
+
exampleSentence: "Voorbeeldzin",
|
|
590
|
+
extendedVocabulary: "Uitgebreide Woordenschat",
|
|
591
|
+
synonyms: "Synoniemen",
|
|
592
|
+
antonyms: "Antoniemen",
|
|
593
|
+
root: "Wortel",
|
|
594
|
+
grammarPoint: "Grammaticaal Punt",
|
|
595
|
+
explanation: "Uitleg",
|
|
596
|
+
uniqueAttributes: "",
|
|
597
|
+
},
|
|
598
|
+
"srp": {
|
|
599
|
+
pronunciation: "Latinica",
|
|
600
|
+
partOfSpeech: "Врста речи",
|
|
601
|
+
definition: "Дефиниција",
|
|
602
|
+
exampleSentence: "Пример реченице",
|
|
603
|
+
extendedVocabulary: "Проширени речник",
|
|
604
|
+
synonyms: "Синоними",
|
|
605
|
+
antonyms: "Антоними",
|
|
606
|
+
root: "Корен",
|
|
607
|
+
grammarPoint: "Граматичка тачка",
|
|
608
|
+
explanation: "Објашњење",
|
|
609
|
+
uniqueAttributes: "",
|
|
610
|
+
},
|
|
611
|
+
"tha": {
|
|
612
|
+
pronunciation: "การถอดเสียง",
|
|
613
|
+
partOfSpeech: "ชนิดของคำ",
|
|
614
|
+
definition: "คำนิยาม",
|
|
615
|
+
exampleSentence: "ประโยคตัวอย่าง",
|
|
616
|
+
extendedVocabulary: "คำศัพท์เพิ่มเติม",
|
|
617
|
+
synonyms: "คำพ้องความหมาย",
|
|
618
|
+
antonyms: "คำตรงข้าม",
|
|
619
|
+
root: "รากศัพท์",
|
|
620
|
+
grammarPoint: "จุดไวยากรณ์",
|
|
621
|
+
explanation: "คำอธิบาย",
|
|
622
|
+
uniqueAttributes: "",
|
|
623
|
+
},
|
|
624
|
+
"ckb": {
|
|
625
|
+
pronunciation: "لاتینیکردن",
|
|
626
|
+
partOfSpeech: "جۆری وشە",
|
|
627
|
+
definition: "پێناسە",
|
|
628
|
+
exampleSentence: "ڕستەی نموونە",
|
|
629
|
+
extendedVocabulary: "وشەی زیادکراو",
|
|
630
|
+
synonyms: "هاوواتا",
|
|
631
|
+
antonyms: "پێچەوانە",
|
|
632
|
+
root: "ڕەگ",
|
|
633
|
+
grammarPoint: "خاڵی ڕێزمان",
|
|
634
|
+
explanation: "ڕوونکردنەوە",
|
|
635
|
+
uniqueAttributes: "",
|
|
636
|
+
},
|
|
637
|
+
"yor": {
|
|
638
|
+
pronunciation: "IPA",
|
|
639
|
+
partOfSpeech: "Ẹ̀ka Ọ̀rọ̀",
|
|
640
|
+
definition: "Ìtumọ̀",
|
|
641
|
+
exampleSentence: "Àpẹẹrẹ Gbólóhùn",
|
|
642
|
+
extendedVocabulary: "Ọ̀rọ̀ Àfikún",
|
|
643
|
+
synonyms: "Ọ̀rọ̀ Ìbámu",
|
|
644
|
+
antonyms: "Ọ̀rọ̀ Ìdàkejì",
|
|
645
|
+
root: "Gbòǹgbò Ọ̀rọ̀",
|
|
646
|
+
grammarPoint: "Àmì Gírámà",
|
|
647
|
+
explanation: "Àlàyé",
|
|
648
|
+
uniqueAttributes: "",
|
|
649
|
+
},
|
|
650
|
+
"uzn": {
|
|
651
|
+
pronunciation: "Lotin",
|
|
652
|
+
partOfSpeech: "Сўз туркуми",
|
|
653
|
+
definition: "Таъриф",
|
|
654
|
+
exampleSentence: "Мисол жумла",
|
|
655
|
+
extendedVocabulary: "Кенгайтирилган луғат",
|
|
656
|
+
synonyms: "Синонимлар",
|
|
657
|
+
antonyms: "Антонимлар",
|
|
658
|
+
root: "Илдиз",
|
|
659
|
+
grammarPoint: "Грамматика нуқтаси",
|
|
660
|
+
explanation: "Изоҳ",
|
|
661
|
+
uniqueAttributes: "",
|
|
662
|
+
},
|
|
663
|
+
"zlm": {
|
|
664
|
+
pronunciation: "رومنيسسي",
|
|
665
|
+
partOfSpeech: "جنيس ڤرکاتاءن",
|
|
666
|
+
definition: "تعريف",
|
|
667
|
+
exampleSentence: "ايبارت چونتوه",
|
|
668
|
+
extendedVocabulary: "ڤربنداهاراءن کات دڤرلواسکن",
|
|
669
|
+
synonyms: "سينونيم",
|
|
670
|
+
antonyms: "انتونيم",
|
|
671
|
+
root: "اکر",
|
|
672
|
+
grammarPoint: "نوكته تات بهاس",
|
|
673
|
+
explanation: "كترڠن",
|
|
674
|
+
uniqueAttributes: "",
|
|
675
|
+
},
|
|
676
|
+
"ibo": {
|
|
677
|
+
pronunciation: "Romanization",
|
|
678
|
+
partOfSpeech: "Ụdị Okwu",
|
|
679
|
+
definition: "Nkọwa",
|
|
680
|
+
exampleSentence: "Ahịrịokwu Ihe Atụ",
|
|
681
|
+
extendedVocabulary: "Okwu Ndị Ọzọ",
|
|
682
|
+
synonyms: "Okwu Yiri Ya",
|
|
683
|
+
antonyms: "Okwu Megidere Ya",
|
|
684
|
+
root: "Mgbọrọgwụ Okwu",
|
|
685
|
+
grammarPoint: "Isi Ụtụ Asụsụ",
|
|
686
|
+
explanation: "Nkọwa",
|
|
687
|
+
uniqueAttributes: "",
|
|
688
|
+
},
|
|
689
|
+
"npi": {
|
|
690
|
+
pronunciation: "रोमनकरण",
|
|
691
|
+
partOfSpeech: "शब्द भेद",
|
|
692
|
+
definition: "परिभाषा",
|
|
693
|
+
exampleSentence: "उदाहरण वाक्य",
|
|
694
|
+
extendedVocabulary: "विस्तारित शब्दावली",
|
|
695
|
+
synonyms: "समानार्थी शब्द",
|
|
696
|
+
antonyms: "विलोम शब्द",
|
|
697
|
+
root: "मूल",
|
|
698
|
+
grammarPoint: "व्याकरण बिन्दु",
|
|
699
|
+
explanation: "व्याख्या",
|
|
700
|
+
uniqueAttributes: "",
|
|
701
|
+
},
|
|
702
|
+
"ceb": {
|
|
703
|
+
pronunciation: "IPA",
|
|
704
|
+
partOfSpeech: "Bahin sa Sinultihan",
|
|
705
|
+
definition: "Kahulugan",
|
|
706
|
+
exampleSentence: "Pananglitan nga Sentence",
|
|
707
|
+
extendedVocabulary: "Dugang nga Bokabularyo",
|
|
708
|
+
synonyms: "Managsama nga Kahulogan",
|
|
709
|
+
antonyms: "Kaatbang nga Kahulogan",
|
|
710
|
+
root: "Gamot",
|
|
711
|
+
grammarPoint: "Punto sa Gramatika",
|
|
712
|
+
explanation: "Pagpatin-aw",
|
|
713
|
+
uniqueAttributes: "",
|
|
714
|
+
},
|
|
715
|
+
"skr": {
|
|
716
|
+
pronunciation: "رومنائیزیشن",
|
|
717
|
+
partOfSpeech: "کلام جا حصہ",
|
|
718
|
+
definition: "تعریف",
|
|
719
|
+
exampleSentence: "مثال جملہ",
|
|
720
|
+
extendedVocabulary: "ودھائے الفاظ",
|
|
721
|
+
synonyms: "ہم معنی",
|
|
722
|
+
antonyms: "متضاد",
|
|
723
|
+
root: "جڑ",
|
|
724
|
+
grammarPoint: "گرامر پوائنٹ",
|
|
725
|
+
explanation: "وضاحت",
|
|
726
|
+
uniqueAttributes: "",
|
|
727
|
+
},
|
|
728
|
+
"tgl": {
|
|
729
|
+
pronunciation: "IPA",
|
|
730
|
+
partOfSpeech: "Bahagi ng Pananalita",
|
|
731
|
+
definition: "Kahulugan",
|
|
732
|
+
exampleSentence: "Halimbawang Pangungusap",
|
|
733
|
+
extendedVocabulary: "Pinalawak na Bokabularyo",
|
|
734
|
+
synonyms: "Kasingkahulugan",
|
|
735
|
+
antonyms: "Kasalungat",
|
|
736
|
+
root: "Ugat",
|
|
737
|
+
grammarPoint: "Punto ng Gramatika",
|
|
738
|
+
explanation: "Paliwanag",
|
|
739
|
+
uniqueAttributes: "",
|
|
740
|
+
},
|
|
741
|
+
"hun": {
|
|
742
|
+
pronunciation: "IPA",
|
|
743
|
+
partOfSpeech: "Szófaj",
|
|
744
|
+
definition: "Meghatározás",
|
|
745
|
+
exampleSentence: "Példamondat",
|
|
746
|
+
extendedVocabulary: "Bővített Szókincs",
|
|
747
|
+
synonyms: "Szinonimák",
|
|
748
|
+
antonyms: "Ellentétek",
|
|
749
|
+
root: "Szótő",
|
|
750
|
+
grammarPoint: "Nyelvtani Pont",
|
|
751
|
+
explanation: "Magyarázat",
|
|
752
|
+
uniqueAttributes: "",
|
|
753
|
+
},
|
|
754
|
+
"azj": {
|
|
755
|
+
pronunciation: "Latinləşdirmə",
|
|
756
|
+
partOfSpeech: "Сөз нөвү",
|
|
757
|
+
definition: "Тәриф",
|
|
758
|
+
exampleSentence: "Нүмунә ҹүмлә",
|
|
759
|
+
extendedVocabulary: "Генишләндирилмиш луғәт",
|
|
760
|
+
synonyms: "Синонимләр",
|
|
761
|
+
antonyms: "Антонимләр",
|
|
762
|
+
root: "Көк",
|
|
763
|
+
grammarPoint: "Qrammatik nöqtə",
|
|
764
|
+
explanation: "İzah",
|
|
765
|
+
uniqueAttributes: "",
|
|
766
|
+
},
|
|
767
|
+
"sin": {
|
|
768
|
+
pronunciation: "රෝමානුකරණය",
|
|
769
|
+
partOfSpeech: "වචන වර්ගය",
|
|
770
|
+
definition: "අර්ථ දැක්වීම",
|
|
771
|
+
exampleSentence: "උදාහරණ වාක්යය",
|
|
772
|
+
extendedVocabulary: "පුළුල් කළ වචන මාලාව",
|
|
773
|
+
synonyms: "සමාන වචන",
|
|
774
|
+
antonyms: "ප්රතිවචන",
|
|
775
|
+
root: "මූලය",
|
|
776
|
+
grammarPoint: "ව්යාකරණ ලක්ෂ්යය",
|
|
777
|
+
explanation: "පැහැදිලි කිරීම",
|
|
778
|
+
uniqueAttributes: "",
|
|
779
|
+
},
|
|
780
|
+
"koi": {
|
|
781
|
+
pronunciation: "Латинизация",
|
|
782
|
+
partOfSpeech: "Кывлӧн тип",
|
|
783
|
+
definition: "Индӧд",
|
|
784
|
+
exampleSentence: "Индан сёрникузя",
|
|
785
|
+
extendedVocabulary: "Паськыттэм кывчукӧр",
|
|
786
|
+
synonyms: "Ӧткодьлун кывъяс",
|
|
787
|
+
antonyms: "Торъя кывъяс",
|
|
788
|
+
root: "Корень",
|
|
789
|
+
grammarPoint: "Грамматика точка",
|
|
790
|
+
explanation: "Объяснение",
|
|
791
|
+
uniqueAttributes: "",
|
|
792
|
+
},
|
|
793
|
+
"ell": {
|
|
794
|
+
pronunciation: "Λατινοποίηση",
|
|
795
|
+
partOfSpeech: "Μέρος του Λόγου",
|
|
796
|
+
definition: "Ορισμός",
|
|
797
|
+
exampleSentence: "Παράδειγμα Πρότασης",
|
|
798
|
+
extendedVocabulary: "Εκτεταμένο Λεξιλόγιο",
|
|
799
|
+
synonyms: "Συνώνυμα",
|
|
800
|
+
antonyms: "Αντώνυμα",
|
|
801
|
+
root: "Ρίζα",
|
|
802
|
+
grammarPoint: "Γραμματικό Σημείο",
|
|
803
|
+
explanation: "Επεξήγηση",
|
|
804
|
+
uniqueAttributes: "",
|
|
805
|
+
},
|
|
806
|
+
"ces": {
|
|
807
|
+
pronunciation: "IPA",
|
|
808
|
+
partOfSpeech: "Slovní Druh",
|
|
809
|
+
definition: "Definice",
|
|
810
|
+
exampleSentence: "Příklad Věty",
|
|
811
|
+
extendedVocabulary: "Rozšířená Slovní Zásoba",
|
|
812
|
+
synonyms: "Synonyma",
|
|
813
|
+
antonyms: "Antonyma",
|
|
814
|
+
root: "Kořen",
|
|
815
|
+
grammarPoint: "Gramatický Bod",
|
|
816
|
+
explanation: "Vysvětlení",
|
|
817
|
+
uniqueAttributes: "",
|
|
818
|
+
},
|
|
819
|
+
"mag": {
|
|
820
|
+
pronunciation: "रोमनकरण",
|
|
821
|
+
partOfSpeech: "शब्द भेद",
|
|
822
|
+
definition: "परिभाषा",
|
|
823
|
+
exampleSentence: "उदाहरण वाक्य",
|
|
824
|
+
extendedVocabulary: "विस्तारित शब्दावली",
|
|
825
|
+
synonyms: "समानार्थी",
|
|
826
|
+
antonyms: "विलोम",
|
|
827
|
+
root: "मूल",
|
|
828
|
+
grammarPoint: "व्याकरण बिंदु",
|
|
829
|
+
explanation: "व्याख्या",
|
|
830
|
+
uniqueAttributes: "",
|
|
831
|
+
},
|
|
832
|
+
"run": {
|
|
833
|
+
pronunciation: "IPA",
|
|
834
|
+
partOfSpeech: "Ubwoko bw'Ijambo",
|
|
835
|
+
definition: "Isobanuro",
|
|
836
|
+
exampleSentence: "Interuro y'Urugero",
|
|
837
|
+
extendedVocabulary: "Amagambo Yagutse",
|
|
838
|
+
synonyms: "Amagambo Ahuye",
|
|
839
|
+
antonyms: "Amagambo Atandukanye",
|
|
840
|
+
root: "Imizi",
|
|
841
|
+
grammarPoint: "Ingingo y'Ikibonezamvugo",
|
|
842
|
+
explanation: "Ibisobanuro",
|
|
843
|
+
uniqueAttributes: "",
|
|
844
|
+
},
|
|
845
|
+
"bel": {
|
|
846
|
+
pronunciation: "Лацінізацыя",
|
|
847
|
+
partOfSpeech: "Часціна мовы",
|
|
848
|
+
definition: "Азначэнне",
|
|
849
|
+
exampleSentence: "Прыклад сказа",
|
|
850
|
+
extendedVocabulary: "Пашыраны слоўнік",
|
|
851
|
+
synonyms: "Сінонімы",
|
|
852
|
+
antonyms: "Антонімы",
|
|
853
|
+
root: "Корань",
|
|
854
|
+
grammarPoint: "Граматычны пункт",
|
|
855
|
+
explanation: "Тлумачэнне",
|
|
856
|
+
uniqueAttributes: "",
|
|
857
|
+
},
|
|
858
|
+
"plt": {
|
|
859
|
+
pronunciation: "IPA",
|
|
860
|
+
partOfSpeech: "Karazana Teny",
|
|
861
|
+
definition: "Famaritana",
|
|
862
|
+
exampleSentence: "Fehezanteny Ohatra",
|
|
863
|
+
extendedVocabulary: "Teny Mivelatra",
|
|
864
|
+
synonyms: "Mitovy Hevitra",
|
|
865
|
+
antonyms: "Mifanohitra",
|
|
866
|
+
root: "Fototry",
|
|
867
|
+
grammarPoint: "Teny Fitsipi-pitenenana",
|
|
868
|
+
explanation: "Fanazavana",
|
|
869
|
+
uniqueAttributes: "",
|
|
870
|
+
},
|
|
871
|
+
"qug": {
|
|
872
|
+
pronunciation: "IPA",
|
|
873
|
+
partOfSpeech: "Shimipa Laya",
|
|
874
|
+
definition: "Willay",
|
|
875
|
+
exampleSentence: "Rikuchina Rimay",
|
|
876
|
+
extendedVocabulary: "Mirarishka Shimikuna",
|
|
877
|
+
synonyms: "Kipa Shina Shimikuna",
|
|
878
|
+
antonyms: "Chikan Shimikuna",
|
|
879
|
+
root: "Sapi",
|
|
880
|
+
grammarPoint: "Shimipa Puntos",
|
|
881
|
+
explanation: "Willay",
|
|
882
|
+
uniqueAttributes: "",
|
|
883
|
+
},
|
|
884
|
+
"mad": {
|
|
885
|
+
pronunciation: "Romanisasi",
|
|
886
|
+
partOfSpeech: "Jenis Bhâsa",
|
|
887
|
+
definition: "Pangartèyan",
|
|
888
|
+
exampleSentence: "Contowan Kalèmat",
|
|
889
|
+
extendedVocabulary: "Kosa Kata Tambahan",
|
|
890
|
+
synonyms: "Sinonim",
|
|
891
|
+
antonyms: "Antonim",
|
|
892
|
+
root: "Akar",
|
|
893
|
+
grammarPoint: "Poin Tata Bahasa",
|
|
894
|
+
explanation: "Katerangan",
|
|
895
|
+
uniqueAttributes: "",
|
|
896
|
+
},
|
|
897
|
+
"nya": {
|
|
898
|
+
pronunciation: "IPA",
|
|
899
|
+
partOfSpeech: "Mtundu wa Mawu",
|
|
900
|
+
definition: "Tanthauzo",
|
|
901
|
+
exampleSentence: "Chitsanzo cha Chiganizo",
|
|
902
|
+
extendedVocabulary: "Mawu Owonjezera",
|
|
903
|
+
synonyms: "Mawu Ofanana",
|
|
904
|
+
antonyms: "Mawu Osiyana",
|
|
905
|
+
root: "Muzu",
|
|
906
|
+
grammarPoint: "Mfundo ya Galamala",
|
|
907
|
+
explanation: "Kufotokoza",
|
|
908
|
+
uniqueAttributes: "",
|
|
909
|
+
},
|
|
910
|
+
"zyb": {
|
|
911
|
+
pronunciation: "拉丁壮文",
|
|
912
|
+
partOfSpeech: "词类",
|
|
913
|
+
definition: "定义",
|
|
914
|
+
exampleSentence: "例句",
|
|
915
|
+
extendedVocabulary: "扩展词汇",
|
|
916
|
+
synonyms: "同义词",
|
|
917
|
+
antonyms: "反义词",
|
|
918
|
+
root: "词根",
|
|
919
|
+
grammarPoint: "语法点",
|
|
920
|
+
explanation: "解释",
|
|
921
|
+
uniqueAttributes: "",
|
|
922
|
+
},
|
|
923
|
+
"pbu": {
|
|
924
|
+
pronunciation: "رومنائزیشن",
|
|
925
|
+
partOfSpeech: "د کلمې ډول",
|
|
926
|
+
definition: "تعریف",
|
|
927
|
+
exampleSentence: "د مثال جمله",
|
|
928
|
+
extendedVocabulary: "پراخه شوي کلمې",
|
|
929
|
+
synonyms: "مترادفات",
|
|
930
|
+
antonyms: "متضادات",
|
|
931
|
+
root: "ریښه",
|
|
932
|
+
grammarPoint: "ګرامر نقطه",
|
|
933
|
+
explanation: "تشریح",
|
|
934
|
+
uniqueAttributes: "",
|
|
935
|
+
},
|
|
936
|
+
"kin": {
|
|
937
|
+
pronunciation: "Romanization",
|
|
938
|
+
partOfSpeech: "Ubwoko bw'Ijambo",
|
|
939
|
+
definition: "Isobanuro",
|
|
940
|
+
exampleSentence: "Interuro y'Urugero",
|
|
941
|
+
extendedVocabulary: "Amagambo Yagutse",
|
|
942
|
+
synonyms: "Amagambo Ahuye",
|
|
943
|
+
antonyms: "Amagambo Atandukanye",
|
|
944
|
+
root: "Imizi",
|
|
945
|
+
grammarPoint: "Ingingo y'Ikibonezamvugo",
|
|
946
|
+
explanation: "Ibisobanuro",
|
|
947
|
+
uniqueAttributes: "",
|
|
948
|
+
},
|
|
949
|
+
"zul": {
|
|
950
|
+
pronunciation: "IPA",
|
|
951
|
+
partOfSpeech: "Uhlobo Lwegama",
|
|
952
|
+
definition: "Incazelo",
|
|
953
|
+
exampleSentence: "Isibonelo Somusho",
|
|
954
|
+
extendedVocabulary: "Amagama Anwetshiwe",
|
|
955
|
+
synonyms: "Amagama Afanayo",
|
|
956
|
+
antonyms: "Amagama Aphikisayo",
|
|
957
|
+
root: "Impande",
|
|
958
|
+
grammarPoint: "Iphuzu Lolimi",
|
|
959
|
+
explanation: "Incazelo",
|
|
960
|
+
uniqueAttributes: "",
|
|
961
|
+
},
|
|
962
|
+
"bul": {
|
|
963
|
+
pronunciation: "Латинизация",
|
|
964
|
+
partOfSpeech: "Част на речта",
|
|
965
|
+
definition: "Дефиниция",
|
|
966
|
+
exampleSentence: "Примерно изречение",
|
|
967
|
+
extendedVocabulary: "Разширен речник",
|
|
968
|
+
synonyms: "Синоними",
|
|
969
|
+
antonyms: "Антоними",
|
|
970
|
+
root: "Корен",
|
|
971
|
+
grammarPoint: "Граматична точка",
|
|
972
|
+
explanation: "Обяснение",
|
|
973
|
+
uniqueAttributes: "",
|
|
974
|
+
},
|
|
975
|
+
"swe": {
|
|
976
|
+
pronunciation: "IPA",
|
|
977
|
+
partOfSpeech: "Ordklass",
|
|
978
|
+
definition: "Definition",
|
|
979
|
+
exampleSentence: "Exempel Mening",
|
|
980
|
+
extendedVocabulary: "Utökad Vokabulär",
|
|
981
|
+
synonyms: "Synonymer",
|
|
982
|
+
antonyms: "Antonymer",
|
|
983
|
+
root: "Rot",
|
|
984
|
+
grammarPoint: "Grammatikpunkt",
|
|
985
|
+
explanation: "Förklaring",
|
|
986
|
+
uniqueAttributes: "",
|
|
987
|
+
},
|
|
988
|
+
"lin": {
|
|
989
|
+
pronunciation: "IPA",
|
|
990
|
+
partOfSpeech: "Lolenge ya Liloba",
|
|
991
|
+
definition: "Ndimbola",
|
|
992
|
+
exampleSentence: "Ndakisa ya Fraze",
|
|
993
|
+
extendedVocabulary: "Maloba Mingi",
|
|
994
|
+
synonyms: "Maloba ya Ndenge Moko",
|
|
995
|
+
antonyms: "Maloba Mikokanisi",
|
|
996
|
+
root: "Motó",
|
|
997
|
+
grammarPoint: "Likambo ya Grammaire",
|
|
998
|
+
explanation: "Ndimbola",
|
|
999
|
+
uniqueAttributes: "",
|
|
1000
|
+
},
|
|
1001
|
+
"som": {
|
|
1002
|
+
pronunciation: "IPA",
|
|
1003
|
+
partOfSpeech: "Nooca Ereyga",
|
|
1004
|
+
definition: "Macnaha",
|
|
1005
|
+
exampleSentence: "Tusaale Weedh",
|
|
1006
|
+
extendedVocabulary: "Erayada Ballaarsan",
|
|
1007
|
+
synonyms: "Erayada Isku Macnaha",
|
|
1008
|
+
antonyms: "Erayada Liddi",
|
|
1009
|
+
root: "Xididka",
|
|
1010
|
+
grammarPoint: "Xarunta Naxwaha",
|
|
1011
|
+
explanation: "Sharaxaad",
|
|
1012
|
+
uniqueAttributes: "",
|
|
1013
|
+
},
|
|
1014
|
+
"hms": {
|
|
1015
|
+
pronunciation: "拉丁苗文",
|
|
1016
|
+
partOfSpeech: "词类",
|
|
1017
|
+
definition: "定义",
|
|
1018
|
+
exampleSentence: "例句",
|
|
1019
|
+
extendedVocabulary: "扩展词汇",
|
|
1020
|
+
synonyms: "同义词",
|
|
1021
|
+
antonyms: "反义词",
|
|
1022
|
+
root: "词根",
|
|
1023
|
+
grammarPoint: "语法点",
|
|
1024
|
+
explanation: "解释",
|
|
1025
|
+
uniqueAttributes: "",
|
|
1026
|
+
},
|
|
1027
|
+
"hnj": {
|
|
1028
|
+
pronunciation: "Romanized Popular Alphabet",
|
|
1029
|
+
partOfSpeech: "Hom Lus",
|
|
1030
|
+
definition: "Txhais",
|
|
1031
|
+
exampleSentence: "Kab Lus Piv Txwv",
|
|
1032
|
+
extendedVocabulary: "Lo Lus Ntxiv",
|
|
1033
|
+
synonyms: "Lo Lus Zoo Sib Xws",
|
|
1034
|
+
antonyms: "Lo Lus Sib Txawv",
|
|
1035
|
+
root: "Hauv Paus",
|
|
1036
|
+
grammarPoint: "Qhov Grammar",
|
|
1037
|
+
explanation: "Piav Qhia",
|
|
1038
|
+
uniqueAttributes: "",
|
|
1039
|
+
},
|
|
1040
|
+
"ilo": {
|
|
1041
|
+
pronunciation: "IPA",
|
|
1042
|
+
partOfSpeech: "Kita ti Sasao",
|
|
1043
|
+
definition: "Kaipapanan",
|
|
1044
|
+
exampleSentence: "Pagarigan a Sentensia",
|
|
1045
|
+
extendedVocabulary: "Naparsuaan a Bokabularyo",
|
|
1046
|
+
synonyms: "Agpapada ti Kaipapanan",
|
|
1047
|
+
antonyms: "Agsumbangir ti Kaipapanan",
|
|
1048
|
+
root: "Ramut",
|
|
1049
|
+
grammarPoint: "Puntos ti Gramatika",
|
|
1050
|
+
explanation: "Panangilawlawag",
|
|
1051
|
+
uniqueAttributes: "",
|
|
1052
|
+
},
|
|
1053
|
+
"kaz": {
|
|
1054
|
+
pronunciation: "Латын жазуы",
|
|
1055
|
+
partOfSpeech: "Сөз табы",
|
|
1056
|
+
definition: "Анықтама",
|
|
1057
|
+
exampleSentence: "Мысал сөйлем",
|
|
1058
|
+
extendedVocabulary: "Кеңейтілген сөздік",
|
|
1059
|
+
synonyms: "Синонимдер",
|
|
1060
|
+
antonyms: "Антонимдер",
|
|
1061
|
+
root: "Түбір",
|
|
1062
|
+
grammarPoint: "Грамматикалық нүкте",
|
|
1063
|
+
explanation: "Түсіндіру",
|
|
1064
|
+
uniqueAttributes: "",
|
|
1065
|
+
},
|
|
1066
|
+
"heb": {
|
|
1067
|
+
pronunciation: "תעתיק",
|
|
1068
|
+
partOfSpeech: "חלק דיבור",
|
|
1069
|
+
definition: "הגדרה",
|
|
1070
|
+
exampleSentence: "משפט לדוגמה",
|
|
1071
|
+
extendedVocabulary: "אוצר מילים מורחב",
|
|
1072
|
+
synonyms: "מילים נרדפות",
|
|
1073
|
+
antonyms: "מילים הפוכות",
|
|
1074
|
+
root: "שורש",
|
|
1075
|
+
grammarPoint: "נקודה דקדוקית",
|
|
1076
|
+
explanation: "הסבר",
|
|
1077
|
+
uniqueAttributes: "",
|
|
1078
|
+
},
|
|
1079
|
+
"nob": {
|
|
1080
|
+
pronunciation: "IPA",
|
|
1081
|
+
partOfSpeech: "Ordklasse",
|
|
1082
|
+
definition: "Definisjon",
|
|
1083
|
+
exampleSentence: "Eksempelsetning",
|
|
1084
|
+
extendedVocabulary: "Utvidet Ordforråd",
|
|
1085
|
+
synonyms: "Synonymer",
|
|
1086
|
+
antonyms: "Antonymer",
|
|
1087
|
+
root: "Rot",
|
|
1088
|
+
grammarPoint: "Grammatikkpunkt",
|
|
1089
|
+
explanation: "Forklaring",
|
|
1090
|
+
uniqueAttributes: "",
|
|
1091
|
+
},
|
|
1092
|
+
"nno": {
|
|
1093
|
+
pronunciation: "IPA",
|
|
1094
|
+
partOfSpeech: "Ordklasse",
|
|
1095
|
+
definition: "Definisjon",
|
|
1096
|
+
exampleSentence: "Dømesetning",
|
|
1097
|
+
extendedVocabulary: "Utvida Ordforråd",
|
|
1098
|
+
synonyms: "Synonym",
|
|
1099
|
+
antonyms: "Antonym",
|
|
1100
|
+
root: "Rot",
|
|
1101
|
+
grammarPoint: "Grammatikkpunkt",
|
|
1102
|
+
explanation: "Forklaring",
|
|
1103
|
+
uniqueAttributes: "",
|
|
1104
|
+
},
|
|
1105
|
+
"afr": {
|
|
1106
|
+
pronunciation: "IPA",
|
|
1107
|
+
partOfSpeech: "Part of Speech",
|
|
1108
|
+
definition: "Definition",
|
|
1109
|
+
exampleSentence: "Example Sentence",
|
|
1110
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1111
|
+
synonyms: "Synonyms",
|
|
1112
|
+
antonyms: "Antonyms",
|
|
1113
|
+
root: "Root",
|
|
1114
|
+
grammarPoint: "Grammar Point",
|
|
1115
|
+
explanation: "Explanation",
|
|
1116
|
+
uniqueAttributes: "",
|
|
1117
|
+
},
|
|
1118
|
+
"sqi": {
|
|
1119
|
+
pronunciation: "IPA",
|
|
1120
|
+
partOfSpeech: "Part of Speech",
|
|
1121
|
+
definition: "Definition",
|
|
1122
|
+
exampleSentence: "Example Sentence",
|
|
1123
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1124
|
+
synonyms: "Synonyms",
|
|
1125
|
+
antonyms: "Antonyms",
|
|
1126
|
+
root: "Root",
|
|
1127
|
+
grammarPoint: "Grammar Point",
|
|
1128
|
+
explanation: "Explanation",
|
|
1129
|
+
uniqueAttributes: "",
|
|
1130
|
+
},
|
|
1131
|
+
"asm": {
|
|
1132
|
+
pronunciation: "IPA",
|
|
1133
|
+
partOfSpeech: "Part of Speech",
|
|
1134
|
+
definition: "Definition",
|
|
1135
|
+
exampleSentence: "Example Sentence",
|
|
1136
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1137
|
+
synonyms: "Synonyms",
|
|
1138
|
+
antonyms: "Antonyms",
|
|
1139
|
+
root: "Root",
|
|
1140
|
+
grammarPoint: "Grammar Point",
|
|
1141
|
+
explanation: "Explanation",
|
|
1142
|
+
uniqueAttributes: "",
|
|
1143
|
+
},
|
|
1144
|
+
"eus": {
|
|
1145
|
+
pronunciation: "IPA",
|
|
1146
|
+
partOfSpeech: "Part of Speech",
|
|
1147
|
+
definition: "Definition",
|
|
1148
|
+
exampleSentence: "Example Sentence",
|
|
1149
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1150
|
+
synonyms: "Synonyms",
|
|
1151
|
+
antonyms: "Antonyms",
|
|
1152
|
+
root: "Root",
|
|
1153
|
+
grammarPoint: "Grammar Point",
|
|
1154
|
+
explanation: "Explanation",
|
|
1155
|
+
uniqueAttributes: "",
|
|
1156
|
+
},
|
|
1157
|
+
"bre": {
|
|
1158
|
+
pronunciation: "IPA",
|
|
1159
|
+
partOfSpeech: "Part of Speech",
|
|
1160
|
+
definition: "Definition",
|
|
1161
|
+
exampleSentence: "Example Sentence",
|
|
1162
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1163
|
+
synonyms: "Synonyms",
|
|
1164
|
+
antonyms: "Antonyms",
|
|
1165
|
+
root: "Root",
|
|
1166
|
+
grammarPoint: "Grammar Point",
|
|
1167
|
+
explanation: "Explanation",
|
|
1168
|
+
uniqueAttributes: "",
|
|
1169
|
+
},
|
|
1170
|
+
"cat": {
|
|
1171
|
+
pronunciation: "IPA",
|
|
1172
|
+
partOfSpeech: "Part of Speech",
|
|
1173
|
+
definition: "Definition",
|
|
1174
|
+
exampleSentence: "Example Sentence",
|
|
1175
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1176
|
+
synonyms: "Synonyms",
|
|
1177
|
+
antonyms: "Antonyms",
|
|
1178
|
+
root: "Root",
|
|
1179
|
+
grammarPoint: "Grammar Point",
|
|
1180
|
+
explanation: "Explanation",
|
|
1181
|
+
uniqueAttributes: "",
|
|
1182
|
+
},
|
|
1183
|
+
"cos": {
|
|
1184
|
+
pronunciation: "IPA",
|
|
1185
|
+
partOfSpeech: "Part of Speech",
|
|
1186
|
+
definition: "Definition",
|
|
1187
|
+
exampleSentence: "Example Sentence",
|
|
1188
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1189
|
+
synonyms: "Synonyms",
|
|
1190
|
+
antonyms: "Antonyms",
|
|
1191
|
+
root: "Root",
|
|
1192
|
+
grammarPoint: "Grammar Point",
|
|
1193
|
+
explanation: "Explanation",
|
|
1194
|
+
uniqueAttributes: "",
|
|
1195
|
+
},
|
|
1196
|
+
"cym": {
|
|
1197
|
+
pronunciation: "IPA",
|
|
1198
|
+
partOfSpeech: "Part of Speech",
|
|
1199
|
+
definition: "Definition",
|
|
1200
|
+
exampleSentence: "Example Sentence",
|
|
1201
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1202
|
+
synonyms: "Synonyms",
|
|
1203
|
+
antonyms: "Antonyms",
|
|
1204
|
+
root: "Root",
|
|
1205
|
+
grammarPoint: "Grammar Point",
|
|
1206
|
+
explanation: "Explanation",
|
|
1207
|
+
uniqueAttributes: "",
|
|
1208
|
+
},
|
|
1209
|
+
"dan": {
|
|
1210
|
+
pronunciation: "IPA",
|
|
1211
|
+
partOfSpeech: "Part of Speech",
|
|
1212
|
+
definition: "Definition",
|
|
1213
|
+
exampleSentence: "Example Sentence",
|
|
1214
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1215
|
+
synonyms: "Synonyms",
|
|
1216
|
+
antonyms: "Antonyms",
|
|
1217
|
+
root: "Root",
|
|
1218
|
+
grammarPoint: "Grammar Point",
|
|
1219
|
+
explanation: "Explanation",
|
|
1220
|
+
uniqueAttributes: "",
|
|
1221
|
+
},
|
|
1222
|
+
"div": {
|
|
1223
|
+
pronunciation: "IPA",
|
|
1224
|
+
partOfSpeech: "Part of Speech",
|
|
1225
|
+
definition: "Definition",
|
|
1226
|
+
exampleSentence: "Example Sentence",
|
|
1227
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1228
|
+
synonyms: "Synonyms",
|
|
1229
|
+
antonyms: "Antonyms",
|
|
1230
|
+
root: "Root",
|
|
1231
|
+
grammarPoint: "Grammar Point",
|
|
1232
|
+
explanation: "Explanation",
|
|
1233
|
+
uniqueAttributes: "",
|
|
1234
|
+
},
|
|
1235
|
+
"epo": {
|
|
1236
|
+
pronunciation: "IPA",
|
|
1237
|
+
partOfSpeech: "Part of Speech",
|
|
1238
|
+
definition: "Definition",
|
|
1239
|
+
exampleSentence: "Example Sentence",
|
|
1240
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1241
|
+
synonyms: "Synonyms",
|
|
1242
|
+
antonyms: "Antonyms",
|
|
1243
|
+
root: "Root",
|
|
1244
|
+
grammarPoint: "Grammar Point",
|
|
1245
|
+
explanation: "Explanation",
|
|
1246
|
+
uniqueAttributes: "",
|
|
1247
|
+
},
|
|
1248
|
+
"ekk": {
|
|
1249
|
+
pronunciation: "IPA",
|
|
1250
|
+
partOfSpeech: "Part of Speech",
|
|
1251
|
+
definition: "Definition",
|
|
1252
|
+
exampleSentence: "Example Sentence",
|
|
1253
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1254
|
+
synonyms: "Synonyms",
|
|
1255
|
+
antonyms: "Antonyms",
|
|
1256
|
+
root: "Root",
|
|
1257
|
+
grammarPoint: "Grammar Point",
|
|
1258
|
+
explanation: "Explanation",
|
|
1259
|
+
uniqueAttributes: "",
|
|
1260
|
+
},
|
|
1261
|
+
"fao": {
|
|
1262
|
+
pronunciation: "IPA",
|
|
1263
|
+
partOfSpeech: "Part of Speech",
|
|
1264
|
+
definition: "Definition",
|
|
1265
|
+
exampleSentence: "Example Sentence",
|
|
1266
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1267
|
+
synonyms: "Synonyms",
|
|
1268
|
+
antonyms: "Antonyms",
|
|
1269
|
+
root: "Root",
|
|
1270
|
+
grammarPoint: "Grammar Point",
|
|
1271
|
+
explanation: "Explanation",
|
|
1272
|
+
uniqueAttributes: "",
|
|
1273
|
+
},
|
|
1274
|
+
"fij": {
|
|
1275
|
+
pronunciation: "IPA",
|
|
1276
|
+
partOfSpeech: "Part of Speech",
|
|
1277
|
+
definition: "Definition",
|
|
1278
|
+
exampleSentence: "Example Sentence",
|
|
1279
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1280
|
+
synonyms: "Synonyms",
|
|
1281
|
+
antonyms: "Antonyms",
|
|
1282
|
+
root: "Root",
|
|
1283
|
+
grammarPoint: "Grammar Point",
|
|
1284
|
+
explanation: "Explanation",
|
|
1285
|
+
uniqueAttributes: "",
|
|
1286
|
+
},
|
|
1287
|
+
"fin": {
|
|
1288
|
+
pronunciation: "IPA",
|
|
1289
|
+
partOfSpeech: "Part of Speech",
|
|
1290
|
+
definition: "Definition",
|
|
1291
|
+
exampleSentence: "Example Sentence",
|
|
1292
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1293
|
+
synonyms: "Synonyms",
|
|
1294
|
+
antonyms: "Antonyms",
|
|
1295
|
+
root: "Root",
|
|
1296
|
+
grammarPoint: "Grammar Point",
|
|
1297
|
+
explanation: "Explanation",
|
|
1298
|
+
uniqueAttributes: "",
|
|
1299
|
+
},
|
|
1300
|
+
"fry": {
|
|
1301
|
+
pronunciation: "IPA",
|
|
1302
|
+
partOfSpeech: "Part of Speech",
|
|
1303
|
+
definition: "Definition",
|
|
1304
|
+
exampleSentence: "Example Sentence",
|
|
1305
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1306
|
+
synonyms: "Synonyms",
|
|
1307
|
+
antonyms: "Antonyms",
|
|
1308
|
+
root: "Root",
|
|
1309
|
+
grammarPoint: "Grammar Point",
|
|
1310
|
+
explanation: "Explanation",
|
|
1311
|
+
uniqueAttributes: "",
|
|
1312
|
+
},
|
|
1313
|
+
"gla": {
|
|
1314
|
+
pronunciation: "IPA",
|
|
1315
|
+
partOfSpeech: "Part of Speech",
|
|
1316
|
+
definition: "Definition",
|
|
1317
|
+
exampleSentence: "Example Sentence",
|
|
1318
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1319
|
+
synonyms: "Synonyms",
|
|
1320
|
+
antonyms: "Antonyms",
|
|
1321
|
+
root: "Root",
|
|
1322
|
+
grammarPoint: "Grammar Point",
|
|
1323
|
+
explanation: "Explanation",
|
|
1324
|
+
uniqueAttributes: "",
|
|
1325
|
+
},
|
|
1326
|
+
"gle": {
|
|
1327
|
+
pronunciation: "IPA",
|
|
1328
|
+
partOfSpeech: "Part of Speech",
|
|
1329
|
+
definition: "Definition",
|
|
1330
|
+
exampleSentence: "Example Sentence",
|
|
1331
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1332
|
+
synonyms: "Synonyms",
|
|
1333
|
+
antonyms: "Antonyms",
|
|
1334
|
+
root: "Root",
|
|
1335
|
+
grammarPoint: "Grammar Point",
|
|
1336
|
+
explanation: "Explanation",
|
|
1337
|
+
uniqueAttributes: "",
|
|
1338
|
+
},
|
|
1339
|
+
"glg": {
|
|
1340
|
+
pronunciation: "IPA",
|
|
1341
|
+
partOfSpeech: "Part of Speech",
|
|
1342
|
+
definition: "Definition",
|
|
1343
|
+
exampleSentence: "Example Sentence",
|
|
1344
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1345
|
+
synonyms: "Synonyms",
|
|
1346
|
+
antonyms: "Antonyms",
|
|
1347
|
+
root: "Root",
|
|
1348
|
+
grammarPoint: "Grammar Point",
|
|
1349
|
+
explanation: "Explanation",
|
|
1350
|
+
uniqueAttributes: "",
|
|
1351
|
+
},
|
|
1352
|
+
"grn": {
|
|
1353
|
+
pronunciation: "IPA",
|
|
1354
|
+
partOfSpeech: "Part of Speech",
|
|
1355
|
+
definition: "Definition",
|
|
1356
|
+
exampleSentence: "Example Sentence",
|
|
1357
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1358
|
+
synonyms: "Synonyms",
|
|
1359
|
+
antonyms: "Antonyms",
|
|
1360
|
+
root: "Root",
|
|
1361
|
+
grammarPoint: "Grammar Point",
|
|
1362
|
+
explanation: "Explanation",
|
|
1363
|
+
uniqueAttributes: "",
|
|
1364
|
+
},
|
|
1365
|
+
"hat": {
|
|
1366
|
+
pronunciation: "IPA",
|
|
1367
|
+
partOfSpeech: "Part of Speech",
|
|
1368
|
+
definition: "Definition",
|
|
1369
|
+
exampleSentence: "Example Sentence",
|
|
1370
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1371
|
+
synonyms: "Synonyms",
|
|
1372
|
+
antonyms: "Antonyms",
|
|
1373
|
+
root: "Root",
|
|
1374
|
+
grammarPoint: "Grammar Point",
|
|
1375
|
+
explanation: "Explanation",
|
|
1376
|
+
uniqueAttributes: "",
|
|
1377
|
+
},
|
|
1378
|
+
"haw": {
|
|
1379
|
+
pronunciation: "IPA",
|
|
1380
|
+
partOfSpeech: "Part of Speech",
|
|
1381
|
+
definition: "Definition",
|
|
1382
|
+
exampleSentence: "Example Sentence",
|
|
1383
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1384
|
+
synonyms: "Synonyms",
|
|
1385
|
+
antonyms: "Antonyms",
|
|
1386
|
+
root: "Root",
|
|
1387
|
+
grammarPoint: "Grammar Point",
|
|
1388
|
+
explanation: "Explanation",
|
|
1389
|
+
uniqueAttributes: "",
|
|
1390
|
+
},
|
|
1391
|
+
"hye": {
|
|
1392
|
+
pronunciation: "IPA",
|
|
1393
|
+
partOfSpeech: "Part of Speech",
|
|
1394
|
+
definition: "Definition",
|
|
1395
|
+
exampleSentence: "Example Sentence",
|
|
1396
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1397
|
+
synonyms: "Synonyms",
|
|
1398
|
+
antonyms: "Antonyms",
|
|
1399
|
+
root: "Root",
|
|
1400
|
+
grammarPoint: "Grammar Point",
|
|
1401
|
+
explanation: "Explanation",
|
|
1402
|
+
uniqueAttributes: "",
|
|
1403
|
+
},
|
|
1404
|
+
"ido": {
|
|
1405
|
+
pronunciation: "IPA",
|
|
1406
|
+
partOfSpeech: "Part of Speech",
|
|
1407
|
+
definition: "Definition",
|
|
1408
|
+
exampleSentence: "Example Sentence",
|
|
1409
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1410
|
+
synonyms: "Synonyms",
|
|
1411
|
+
antonyms: "Antonyms",
|
|
1412
|
+
root: "Root",
|
|
1413
|
+
grammarPoint: "Grammar Point",
|
|
1414
|
+
explanation: "Explanation",
|
|
1415
|
+
uniqueAttributes: "",
|
|
1416
|
+
},
|
|
1417
|
+
"ina": {
|
|
1418
|
+
pronunciation: "IPA",
|
|
1419
|
+
partOfSpeech: "Part of Speech",
|
|
1420
|
+
definition: "Definition",
|
|
1421
|
+
exampleSentence: "Example Sentence",
|
|
1422
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1423
|
+
synonyms: "Synonyms",
|
|
1424
|
+
antonyms: "Antonyms",
|
|
1425
|
+
root: "Root",
|
|
1426
|
+
grammarPoint: "Grammar Point",
|
|
1427
|
+
explanation: "Explanation",
|
|
1428
|
+
uniqueAttributes: "",
|
|
1429
|
+
},
|
|
1430
|
+
"isl": {
|
|
1431
|
+
pronunciation: "IPA",
|
|
1432
|
+
partOfSpeech: "Part of Speech",
|
|
1433
|
+
definition: "Definition",
|
|
1434
|
+
exampleSentence: "Example Sentence",
|
|
1435
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1436
|
+
synonyms: "Synonyms",
|
|
1437
|
+
antonyms: "Antonyms",
|
|
1438
|
+
root: "Root",
|
|
1439
|
+
grammarPoint: "Grammar Point",
|
|
1440
|
+
explanation: "Explanation",
|
|
1441
|
+
uniqueAttributes: "",
|
|
1442
|
+
},
|
|
1443
|
+
"kat": {
|
|
1444
|
+
pronunciation: "IPA",
|
|
1445
|
+
partOfSpeech: "Part of Speech",
|
|
1446
|
+
definition: "Definition",
|
|
1447
|
+
exampleSentence: "Example Sentence",
|
|
1448
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1449
|
+
synonyms: "Synonyms",
|
|
1450
|
+
antonyms: "Antonyms",
|
|
1451
|
+
root: "Root",
|
|
1452
|
+
grammarPoint: "Grammar Point",
|
|
1453
|
+
explanation: "Explanation",
|
|
1454
|
+
uniqueAttributes: "",
|
|
1455
|
+
},
|
|
1456
|
+
"khm": {
|
|
1457
|
+
pronunciation: "IPA",
|
|
1458
|
+
partOfSpeech: "Part of Speech",
|
|
1459
|
+
definition: "Definition",
|
|
1460
|
+
exampleSentence: "Example Sentence",
|
|
1461
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1462
|
+
synonyms: "Synonyms",
|
|
1463
|
+
antonyms: "Antonyms",
|
|
1464
|
+
root: "Root",
|
|
1465
|
+
grammarPoint: "Grammar Point",
|
|
1466
|
+
explanation: "Explanation",
|
|
1467
|
+
uniqueAttributes: "",
|
|
1468
|
+
},
|
|
1469
|
+
"kir": {
|
|
1470
|
+
pronunciation: "IPA",
|
|
1471
|
+
partOfSpeech: "Part of Speech",
|
|
1472
|
+
definition: "Definition",
|
|
1473
|
+
exampleSentence: "Example Sentence",
|
|
1474
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1475
|
+
synonyms: "Synonyms",
|
|
1476
|
+
antonyms: "Antonyms",
|
|
1477
|
+
root: "Root",
|
|
1478
|
+
grammarPoint: "Grammar Point",
|
|
1479
|
+
explanation: "Explanation",
|
|
1480
|
+
uniqueAttributes: "",
|
|
1481
|
+
},
|
|
1482
|
+
"lao": {
|
|
1483
|
+
pronunciation: "IPA",
|
|
1484
|
+
partOfSpeech: "Part of Speech",
|
|
1485
|
+
definition: "Definition",
|
|
1486
|
+
exampleSentence: "Example Sentence",
|
|
1487
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1488
|
+
synonyms: "Synonyms",
|
|
1489
|
+
antonyms: "Antonyms",
|
|
1490
|
+
root: "Root",
|
|
1491
|
+
grammarPoint: "Grammar Point",
|
|
1492
|
+
explanation: "Explanation",
|
|
1493
|
+
uniqueAttributes: "",
|
|
1494
|
+
},
|
|
1495
|
+
"lat": {
|
|
1496
|
+
pronunciation: "IPA",
|
|
1497
|
+
partOfSpeech: "Part of Speech",
|
|
1498
|
+
definition: "Definition",
|
|
1499
|
+
exampleSentence: "Example Sentence",
|
|
1500
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1501
|
+
synonyms: "Synonyms",
|
|
1502
|
+
antonyms: "Antonyms",
|
|
1503
|
+
root: "Root",
|
|
1504
|
+
grammarPoint: "Grammar Point",
|
|
1505
|
+
explanation: "Explanation",
|
|
1506
|
+
uniqueAttributes: "",
|
|
1507
|
+
},
|
|
1508
|
+
"lvs": {
|
|
1509
|
+
pronunciation: "IPA",
|
|
1510
|
+
partOfSpeech: "Part of Speech",
|
|
1511
|
+
definition: "Definition",
|
|
1512
|
+
exampleSentence: "Example Sentence",
|
|
1513
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1514
|
+
synonyms: "Synonyms",
|
|
1515
|
+
antonyms: "Antonyms",
|
|
1516
|
+
root: "Root",
|
|
1517
|
+
grammarPoint: "Grammar Point",
|
|
1518
|
+
explanation: "Explanation",
|
|
1519
|
+
uniqueAttributes: "",
|
|
1520
|
+
},
|
|
1521
|
+
"lit": {
|
|
1522
|
+
pronunciation: "IPA",
|
|
1523
|
+
partOfSpeech: "Part of Speech",
|
|
1524
|
+
definition: "Definition",
|
|
1525
|
+
exampleSentence: "Example Sentence",
|
|
1526
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1527
|
+
synonyms: "Synonyms",
|
|
1528
|
+
antonyms: "Antonyms",
|
|
1529
|
+
root: "Root",
|
|
1530
|
+
grammarPoint: "Grammar Point",
|
|
1531
|
+
explanation: "Explanation",
|
|
1532
|
+
uniqueAttributes: "",
|
|
1533
|
+
},
|
|
1534
|
+
"ltz": {
|
|
1535
|
+
pronunciation: "IPA",
|
|
1536
|
+
partOfSpeech: "Part of Speech",
|
|
1537
|
+
definition: "Definition",
|
|
1538
|
+
exampleSentence: "Example Sentence",
|
|
1539
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1540
|
+
synonyms: "Synonyms",
|
|
1541
|
+
antonyms: "Antonyms",
|
|
1542
|
+
root: "Root",
|
|
1543
|
+
grammarPoint: "Grammar Point",
|
|
1544
|
+
explanation: "Explanation",
|
|
1545
|
+
uniqueAttributes: "",
|
|
1546
|
+
},
|
|
1547
|
+
"mkd": {
|
|
1548
|
+
pronunciation: "IPA",
|
|
1549
|
+
partOfSpeech: "Part of Speech",
|
|
1550
|
+
definition: "Definition",
|
|
1551
|
+
exampleSentence: "Example Sentence",
|
|
1552
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1553
|
+
synonyms: "Synonyms",
|
|
1554
|
+
antonyms: "Antonyms",
|
|
1555
|
+
root: "Root",
|
|
1556
|
+
grammarPoint: "Grammar Point",
|
|
1557
|
+
explanation: "Explanation",
|
|
1558
|
+
uniqueAttributes: "",
|
|
1559
|
+
},
|
|
1560
|
+
"mlt": {
|
|
1561
|
+
pronunciation: "IPA",
|
|
1562
|
+
partOfSpeech: "Part of Speech",
|
|
1563
|
+
definition: "Definition",
|
|
1564
|
+
exampleSentence: "Example Sentence",
|
|
1565
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1566
|
+
synonyms: "Synonyms",
|
|
1567
|
+
antonyms: "Antonyms",
|
|
1568
|
+
root: "Root",
|
|
1569
|
+
grammarPoint: "Grammar Point",
|
|
1570
|
+
explanation: "Explanation",
|
|
1571
|
+
uniqueAttributes: "",
|
|
1572
|
+
},
|
|
1573
|
+
"mon": {
|
|
1574
|
+
pronunciation: "IPA",
|
|
1575
|
+
partOfSpeech: "Part of Speech",
|
|
1576
|
+
definition: "Definition",
|
|
1577
|
+
exampleSentence: "Example Sentence",
|
|
1578
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1579
|
+
synonyms: "Synonyms",
|
|
1580
|
+
antonyms: "Antonyms",
|
|
1581
|
+
root: "Root",
|
|
1582
|
+
grammarPoint: "Grammar Point",
|
|
1583
|
+
explanation: "Explanation",
|
|
1584
|
+
uniqueAttributes: "",
|
|
1585
|
+
},
|
|
1586
|
+
"mri": {
|
|
1587
|
+
pronunciation: "IPA",
|
|
1588
|
+
partOfSpeech: "Part of Speech",
|
|
1589
|
+
definition: "Definition",
|
|
1590
|
+
exampleSentence: "Example Sentence",
|
|
1591
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1592
|
+
synonyms: "Synonyms",
|
|
1593
|
+
antonyms: "Antonyms",
|
|
1594
|
+
root: "Root",
|
|
1595
|
+
grammarPoint: "Grammar Point",
|
|
1596
|
+
explanation: "Explanation",
|
|
1597
|
+
uniqueAttributes: "",
|
|
1598
|
+
},
|
|
1599
|
+
"nso": {
|
|
1600
|
+
pronunciation: "IPA",
|
|
1601
|
+
partOfSpeech: "Part of Speech",
|
|
1602
|
+
definition: "Definition",
|
|
1603
|
+
exampleSentence: "Example Sentence",
|
|
1604
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1605
|
+
synonyms: "Synonyms",
|
|
1606
|
+
antonyms: "Antonyms",
|
|
1607
|
+
root: "Root",
|
|
1608
|
+
grammarPoint: "Grammar Point",
|
|
1609
|
+
explanation: "Explanation",
|
|
1610
|
+
uniqueAttributes: "",
|
|
1611
|
+
},
|
|
1612
|
+
"oci": {
|
|
1613
|
+
pronunciation: "IPA",
|
|
1614
|
+
partOfSpeech: "Part of Speech",
|
|
1615
|
+
definition: "Definition",
|
|
1616
|
+
exampleSentence: "Example Sentence",
|
|
1617
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1618
|
+
synonyms: "Synonyms",
|
|
1619
|
+
antonyms: "Antonyms",
|
|
1620
|
+
root: "Root",
|
|
1621
|
+
grammarPoint: "Grammar Point",
|
|
1622
|
+
explanation: "Explanation",
|
|
1623
|
+
uniqueAttributes: "",
|
|
1624
|
+
},
|
|
1625
|
+
"ori": {
|
|
1626
|
+
pronunciation: "IPA",
|
|
1627
|
+
partOfSpeech: "Part of Speech",
|
|
1628
|
+
definition: "Definition",
|
|
1629
|
+
exampleSentence: "Example Sentence",
|
|
1630
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1631
|
+
synonyms: "Synonyms",
|
|
1632
|
+
antonyms: "Antonyms",
|
|
1633
|
+
root: "Root",
|
|
1634
|
+
grammarPoint: "Grammar Point",
|
|
1635
|
+
explanation: "Explanation",
|
|
1636
|
+
uniqueAttributes: "",
|
|
1637
|
+
},
|
|
1638
|
+
"orm": {
|
|
1639
|
+
pronunciation: "IPA",
|
|
1640
|
+
partOfSpeech: "Part of Speech",
|
|
1641
|
+
definition: "Definition",
|
|
1642
|
+
exampleSentence: "Example Sentence",
|
|
1643
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1644
|
+
synonyms: "Synonyms",
|
|
1645
|
+
antonyms: "Antonyms",
|
|
1646
|
+
root: "Root",
|
|
1647
|
+
grammarPoint: "Grammar Point",
|
|
1648
|
+
explanation: "Explanation",
|
|
1649
|
+
uniqueAttributes: "",
|
|
1650
|
+
},
|
|
1651
|
+
"prs": {
|
|
1652
|
+
pronunciation: "IPA",
|
|
1653
|
+
partOfSpeech: "Part of Speech",
|
|
1654
|
+
definition: "Definition",
|
|
1655
|
+
exampleSentence: "Example Sentence",
|
|
1656
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1657
|
+
synonyms: "Synonyms",
|
|
1658
|
+
antonyms: "Antonyms",
|
|
1659
|
+
root: "Root",
|
|
1660
|
+
grammarPoint: "Grammar Point",
|
|
1661
|
+
explanation: "Explanation",
|
|
1662
|
+
uniqueAttributes: "",
|
|
1663
|
+
},
|
|
1664
|
+
"san": {
|
|
1665
|
+
pronunciation: "IPA",
|
|
1666
|
+
partOfSpeech: "Part of Speech",
|
|
1667
|
+
definition: "Definition",
|
|
1668
|
+
exampleSentence: "Example Sentence",
|
|
1669
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1670
|
+
synonyms: "Synonyms",
|
|
1671
|
+
antonyms: "Antonyms",
|
|
1672
|
+
root: "Root",
|
|
1673
|
+
grammarPoint: "Grammar Point",
|
|
1674
|
+
explanation: "Explanation",
|
|
1675
|
+
uniqueAttributes: "",
|
|
1676
|
+
},
|
|
1677
|
+
"slk": {
|
|
1678
|
+
pronunciation: "IPA",
|
|
1679
|
+
partOfSpeech: "Part of Speech",
|
|
1680
|
+
definition: "Definition",
|
|
1681
|
+
exampleSentence: "Example Sentence",
|
|
1682
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1683
|
+
synonyms: "Synonyms",
|
|
1684
|
+
antonyms: "Antonyms",
|
|
1685
|
+
root: "Root",
|
|
1686
|
+
grammarPoint: "Grammar Point",
|
|
1687
|
+
explanation: "Explanation",
|
|
1688
|
+
uniqueAttributes: "",
|
|
1689
|
+
},
|
|
1690
|
+
"slv": {
|
|
1691
|
+
pronunciation: "IPA",
|
|
1692
|
+
partOfSpeech: "Part of Speech",
|
|
1693
|
+
definition: "Definition",
|
|
1694
|
+
exampleSentence: "Example Sentence",
|
|
1695
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1696
|
+
synonyms: "Synonyms",
|
|
1697
|
+
antonyms: "Antonyms",
|
|
1698
|
+
root: "Root",
|
|
1699
|
+
grammarPoint: "Grammar Point",
|
|
1700
|
+
explanation: "Explanation",
|
|
1701
|
+
uniqueAttributes: "",
|
|
1702
|
+
},
|
|
1703
|
+
"smo": {
|
|
1704
|
+
pronunciation: "IPA",
|
|
1705
|
+
partOfSpeech: "Part of Speech",
|
|
1706
|
+
definition: "Definition",
|
|
1707
|
+
exampleSentence: "Example Sentence",
|
|
1708
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1709
|
+
synonyms: "Synonyms",
|
|
1710
|
+
antonyms: "Antonyms",
|
|
1711
|
+
root: "Root",
|
|
1712
|
+
grammarPoint: "Grammar Point",
|
|
1713
|
+
explanation: "Explanation",
|
|
1714
|
+
uniqueAttributes: "",
|
|
1715
|
+
},
|
|
1716
|
+
"sna": {
|
|
1717
|
+
pronunciation: "IPA",
|
|
1718
|
+
partOfSpeech: "Part of Speech",
|
|
1719
|
+
definition: "Definition",
|
|
1720
|
+
exampleSentence: "Example Sentence",
|
|
1721
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1722
|
+
synonyms: "Synonyms",
|
|
1723
|
+
antonyms: "Antonyms",
|
|
1724
|
+
root: "Root",
|
|
1725
|
+
grammarPoint: "Grammar Point",
|
|
1726
|
+
explanation: "Explanation",
|
|
1727
|
+
uniqueAttributes: "",
|
|
1728
|
+
},
|
|
1729
|
+
"snd": {
|
|
1730
|
+
pronunciation: "IPA",
|
|
1731
|
+
partOfSpeech: "Part of Speech",
|
|
1732
|
+
definition: "Definition",
|
|
1733
|
+
exampleSentence: "Example Sentence",
|
|
1734
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1735
|
+
synonyms: "Synonyms",
|
|
1736
|
+
antonyms: "Antonyms",
|
|
1737
|
+
root: "Root",
|
|
1738
|
+
grammarPoint: "Grammar Point",
|
|
1739
|
+
explanation: "Explanation",
|
|
1740
|
+
uniqueAttributes: "",
|
|
1741
|
+
},
|
|
1742
|
+
"sot": {
|
|
1743
|
+
pronunciation: "IPA",
|
|
1744
|
+
partOfSpeech: "Part of Speech",
|
|
1745
|
+
definition: "Definition",
|
|
1746
|
+
exampleSentence: "Example Sentence",
|
|
1747
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1748
|
+
synonyms: "Synonyms",
|
|
1749
|
+
antonyms: "Antonyms",
|
|
1750
|
+
root: "Root",
|
|
1751
|
+
grammarPoint: "Grammar Point",
|
|
1752
|
+
explanation: "Explanation",
|
|
1753
|
+
uniqueAttributes: "",
|
|
1754
|
+
},
|
|
1755
|
+
"tah": {
|
|
1756
|
+
pronunciation: "IPA",
|
|
1757
|
+
partOfSpeech: "Part of Speech",
|
|
1758
|
+
definition: "Definition",
|
|
1759
|
+
exampleSentence: "Example Sentence",
|
|
1760
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1761
|
+
synonyms: "Synonyms",
|
|
1762
|
+
antonyms: "Antonyms",
|
|
1763
|
+
root: "Root",
|
|
1764
|
+
grammarPoint: "Grammar Point",
|
|
1765
|
+
explanation: "Explanation",
|
|
1766
|
+
uniqueAttributes: "",
|
|
1767
|
+
},
|
|
1768
|
+
"tat": {
|
|
1769
|
+
pronunciation: "IPA",
|
|
1770
|
+
partOfSpeech: "Part of Speech",
|
|
1771
|
+
definition: "Definition",
|
|
1772
|
+
exampleSentence: "Example Sentence",
|
|
1773
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1774
|
+
synonyms: "Synonyms",
|
|
1775
|
+
antonyms: "Antonyms",
|
|
1776
|
+
root: "Root",
|
|
1777
|
+
grammarPoint: "Grammar Point",
|
|
1778
|
+
explanation: "Explanation",
|
|
1779
|
+
uniqueAttributes: "",
|
|
1780
|
+
},
|
|
1781
|
+
"tgk": {
|
|
1782
|
+
pronunciation: "IPA",
|
|
1783
|
+
partOfSpeech: "Part of Speech",
|
|
1784
|
+
definition: "Definition",
|
|
1785
|
+
exampleSentence: "Example Sentence",
|
|
1786
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1787
|
+
synonyms: "Synonyms",
|
|
1788
|
+
antonyms: "Antonyms",
|
|
1789
|
+
root: "Root",
|
|
1790
|
+
grammarPoint: "Grammar Point",
|
|
1791
|
+
explanation: "Explanation",
|
|
1792
|
+
uniqueAttributes: "",
|
|
1793
|
+
},
|
|
1794
|
+
"tir": {
|
|
1795
|
+
pronunciation: "IPA",
|
|
1796
|
+
partOfSpeech: "Part of Speech",
|
|
1797
|
+
definition: "Definition",
|
|
1798
|
+
exampleSentence: "Example Sentence",
|
|
1799
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1800
|
+
synonyms: "Synonyms",
|
|
1801
|
+
antonyms: "Antonyms",
|
|
1802
|
+
root: "Root",
|
|
1803
|
+
grammarPoint: "Grammar Point",
|
|
1804
|
+
explanation: "Explanation",
|
|
1805
|
+
uniqueAttributes: "",
|
|
1806
|
+
},
|
|
1807
|
+
"ton": {
|
|
1808
|
+
pronunciation: "IPA",
|
|
1809
|
+
partOfSpeech: "Part of Speech",
|
|
1810
|
+
definition: "Definition",
|
|
1811
|
+
exampleSentence: "Example Sentence",
|
|
1812
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1813
|
+
synonyms: "Synonyms",
|
|
1814
|
+
antonyms: "Antonyms",
|
|
1815
|
+
root: "Root",
|
|
1816
|
+
grammarPoint: "Grammar Point",
|
|
1817
|
+
explanation: "Explanation",
|
|
1818
|
+
uniqueAttributes: "",
|
|
1819
|
+
},
|
|
1820
|
+
"tsn": {
|
|
1821
|
+
pronunciation: "IPA",
|
|
1822
|
+
partOfSpeech: "Part of Speech",
|
|
1823
|
+
definition: "Definition",
|
|
1824
|
+
exampleSentence: "Example Sentence",
|
|
1825
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1826
|
+
synonyms: "Synonyms",
|
|
1827
|
+
antonyms: "Antonyms",
|
|
1828
|
+
root: "Root",
|
|
1829
|
+
grammarPoint: "Grammar Point",
|
|
1830
|
+
explanation: "Explanation",
|
|
1831
|
+
uniqueAttributes: "",
|
|
1832
|
+
},
|
|
1833
|
+
"tuk": {
|
|
1834
|
+
pronunciation: "IPA",
|
|
1835
|
+
partOfSpeech: "Part of Speech",
|
|
1836
|
+
definition: "Definition",
|
|
1837
|
+
exampleSentence: "Example Sentence",
|
|
1838
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1839
|
+
synonyms: "Synonyms",
|
|
1840
|
+
antonyms: "Antonyms",
|
|
1841
|
+
root: "Root",
|
|
1842
|
+
grammarPoint: "Grammar Point",
|
|
1843
|
+
explanation: "Explanation",
|
|
1844
|
+
uniqueAttributes: "",
|
|
1845
|
+
},
|
|
1846
|
+
"uig": {
|
|
1847
|
+
pronunciation: "IPA",
|
|
1848
|
+
partOfSpeech: "Part of Speech",
|
|
1849
|
+
definition: "Definition",
|
|
1850
|
+
exampleSentence: "Example Sentence",
|
|
1851
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1852
|
+
synonyms: "Synonyms",
|
|
1853
|
+
antonyms: "Antonyms",
|
|
1854
|
+
root: "Root",
|
|
1855
|
+
grammarPoint: "Grammar Point",
|
|
1856
|
+
explanation: "Explanation",
|
|
1857
|
+
uniqueAttributes: "",
|
|
1858
|
+
},
|
|
1859
|
+
"vol": {
|
|
1860
|
+
pronunciation: "IPA",
|
|
1861
|
+
partOfSpeech: "Part of Speech",
|
|
1862
|
+
definition: "Definition",
|
|
1863
|
+
exampleSentence: "Example Sentence",
|
|
1864
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1865
|
+
synonyms: "Synonyms",
|
|
1866
|
+
antonyms: "Antonyms",
|
|
1867
|
+
root: "Root",
|
|
1868
|
+
grammarPoint: "Grammar Point",
|
|
1869
|
+
explanation: "Explanation",
|
|
1870
|
+
uniqueAttributes: "",
|
|
1871
|
+
},
|
|
1872
|
+
"wol": {
|
|
1873
|
+
pronunciation: "IPA",
|
|
1874
|
+
partOfSpeech: "Part of Speech",
|
|
1875
|
+
definition: "Definition",
|
|
1876
|
+
exampleSentence: "Example Sentence",
|
|
1877
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1878
|
+
synonyms: "Synonyms",
|
|
1879
|
+
antonyms: "Antonyms",
|
|
1880
|
+
root: "Root",
|
|
1881
|
+
grammarPoint: "Grammar Point",
|
|
1882
|
+
explanation: "Explanation",
|
|
1883
|
+
uniqueAttributes: "",
|
|
1884
|
+
},
|
|
1885
|
+
"xho": {
|
|
1886
|
+
pronunciation: "IPA",
|
|
1887
|
+
partOfSpeech: "Part of Speech",
|
|
1888
|
+
definition: "Definition",
|
|
1889
|
+
exampleSentence: "Example Sentence",
|
|
1890
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1891
|
+
synonyms: "Synonyms",
|
|
1892
|
+
antonyms: "Antonyms",
|
|
1893
|
+
root: "Root",
|
|
1894
|
+
grammarPoint: "Grammar Point",
|
|
1895
|
+
explanation: "Explanation",
|
|
1896
|
+
uniqueAttributes: "",
|
|
1897
|
+
},
|
|
1898
|
+
"ydd": {
|
|
1899
|
+
pronunciation: "IPA",
|
|
1900
|
+
partOfSpeech: "Part of Speech",
|
|
1901
|
+
definition: "Definition",
|
|
1902
|
+
exampleSentence: "Example Sentence",
|
|
1903
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1904
|
+
synonyms: "Synonyms",
|
|
1905
|
+
antonyms: "Antonyms",
|
|
1906
|
+
root: "Root",
|
|
1907
|
+
grammarPoint: "Grammar Point",
|
|
1908
|
+
explanation: "Explanation",
|
|
1909
|
+
uniqueAttributes: "",
|
|
1910
|
+
},
|
|
1911
|
+
"aka": {
|
|
1912
|
+
pronunciation: "IPA",
|
|
1913
|
+
partOfSpeech: "Part of Speech",
|
|
1914
|
+
definition: "Definition",
|
|
1915
|
+
exampleSentence: "Example Sentence",
|
|
1916
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1917
|
+
synonyms: "Synonyms",
|
|
1918
|
+
antonyms: "Antonyms",
|
|
1919
|
+
root: "Root",
|
|
1920
|
+
grammarPoint: "Grammar Point",
|
|
1921
|
+
explanation: "Explanation",
|
|
1922
|
+
uniqueAttributes: "",
|
|
1923
|
+
},
|
|
1924
|
+
"bam": {
|
|
1925
|
+
pronunciation: "IPA",
|
|
1926
|
+
partOfSpeech: "Part of Speech",
|
|
1927
|
+
definition: "Definition",
|
|
1928
|
+
exampleSentence: "Example Sentence",
|
|
1929
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1930
|
+
synonyms: "Synonyms",
|
|
1931
|
+
antonyms: "Antonyms",
|
|
1932
|
+
root: "Root",
|
|
1933
|
+
grammarPoint: "Grammar Point",
|
|
1934
|
+
explanation: "Explanation",
|
|
1935
|
+
uniqueAttributes: "",
|
|
1936
|
+
},
|
|
1937
|
+
"bis": {
|
|
1938
|
+
pronunciation: "IPA",
|
|
1939
|
+
partOfSpeech: "Part of Speech",
|
|
1940
|
+
definition: "Definition",
|
|
1941
|
+
exampleSentence: "Example Sentence",
|
|
1942
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1943
|
+
synonyms: "Synonyms",
|
|
1944
|
+
antonyms: "Antonyms",
|
|
1945
|
+
root: "Root",
|
|
1946
|
+
grammarPoint: "Grammar Point",
|
|
1947
|
+
explanation: "Explanation",
|
|
1948
|
+
uniqueAttributes: "",
|
|
1949
|
+
},
|
|
1950
|
+
"bod": {
|
|
1951
|
+
pronunciation: "IPA",
|
|
1952
|
+
partOfSpeech: "Part of Speech",
|
|
1953
|
+
definition: "Definition",
|
|
1954
|
+
exampleSentence: "Example Sentence",
|
|
1955
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1956
|
+
synonyms: "Synonyms",
|
|
1957
|
+
antonyms: "Antonyms",
|
|
1958
|
+
root: "Root",
|
|
1959
|
+
grammarPoint: "Grammar Point",
|
|
1960
|
+
explanation: "Explanation",
|
|
1961
|
+
uniqueAttributes: "",
|
|
1962
|
+
},
|
|
1963
|
+
"che": {
|
|
1964
|
+
pronunciation: "IPA",
|
|
1965
|
+
partOfSpeech: "Part of Speech",
|
|
1966
|
+
definition: "Definition",
|
|
1967
|
+
exampleSentence: "Example Sentence",
|
|
1968
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1969
|
+
synonyms: "Synonyms",
|
|
1970
|
+
antonyms: "Antonyms",
|
|
1971
|
+
root: "Root",
|
|
1972
|
+
grammarPoint: "Grammar Point",
|
|
1973
|
+
explanation: "Explanation",
|
|
1974
|
+
uniqueAttributes: "",
|
|
1975
|
+
},
|
|
1976
|
+
"chv": {
|
|
1977
|
+
pronunciation: "IPA",
|
|
1978
|
+
partOfSpeech: "Part of Speech",
|
|
1979
|
+
definition: "Definition",
|
|
1980
|
+
exampleSentence: "Example Sentence",
|
|
1981
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1982
|
+
synonyms: "Synonyms",
|
|
1983
|
+
antonyms: "Antonyms",
|
|
1984
|
+
root: "Root",
|
|
1985
|
+
grammarPoint: "Grammar Point",
|
|
1986
|
+
explanation: "Explanation",
|
|
1987
|
+
uniqueAttributes: "",
|
|
1988
|
+
},
|
|
1989
|
+
"dzo": {
|
|
1990
|
+
pronunciation: "IPA",
|
|
1991
|
+
partOfSpeech: "Part of Speech",
|
|
1992
|
+
definition: "Definition",
|
|
1993
|
+
exampleSentence: "Example Sentence",
|
|
1994
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
1995
|
+
synonyms: "Synonyms",
|
|
1996
|
+
antonyms: "Antonyms",
|
|
1997
|
+
root: "Root",
|
|
1998
|
+
grammarPoint: "Grammar Point",
|
|
1999
|
+
explanation: "Explanation",
|
|
2000
|
+
uniqueAttributes: "",
|
|
2001
|
+
},
|
|
2002
|
+
"ewe": {
|
|
2003
|
+
pronunciation: "IPA",
|
|
2004
|
+
partOfSpeech: "Part of Speech",
|
|
2005
|
+
definition: "Definition",
|
|
2006
|
+
exampleSentence: "Example Sentence",
|
|
2007
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2008
|
+
synonyms: "Synonyms",
|
|
2009
|
+
antonyms: "Antonyms",
|
|
2010
|
+
root: "Root",
|
|
2011
|
+
grammarPoint: "Grammar Point",
|
|
2012
|
+
explanation: "Explanation",
|
|
2013
|
+
uniqueAttributes: "",
|
|
2014
|
+
},
|
|
2015
|
+
"kab": {
|
|
2016
|
+
pronunciation: "IPA",
|
|
2017
|
+
partOfSpeech: "Part of Speech",
|
|
2018
|
+
definition: "Definition",
|
|
2019
|
+
exampleSentence: "Example Sentence",
|
|
2020
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2021
|
+
synonyms: "Synonyms",
|
|
2022
|
+
antonyms: "Antonyms",
|
|
2023
|
+
root: "Root",
|
|
2024
|
+
grammarPoint: "Grammar Point",
|
|
2025
|
+
explanation: "Explanation",
|
|
2026
|
+
uniqueAttributes: "",
|
|
2027
|
+
},
|
|
2028
|
+
"lug": {
|
|
2029
|
+
pronunciation: "IPA",
|
|
2030
|
+
partOfSpeech: "Part of Speech",
|
|
2031
|
+
definition: "Definition",
|
|
2032
|
+
exampleSentence: "Example Sentence",
|
|
2033
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2034
|
+
synonyms: "Synonyms",
|
|
2035
|
+
antonyms: "Antonyms",
|
|
2036
|
+
root: "Root",
|
|
2037
|
+
grammarPoint: "Grammar Point",
|
|
2038
|
+
explanation: "Explanation",
|
|
2039
|
+
uniqueAttributes: "",
|
|
2040
|
+
},
|
|
2041
|
+
"oss": {
|
|
2042
|
+
pronunciation: "IPA",
|
|
2043
|
+
partOfSpeech: "Part of Speech",
|
|
2044
|
+
definition: "Definition",
|
|
2045
|
+
exampleSentence: "Example Sentence",
|
|
2046
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2047
|
+
synonyms: "Synonyms",
|
|
2048
|
+
antonyms: "Antonyms",
|
|
2049
|
+
root: "Root",
|
|
2050
|
+
grammarPoint: "Grammar Point",
|
|
2051
|
+
explanation: "Explanation",
|
|
2052
|
+
uniqueAttributes: "",
|
|
2053
|
+
},
|
|
2054
|
+
"ssw": {
|
|
2055
|
+
pronunciation: "IPA",
|
|
2056
|
+
partOfSpeech: "Part of Speech",
|
|
2057
|
+
definition: "Definition",
|
|
2058
|
+
exampleSentence: "Example Sentence",
|
|
2059
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2060
|
+
synonyms: "Synonyms",
|
|
2061
|
+
antonyms: "Antonyms",
|
|
2062
|
+
root: "Root",
|
|
2063
|
+
grammarPoint: "Grammar Point",
|
|
2064
|
+
explanation: "Explanation",
|
|
2065
|
+
uniqueAttributes: "",
|
|
2066
|
+
},
|
|
2067
|
+
"ven": {
|
|
2068
|
+
pronunciation: "IPA",
|
|
2069
|
+
partOfSpeech: "Part of Speech",
|
|
2070
|
+
definition: "Definition",
|
|
2071
|
+
exampleSentence: "Example Sentence",
|
|
2072
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2073
|
+
synonyms: "Synonyms",
|
|
2074
|
+
antonyms: "Antonyms",
|
|
2075
|
+
root: "Root",
|
|
2076
|
+
grammarPoint: "Grammar Point",
|
|
2077
|
+
explanation: "Explanation",
|
|
2078
|
+
uniqueAttributes: "",
|
|
2079
|
+
},
|
|
2080
|
+
"war": {
|
|
2081
|
+
pronunciation: "IPA",
|
|
2082
|
+
partOfSpeech: "Part of Speech",
|
|
2083
|
+
definition: "Definition",
|
|
2084
|
+
exampleSentence: "Example Sentence",
|
|
2085
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2086
|
+
synonyms: "Synonyms",
|
|
2087
|
+
antonyms: "Antonyms",
|
|
2088
|
+
root: "Root",
|
|
2089
|
+
grammarPoint: "Grammar Point",
|
|
2090
|
+
explanation: "Explanation",
|
|
2091
|
+
uniqueAttributes: "",
|
|
2092
|
+
},
|
|
2093
|
+
"nde": {
|
|
2094
|
+
pronunciation: "IPA",
|
|
2095
|
+
partOfSpeech: "Part of Speech",
|
|
2096
|
+
definition: "Definition",
|
|
2097
|
+
exampleSentence: "Example Sentence",
|
|
2098
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2099
|
+
synonyms: "Synonyms",
|
|
2100
|
+
antonyms: "Antonyms",
|
|
2101
|
+
root: "Root",
|
|
2102
|
+
grammarPoint: "Grammar Point",
|
|
2103
|
+
explanation: "Explanation",
|
|
2104
|
+
uniqueAttributes: "",
|
|
2105
|
+
},
|
|
2106
|
+
"nbl": {
|
|
2107
|
+
pronunciation: "IPA",
|
|
2108
|
+
partOfSpeech: "Part of Speech",
|
|
2109
|
+
definition: "Definition",
|
|
2110
|
+
exampleSentence: "Example Sentence",
|
|
2111
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2112
|
+
synonyms: "Synonyms",
|
|
2113
|
+
antonyms: "Antonyms",
|
|
2114
|
+
root: "Root",
|
|
2115
|
+
grammarPoint: "Grammar Point",
|
|
2116
|
+
explanation: "Explanation",
|
|
2117
|
+
uniqueAttributes: "",
|
|
2118
|
+
},
|
|
2119
|
+
"pam": {
|
|
2120
|
+
pronunciation: "IPA",
|
|
2121
|
+
partOfSpeech: "Part of Speech",
|
|
2122
|
+
definition: "Definition",
|
|
2123
|
+
exampleSentence: "Example Sentence",
|
|
2124
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2125
|
+
synonyms: "Synonyms",
|
|
2126
|
+
antonyms: "Antonyms",
|
|
2127
|
+
root: "Root",
|
|
2128
|
+
grammarPoint: "Grammar Point",
|
|
2129
|
+
explanation: "Explanation",
|
|
2130
|
+
uniqueAttributes: "",
|
|
2131
|
+
},
|
|
2132
|
+
"hil": {
|
|
2133
|
+
pronunciation: "IPA",
|
|
2134
|
+
partOfSpeech: "Part of Speech",
|
|
2135
|
+
definition: "Definition",
|
|
2136
|
+
exampleSentence: "Example Sentence",
|
|
2137
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2138
|
+
synonyms: "Synonyms",
|
|
2139
|
+
antonyms: "Antonyms",
|
|
2140
|
+
root: "Root",
|
|
2141
|
+
grammarPoint: "Grammar Point",
|
|
2142
|
+
explanation: "Explanation",
|
|
2143
|
+
uniqueAttributes: "",
|
|
2144
|
+
},
|
|
2145
|
+
"bcl": {
|
|
2146
|
+
pronunciation: "IPA",
|
|
2147
|
+
partOfSpeech: "Part of Speech",
|
|
2148
|
+
definition: "Definition",
|
|
2149
|
+
exampleSentence: "Example Sentence",
|
|
2150
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2151
|
+
synonyms: "Synonyms",
|
|
2152
|
+
antonyms: "Antonyms",
|
|
2153
|
+
root: "Root",
|
|
2154
|
+
grammarPoint: "Grammar Point",
|
|
2155
|
+
explanation: "Explanation",
|
|
2156
|
+
uniqueAttributes: "",
|
|
2157
|
+
},
|
|
2158
|
+
"min": {
|
|
2159
|
+
pronunciation: "IPA",
|
|
2160
|
+
partOfSpeech: "Part of Speech",
|
|
2161
|
+
definition: "Definition",
|
|
2162
|
+
exampleSentence: "Example Sentence",
|
|
2163
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2164
|
+
synonyms: "Synonyms",
|
|
2165
|
+
antonyms: "Antonyms",
|
|
2166
|
+
root: "Root",
|
|
2167
|
+
grammarPoint: "Grammar Point",
|
|
2168
|
+
explanation: "Explanation",
|
|
2169
|
+
uniqueAttributes: "",
|
|
2170
|
+
},
|
|
2171
|
+
"ace": {
|
|
2172
|
+
pronunciation: "IPA",
|
|
2173
|
+
partOfSpeech: "Part of Speech",
|
|
2174
|
+
definition: "Definition",
|
|
2175
|
+
exampleSentence: "Example Sentence",
|
|
2176
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2177
|
+
synonyms: "Synonyms",
|
|
2178
|
+
antonyms: "Antonyms",
|
|
2179
|
+
root: "Root",
|
|
2180
|
+
grammarPoint: "Grammar Point",
|
|
2181
|
+
explanation: "Explanation",
|
|
2182
|
+
uniqueAttributes: "",
|
|
2183
|
+
},
|
|
2184
|
+
"bug": {
|
|
2185
|
+
pronunciation: "IPA",
|
|
2186
|
+
partOfSpeech: "Part of Speech",
|
|
2187
|
+
definition: "Definition",
|
|
2188
|
+
exampleSentence: "Example Sentence",
|
|
2189
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2190
|
+
synonyms: "Synonyms",
|
|
2191
|
+
antonyms: "Antonyms",
|
|
2192
|
+
root: "Root",
|
|
2193
|
+
grammarPoint: "Grammar Point",
|
|
2194
|
+
explanation: "Explanation",
|
|
2195
|
+
uniqueAttributes: "",
|
|
2196
|
+
},
|
|
2197
|
+
"ban": {
|
|
2198
|
+
pronunciation: "IPA",
|
|
2199
|
+
partOfSpeech: "Part of Speech",
|
|
2200
|
+
definition: "Definition",
|
|
2201
|
+
exampleSentence: "Example Sentence",
|
|
2202
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2203
|
+
synonyms: "Synonyms",
|
|
2204
|
+
antonyms: "Antonyms",
|
|
2205
|
+
root: "Root",
|
|
2206
|
+
grammarPoint: "Grammar Point",
|
|
2207
|
+
explanation: "Explanation",
|
|
2208
|
+
uniqueAttributes: "",
|
|
2209
|
+
},
|
|
2210
|
+
"bjn": {
|
|
2211
|
+
pronunciation: "IPA",
|
|
2212
|
+
partOfSpeech: "Part of Speech",
|
|
2213
|
+
definition: "Definition",
|
|
2214
|
+
exampleSentence: "Example Sentence",
|
|
2215
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2216
|
+
synonyms: "Synonyms",
|
|
2217
|
+
antonyms: "Antonyms",
|
|
2218
|
+
root: "Root",
|
|
2219
|
+
grammarPoint: "Grammar Point",
|
|
2220
|
+
explanation: "Explanation",
|
|
2221
|
+
uniqueAttributes: "",
|
|
2222
|
+
},
|
|
2223
|
+
"mak": {
|
|
2224
|
+
pronunciation: "IPA",
|
|
2225
|
+
partOfSpeech: "Part of Speech",
|
|
2226
|
+
definition: "Definition",
|
|
2227
|
+
exampleSentence: "Example Sentence",
|
|
2228
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2229
|
+
synonyms: "Synonyms",
|
|
2230
|
+
antonyms: "Antonyms",
|
|
2231
|
+
root: "Root",
|
|
2232
|
+
grammarPoint: "Grammar Point",
|
|
2233
|
+
explanation: "Explanation",
|
|
2234
|
+
uniqueAttributes: "",
|
|
2235
|
+
},
|
|
2236
|
+
"sas": {
|
|
2237
|
+
pronunciation: "IPA",
|
|
2238
|
+
partOfSpeech: "Part of Speech",
|
|
2239
|
+
definition: "Definition",
|
|
2240
|
+
exampleSentence: "Example Sentence",
|
|
2241
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2242
|
+
synonyms: "Synonyms",
|
|
2243
|
+
antonyms: "Antonyms",
|
|
2244
|
+
root: "Root",
|
|
2245
|
+
grammarPoint: "Grammar Point",
|
|
2246
|
+
explanation: "Explanation",
|
|
2247
|
+
uniqueAttributes: "",
|
|
2248
|
+
},
|
|
2249
|
+
"tet": {
|
|
2250
|
+
pronunciation: "IPA",
|
|
2251
|
+
partOfSpeech: "Part of Speech",
|
|
2252
|
+
definition: "Definition",
|
|
2253
|
+
exampleSentence: "Example Sentence",
|
|
2254
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2255
|
+
synonyms: "Synonyms",
|
|
2256
|
+
antonyms: "Antonyms",
|
|
2257
|
+
root: "Root",
|
|
2258
|
+
grammarPoint: "Grammar Point",
|
|
2259
|
+
explanation: "Explanation",
|
|
2260
|
+
uniqueAttributes: "",
|
|
2261
|
+
},
|
|
2262
|
+
"cha": {
|
|
2263
|
+
pronunciation: "IPA",
|
|
2264
|
+
partOfSpeech: "Part of Speech",
|
|
2265
|
+
definition: "Definition",
|
|
2266
|
+
exampleSentence: "Example Sentence",
|
|
2267
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2268
|
+
synonyms: "Synonyms",
|
|
2269
|
+
antonyms: "Antonyms",
|
|
2270
|
+
root: "Root",
|
|
2271
|
+
grammarPoint: "Grammar Point",
|
|
2272
|
+
explanation: "Explanation",
|
|
2273
|
+
uniqueAttributes: "",
|
|
2274
|
+
},
|
|
2275
|
+
"niu": {
|
|
2276
|
+
pronunciation: "IPA",
|
|
2277
|
+
partOfSpeech: "Part of Speech",
|
|
2278
|
+
definition: "Definition",
|
|
2279
|
+
exampleSentence: "Example Sentence",
|
|
2280
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2281
|
+
synonyms: "Synonyms",
|
|
2282
|
+
antonyms: "Antonyms",
|
|
2283
|
+
root: "Root",
|
|
2284
|
+
grammarPoint: "Grammar Point",
|
|
2285
|
+
explanation: "Explanation",
|
|
2286
|
+
uniqueAttributes: "",
|
|
2287
|
+
},
|
|
2288
|
+
"tvl": {
|
|
2289
|
+
pronunciation: "IPA",
|
|
2290
|
+
partOfSpeech: "Part of Speech",
|
|
2291
|
+
definition: "Definition",
|
|
2292
|
+
exampleSentence: "Example Sentence",
|
|
2293
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2294
|
+
synonyms: "Synonyms",
|
|
2295
|
+
antonyms: "Antonyms",
|
|
2296
|
+
root: "Root",
|
|
2297
|
+
grammarPoint: "Grammar Point",
|
|
2298
|
+
explanation: "Explanation",
|
|
2299
|
+
uniqueAttributes: "",
|
|
2300
|
+
},
|
|
2301
|
+
"gil": {
|
|
2302
|
+
pronunciation: "IPA",
|
|
2303
|
+
partOfSpeech: "Part of Speech",
|
|
2304
|
+
definition: "Definition",
|
|
2305
|
+
exampleSentence: "Example Sentence",
|
|
2306
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2307
|
+
synonyms: "Synonyms",
|
|
2308
|
+
antonyms: "Antonyms",
|
|
2309
|
+
root: "Root",
|
|
2310
|
+
grammarPoint: "Grammar Point",
|
|
2311
|
+
explanation: "Explanation",
|
|
2312
|
+
uniqueAttributes: "",
|
|
2313
|
+
},
|
|
2314
|
+
"mah": {
|
|
2315
|
+
pronunciation: "IPA",
|
|
2316
|
+
partOfSpeech: "Part of Speech",
|
|
2317
|
+
definition: "Definition",
|
|
2318
|
+
exampleSentence: "Example Sentence",
|
|
2319
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2320
|
+
synonyms: "Synonyms",
|
|
2321
|
+
antonyms: "Antonyms",
|
|
2322
|
+
root: "Root",
|
|
2323
|
+
grammarPoint: "Grammar Point",
|
|
2324
|
+
explanation: "Explanation",
|
|
2325
|
+
uniqueAttributes: "",
|
|
2326
|
+
},
|
|
2327
|
+
"pau": {
|
|
2328
|
+
pronunciation: "IPA",
|
|
2329
|
+
partOfSpeech: "Part of Speech",
|
|
2330
|
+
definition: "Definition",
|
|
2331
|
+
exampleSentence: "Example Sentence",
|
|
2332
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2333
|
+
synonyms: "Synonyms",
|
|
2334
|
+
antonyms: "Antonyms",
|
|
2335
|
+
root: "Root",
|
|
2336
|
+
grammarPoint: "Grammar Point",
|
|
2337
|
+
explanation: "Explanation",
|
|
2338
|
+
uniqueAttributes: "",
|
|
2339
|
+
},
|
|
2340
|
+
"wls": {
|
|
2341
|
+
pronunciation: "IPA",
|
|
2342
|
+
partOfSpeech: "Part of Speech",
|
|
2343
|
+
definition: "Definition",
|
|
2344
|
+
exampleSentence: "Example Sentence",
|
|
2345
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2346
|
+
synonyms: "Synonyms",
|
|
2347
|
+
antonyms: "Antonyms",
|
|
2348
|
+
root: "Root",
|
|
2349
|
+
grammarPoint: "Grammar Point",
|
|
2350
|
+
explanation: "Explanation",
|
|
2351
|
+
uniqueAttributes: "",
|
|
2352
|
+
},
|
|
2353
|
+
"rar": {
|
|
2354
|
+
pronunciation: "IPA",
|
|
2355
|
+
partOfSpeech: "Part of Speech",
|
|
2356
|
+
definition: "Definition",
|
|
2357
|
+
exampleSentence: "Example Sentence",
|
|
2358
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2359
|
+
synonyms: "Synonyms",
|
|
2360
|
+
antonyms: "Antonyms",
|
|
2361
|
+
root: "Root",
|
|
2362
|
+
grammarPoint: "Grammar Point",
|
|
2363
|
+
explanation: "Explanation",
|
|
2364
|
+
uniqueAttributes: "",
|
|
2365
|
+
},
|
|
2366
|
+
"hif": {
|
|
2367
|
+
pronunciation: "IPA",
|
|
2368
|
+
partOfSpeech: "Part of Speech",
|
|
2369
|
+
definition: "Definition",
|
|
2370
|
+
exampleSentence: "Example Sentence",
|
|
2371
|
+
extendedVocabulary: "Extended Vocabulary",
|
|
2372
|
+
synonyms: "Synonyms",
|
|
2373
|
+
antonyms: "Antonyms",
|
|
2374
|
+
root: "Root",
|
|
2375
|
+
grammarPoint: "Grammar Point",
|
|
2376
|
+
explanation: "Explanation",
|
|
2377
|
+
uniqueAttributes: "",
|
|
2378
|
+
},
|
|
2379
|
+
}
|