@read-frog/definitions 0.1.1 → 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 CHANGED
@@ -5,8 +5,17 @@ declare const APP_NAME = "Read Frog";
5
5
  //#endregion
6
6
  //#region src/constants/auth.d.ts
7
7
  declare const AUTH_BASE_PATH = "/api/identity";
8
+ declare const ORPC_PREFIX = "/api/rpc";
8
9
  declare const AUTH_COOKIE_PATTERNS: readonly ["better-auth.session_token"];
9
10
  //#endregion
11
+ //#region src/constants/beta-access.d.ts
12
+ declare const BETA_FEATURES: {
13
+ readonly notebase: "notebase";
14
+ };
15
+ declare const BETA_FEATURE_KEYS: readonly ["notebase"];
16
+ type BetaFeatureKey = (typeof BETA_FEATURE_KEYS)[number];
17
+ declare const NOTEBASE_BETA_FEATURE_KEY: "notebase";
18
+ //#endregion
10
19
  //#region src/constants/column.d.ts
11
20
  declare const COLUMN_MIN_WIDTH = 100;
12
21
  declare const COLUMN_MAX_WIDTH = 500;
@@ -373,14 +382,17 @@ declare const LANG_DICTIONARY_LABELS: Record<LangCodeISO6393, DictionaryFieldLab
373
382
  //#region src/constants/url.d.ts
374
383
  declare const CHROME_EXTENSION_ORIGIN = "chrome-extension://modkelfkcfjpgbfmnbnllalkiogfofhb";
375
384
  declare const EDGE_EXTENSION_ORIGIN = "extension://cbcbomlgikfbdnoaohcjfledcoklcjbo";
376
- declare const TRUSTED_ORIGINS: string[];
385
+ declare const READFROG_DOMAIN = "readfrog.app";
386
+ declare const LOCALHOST_DOMAIN = "localhost";
377
387
  declare const WEBSITE_DEV_PORT = 8888;
378
388
  declare const WEBSITE_DEV_URL = "http://localhost:8888";
379
389
  declare const CADDY_DEV_PORT = 4433;
380
390
  declare const WEBSITE_CADDY_DEV_URL = "https://localhost:4433";
381
391
  declare const WEBSITE_PROD_URL = "https://www.readfrog.app";
382
- declare const READFROG_DOMAIN = "readfrog.app";
383
- declare const LOCALHOST_DOMAIN = "localhost";
392
+ declare const TRUSTED_ORIGINS: string[];
393
+ declare const API_DEV_PORT = 7777;
394
+ declare const API_DEV_URL = "http://localhost:7777";
395
+ declare const API_PROD_URL = "https://api.readfrog.app";
384
396
  declare const AUTH_DOMAINS: readonly ["readfrog.app", "localhost"];
385
397
  //#endregion
386
398
  //#region src/types/column.d.ts
@@ -421,10 +433,10 @@ declare const COLUMN_TYPE_INFO: Record<ColumnType, {
421
433
  defaultConfig: ColumnConfig;
422
434
  }>;
423
435
  declare function isNumberConfig(config: ColumnConfig): config is Extract<ColumnConfig, {
424
- type: 'number';
436
+ type: "number";
425
437
  }>;
426
438
  declare function isSelectConfig(config: ColumnConfig): config is Extract<ColumnConfig, {
427
- type: 'select';
439
+ type: "select";
428
440
  }>;
429
441
  //#endregion
430
442
  //#region src/schemas/cell-value.d.ts
@@ -479,7 +491,7 @@ type SemanticVersion = z.infer<typeof semanticVersionSchema>;
479
491
  /**
480
492
  * Version type classification
481
493
  */
482
- type VersionType = 'major' | 'minor' | 'patch';
494
+ type VersionType = "major" | "minor" | "patch";
483
495
  /**
484
496
  * Parse a semantic version string into its components
485
497
  * Validates the input using semanticVersionSchema before parsing
@@ -515,4 +527,5 @@ declare function parseSemanticVersion(version: string): {
515
527
  */
516
528
  declare function getVersionType(version: string): VersionType;
517
529
  //#endregion
518
- export { APP_NAME, AUTH_BASE_PATH, AUTH_COOKIE_PATTERNS, AUTH_DOMAINS, CADDY_DEV_PORT, CHROME_EXTENSION_ORIGIN, COLUMN_MAX_WIDTH, COLUMN_MIN_WIDTH, COLUMN_TYPES, COLUMN_TYPE_INFO, ColumnConfig, ColumnType, DictionaryFieldLabels, EDGE_EXTENSION_ORIGIN, ISO6393_TO_6391, LANG_CODE_ISO6391_OPTIONS, LANG_CODE_ISO6393_OPTIONS, LANG_CODE_TO_EN_NAME, LANG_CODE_TO_LOCALE_NAME, LANG_DICTIONARY_LABELS, LOCALE_TO_ISO6393, LOCALHOST_DOMAIN, LangCodeISO6391, LangCodeISO6393, LangLevel, READFROG_DOMAIN, RTL_LANG_CODES, SEMANTIC_VERSION_REGEX, SelectOption, SemanticVersion, TRUSTED_ORIGINS, VersionType, WEBSITE_CADDY_DEV_URL, WEBSITE_DEV_PORT, WEBSITE_DEV_URL, WEBSITE_PROD_URL, columnConfigSchema, createCellSchema, createRowSchema, getVersionType, isNumberConfig, isSelectConfig, langCodeISO6391Schema, langCodeISO6393Schema, langLevel, parseSemanticVersion, rowSchemaToJsonSchema, selectOptionSchema, semanticVersionSchema };
530
+ export { API_DEV_PORT, API_DEV_URL, API_PROD_URL, APP_NAME, AUTH_BASE_PATH, AUTH_COOKIE_PATTERNS, AUTH_DOMAINS, BETA_FEATURES, BETA_FEATURE_KEYS, BetaFeatureKey, CADDY_DEV_PORT, CHROME_EXTENSION_ORIGIN, COLUMN_MAX_WIDTH, COLUMN_MIN_WIDTH, COLUMN_TYPES, COLUMN_TYPE_INFO, ColumnConfig, ColumnType, DictionaryFieldLabels, EDGE_EXTENSION_ORIGIN, ISO6393_TO_6391, LANG_CODE_ISO6391_OPTIONS, LANG_CODE_ISO6393_OPTIONS, LANG_CODE_TO_EN_NAME, LANG_CODE_TO_LOCALE_NAME, LANG_DICTIONARY_LABELS, LOCALE_TO_ISO6393, LOCALHOST_DOMAIN, LangCodeISO6391, LangCodeISO6393, LangLevel, NOTEBASE_BETA_FEATURE_KEY, ORPC_PREFIX, READFROG_DOMAIN, RTL_LANG_CODES, SEMANTIC_VERSION_REGEX, SelectOption, SemanticVersion, TRUSTED_ORIGINS, VersionType, WEBSITE_CADDY_DEV_URL, WEBSITE_DEV_PORT, WEBSITE_DEV_URL, WEBSITE_PROD_URL, columnConfigSchema, createCellSchema, createRowSchema, getVersionType, isNumberConfig, isSelectConfig, langCodeISO6391Schema, langCodeISO6393Schema, langLevel, parseSemanticVersion, rowSchemaToJsonSchema, selectOptionSchema, semanticVersionSchema };
531
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../src/constants/app.ts","../src/constants/auth.ts","../src/constants/beta-access.ts","../src/constants/column.ts","../src/types/languages.ts","../src/constants/dictionary.ts","../src/constants/url.ts","../src/types/column.ts","../src/schemas/cell-value.ts","../src/schemas/version.ts"],"mappings":"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"}
package/dist/index.js CHANGED
@@ -1,18 +1,20 @@
1
1
  import { z } from "zod";
2
-
3
2
  //#region src/constants/app.ts
4
3
  const APP_NAME = "Read Frog";
5
-
6
4
  //#endregion
7
5
  //#region src/constants/auth.ts
8
6
  const AUTH_BASE_PATH = "/api/identity";
7
+ const ORPC_PREFIX = "/api/rpc";
9
8
  const AUTH_COOKIE_PATTERNS = ["better-auth.session_token"];
10
-
9
+ //#endregion
10
+ //#region src/constants/beta-access.ts
11
+ const BETA_FEATURES = { notebase: "notebase" };
12
+ const BETA_FEATURE_KEYS = [BETA_FEATURES.notebase];
13
+ const NOTEBASE_BETA_FEATURE_KEY = BETA_FEATURES.notebase;
11
14
  //#endregion
12
15
  //#region src/constants/column.ts
13
16
  const COLUMN_MIN_WIDTH = 100;
14
17
  const COLUMN_MAX_WIDTH = 500;
15
-
16
18
  //#endregion
17
19
  //#region src/constants/dictionary.ts
18
20
  const LANG_DICTIONARY_LABELS = {
@@ -2374,21 +2376,26 @@ const LANG_DICTIONARY_LABELS = {
2374
2376
  uniqueAttributes: ""
2375
2377
  }
2376
2378
  };
2377
-
2378
2379
  //#endregion
2379
2380
  //#region src/constants/url.ts
2380
2381
  const CHROME_EXTENSION_ORIGIN = "chrome-extension://modkelfkcfjpgbfmnbnllalkiogfofhb";
2381
2382
  const EDGE_EXTENSION_ORIGIN = "extension://cbcbomlgikfbdnoaohcjfledcoklcjbo";
2382
- const TRUSTED_ORIGINS = [CHROME_EXTENSION_ORIGIN, EDGE_EXTENSION_ORIGIN];
2383
+ const READFROG_DOMAIN = "readfrog.app";
2384
+ const LOCALHOST_DOMAIN = "localhost";
2383
2385
  const WEBSITE_DEV_PORT = 8888;
2384
2386
  const WEBSITE_DEV_URL = `http://localhost:${WEBSITE_DEV_PORT}`;
2385
2387
  const CADDY_DEV_PORT = 4433;
2386
2388
  const WEBSITE_CADDY_DEV_URL = `https://localhost:${CADDY_DEV_PORT}`;
2387
2389
  const WEBSITE_PROD_URL = "https://www.readfrog.app";
2388
- const READFROG_DOMAIN = "readfrog.app";
2389
- const LOCALHOST_DOMAIN = "localhost";
2390
+ const TRUSTED_ORIGINS = [
2391
+ CHROME_EXTENSION_ORIGIN,
2392
+ EDGE_EXTENSION_ORIGIN,
2393
+ WEBSITE_PROD_URL
2394
+ ];
2395
+ const API_DEV_PORT = 7777;
2396
+ const API_DEV_URL = `http://localhost:${API_DEV_PORT}`;
2397
+ const API_PROD_URL = "https://api.readfrog.app";
2390
2398
  const AUTH_DOMAINS = [READFROG_DOMAIN, LOCALHOST_DOMAIN];
2391
-
2392
2399
  //#endregion
2393
2400
  //#region src/schemas/cell-value.ts
2394
2401
  /**
@@ -2422,7 +2429,6 @@ function createRowSchema(columns) {
2422
2429
  function rowSchemaToJsonSchema(columns) {
2423
2430
  return z.toJSONSchema(createRowSchema(columns));
2424
2431
  }
2425
-
2426
2432
  //#endregion
2427
2433
  //#region src/schemas/version.ts
2428
2434
  /**
@@ -2489,7 +2495,6 @@ function getVersionType(version) {
2489
2495
  else if (minor > 0 && patch === 0) return "minor";
2490
2496
  else return "patch";
2491
2497
  }
2492
-
2493
2498
  //#endregion
2494
2499
  //#region src/types/column.ts
2495
2500
  const COLUMN_TYPES = [
@@ -2560,7 +2565,6 @@ function isNumberConfig(config) {
2560
2565
  function isSelectConfig(config) {
2561
2566
  return config.type === "select";
2562
2567
  }
2563
-
2564
2568
  //#endregion
2565
2569
  //#region src/types/languages.ts
2566
2570
  const LANG_CODE_ISO6393_OPTIONS = [
@@ -3455,6 +3459,7 @@ const RTL_LANG_CODES = [
3455
3459
  "ydd",
3456
3460
  "prs"
3457
3461
  ];
3458
-
3459
3462
  //#endregion
3460
- export { APP_NAME, AUTH_BASE_PATH, AUTH_COOKIE_PATTERNS, AUTH_DOMAINS, CADDY_DEV_PORT, CHROME_EXTENSION_ORIGIN, COLUMN_MAX_WIDTH, COLUMN_MIN_WIDTH, COLUMN_TYPES, COLUMN_TYPE_INFO, EDGE_EXTENSION_ORIGIN, ISO6393_TO_6391, LANG_CODE_ISO6391_OPTIONS, LANG_CODE_ISO6393_OPTIONS, LANG_CODE_TO_EN_NAME, LANG_CODE_TO_LOCALE_NAME, LANG_DICTIONARY_LABELS, LOCALE_TO_ISO6393, LOCALHOST_DOMAIN, READFROG_DOMAIN, RTL_LANG_CODES, SEMANTIC_VERSION_REGEX, TRUSTED_ORIGINS, WEBSITE_CADDY_DEV_URL, WEBSITE_DEV_PORT, WEBSITE_DEV_URL, WEBSITE_PROD_URL, columnConfigSchema, createCellSchema, createRowSchema, getVersionType, isNumberConfig, isSelectConfig, langCodeISO6391Schema, langCodeISO6393Schema, langLevel, parseSemanticVersion, rowSchemaToJsonSchema, selectOptionSchema, semanticVersionSchema };
3463
+ export { API_DEV_PORT, API_DEV_URL, API_PROD_URL, APP_NAME, AUTH_BASE_PATH, AUTH_COOKIE_PATTERNS, AUTH_DOMAINS, BETA_FEATURES, BETA_FEATURE_KEYS, CADDY_DEV_PORT, CHROME_EXTENSION_ORIGIN, COLUMN_MAX_WIDTH, COLUMN_MIN_WIDTH, COLUMN_TYPES, COLUMN_TYPE_INFO, EDGE_EXTENSION_ORIGIN, ISO6393_TO_6391, LANG_CODE_ISO6391_OPTIONS, LANG_CODE_ISO6393_OPTIONS, LANG_CODE_TO_EN_NAME, LANG_CODE_TO_LOCALE_NAME, LANG_DICTIONARY_LABELS, LOCALE_TO_ISO6393, LOCALHOST_DOMAIN, NOTEBASE_BETA_FEATURE_KEY, ORPC_PREFIX, READFROG_DOMAIN, RTL_LANG_CODES, SEMANTIC_VERSION_REGEX, TRUSTED_ORIGINS, WEBSITE_CADDY_DEV_URL, WEBSITE_DEV_PORT, WEBSITE_DEV_URL, WEBSITE_PROD_URL, columnConfigSchema, createCellSchema, createRowSchema, getVersionType, isNumberConfig, isSelectConfig, langCodeISO6391Schema, langCodeISO6393Schema, langLevel, parseSemanticVersion, rowSchemaToJsonSchema, selectOptionSchema, semanticVersionSchema };
3464
+
3465
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":[],"sources":["../src/constants/app.ts","../src/constants/auth.ts","../src/constants/beta-access.ts","../src/constants/column.ts","../src/constants/dictionary.ts","../src/constants/url.ts","../src/schemas/cell-value.ts","../src/schemas/version.ts","../src/types/column.ts","../src/types/languages.ts"],"sourcesContent":["export const APP_NAME = \"Read Frog\"\n","export const AUTH_BASE_PATH = \"/api/identity\"\nexport const ORPC_PREFIX = \"/api/rpc\"\n\nexport const AUTH_COOKIE_PATTERNS = [\n \"better-auth.session_token\",\n] as const\n","export const BETA_FEATURES = {\n notebase: \"notebase\",\n} as const\n\nexport const BETA_FEATURE_KEYS = [BETA_FEATURES.notebase] as const\n\nexport type BetaFeatureKey = (typeof BETA_FEATURE_KEYS)[number]\n\nexport const NOTEBASE_BETA_FEATURE_KEY = BETA_FEATURES.notebase\n","export const COLUMN_MIN_WIDTH = 100\nexport const COLUMN_MAX_WIDTH = 500\n","import type { LangCodeISO6393 } from \"@/types/languages\"\n\n/**\n * This file is used to assemble a system prompt according to different languages.\n */\n\nexport interface DictionaryFieldLabels {\n pronunciation: string // The name of the language's mainstream phonetic/romanization scheme. 如英语是国际音标,中文则是拼音\n partOfSpeech: string\n definition: string\n exampleSentence: string\n extendedVocabulary: string\n synonyms: string\n antonyms: string\n root: string\n grammarPoint: string\n explanation: string\n uniqueAttributes: string\n}\n\nexport const LANG_DICTIONARY_LABELS: Record<LangCodeISO6393, DictionaryFieldLabels> = {\n \"eng\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: `{% if existed %}\n ## Phrasal Verb\n {{phrasal verb forms and meanings}}\n {% end if %}`,\n },\n \"cmn\": {\n pronunciation: \"拼音\",\n partOfSpeech: \"词性\",\n definition: \"释义\",\n exampleSentence: \"例句\",\n extendedVocabulary: \"扩展词汇\",\n synonyms: \"近义词\",\n antonyms: \"反义词\",\n root: \"词根\",\n grammarPoint: \"语法点\",\n explanation: \"讲解\",\n uniqueAttributes: \"\",\n },\n \"cmn-Hant\": {\n pronunciation: \"拼音/注音符號\",\n partOfSpeech: \"詞性\",\n definition: \"釋義\",\n exampleSentence: \"例句\",\n extendedVocabulary: \"擴展詞彙\",\n synonyms: \"近義詞\",\n antonyms: \"反義詞\",\n root: \"詞根\",\n grammarPoint: \"語法點\",\n explanation: \"講解\",\n uniqueAttributes: \"\",\n },\n \"yue\": {\n pronunciation: \"香港語言學學會粵語拼音\",\n partOfSpeech: \"詞性\",\n definition: \"釋義\",\n exampleSentence: \"例句\",\n extendedVocabulary: \"擴展詞彙\",\n synonyms: \"近義詞\",\n antonyms: \"反義詞\",\n root: \"詞根\",\n grammarPoint: \"語法點\",\n explanation: \"講解\",\n uniqueAttributes: \"\",\n },\n \"spa\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Categoría Gramatical\",\n definition: \"Definición\",\n exampleSentence: \"Oración de Ejemplo\",\n extendedVocabulary: \"Vocabulario Extendido\",\n synonyms: \"Sinónimos\",\n antonyms: \"Antónimos\",\n root: \"Raíz\",\n grammarPoint: \"Punto Gramatical\",\n explanation: \"Explicación\",\n uniqueAttributes: `{% if existed %}\n ## Género\n {{masculino / femenino}}\n {% end if %}`,\n },\n \"rus\": {\n pronunciation: \"Романизация\",\n partOfSpeech: \"Часть речи\",\n definition: \"Определение\",\n exampleSentence: \"Пример предложения\",\n extendedVocabulary: \"Расширенный словарь\",\n synonyms: \"Синонимы\",\n antonyms: \"Антонимы\",\n root: \"Корень\",\n grammarPoint: \"Грамматика\",\n explanation: \"Объяснение\",\n uniqueAttributes: `{% if existed %}\n ## Падеж\n {{именительный/родительный/дательный/винительный/творительный/предложный}}\n {% end if %}`,\n },\n \"arb\": {\n pronunciation: \"حروف لاتينية\",\n partOfSpeech: \"جزء من الكلام\",\n definition: \"تعريف\",\n exampleSentence: \"جملة مثال\",\n extendedVocabulary: \"مفردات موسعة\",\n synonyms: \"مرادفات\",\n antonyms: \"أضداد\",\n root: \"الجذر\",\n grammarPoint: \"نقطة نحوية\",\n explanation: \"شرح\",\n uniqueAttributes: `{% if existed %}\n ## الجذر الثلاثي\n {{الجذر والوزن}}\n {% end if %}`,\n },\n \"ben\": {\n pronunciation: \"রোমানাইজেশন\",\n partOfSpeech: \"শব্দের প্রকার\",\n definition: \"সংজ্ঞা\",\n exampleSentence: \"উদাহরণ বাক্য\",\n extendedVocabulary: \"সম্প্রসারিত শব্দভাণ্ডার\",\n synonyms: \"সমার্থক শব্দ\",\n antonyms: \"বিপরীত শব্দ\",\n root: \"মূল\",\n grammarPoint: \"ব্যাকরণ পয়েন্ট\",\n explanation: \"ব্যাখ্যা\",\n uniqueAttributes: \"\",\n },\n \"hin\": {\n pronunciation: \"रोमनकरण\",\n partOfSpeech: \"शब्द भेद\",\n definition: \"परिभाषा\",\n exampleSentence: \"उदाहरण वाक्य\",\n extendedVocabulary: \"विस्तारित शब्दावली\",\n synonyms: \"समानार्थी शब्द\",\n antonyms: \"विलोम शब्द\",\n root: \"मूल\",\n grammarPoint: \"व्याकरण बिंदु\",\n explanation: \"व्याख्या\",\n uniqueAttributes: \"\",\n },\n \"por\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Classe Gramatical\",\n definition: \"Definição\",\n exampleSentence: \"Frase de Exemplo\",\n extendedVocabulary: \"Vocabulário Estendido\",\n synonyms: \"Sinónimos\",\n antonyms: \"Antónimos\",\n root: \"Raiz\",\n grammarPoint: \"Ponto Gramatical\",\n explanation: \"Explicação\",\n uniqueAttributes: `{% if existed %}\n ## Gênero\n {{masculino / feminino}}\n {% end if %}`,\n },\n \"ind\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Kelas Kata\",\n definition: \"Definisi\",\n exampleSentence: \"Contoh Kalimat\",\n extendedVocabulary: \"Kosakata Diperluas\",\n synonyms: \"Sinonim\",\n antonyms: \"Antonim\",\n root: \"Akar Kata\",\n grammarPoint: \"Poin Tata Bahasa\",\n explanation: \"Penjelasan\",\n uniqueAttributes: \"\",\n },\n \"jpn\": {\n pronunciation: \"平仮名\",\n partOfSpeech: \"品詞\",\n definition: \"定義\",\n exampleSentence: \"例文\",\n extendedVocabulary: \"拡張語彙\",\n synonyms: \"類義語\",\n antonyms: \"対義語\",\n root: \"語根\",\n grammarPoint: \"文法ポイント\",\n explanation: \"解説\",\n uniqueAttributes: `{% if existed %}\n ## 動詞活用\n {{ます形|て形|辞書形|た形|ない形|可能形}}\n {% end if %}`,\n },\n \"fra\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Classe Grammaticale\",\n definition: \"Définition\",\n exampleSentence: \"Phrase d'Exemple\",\n extendedVocabulary: \"Vocabulaire Étendu\",\n synonyms: \"Synonymes\",\n antonyms: \"Antonymes\",\n root: \"Racine\",\n grammarPoint: \"Point de Grammaire\",\n explanation: \"Explication\",\n uniqueAttributes: `{% if existed %}\n ## Genre\n {{masculin / féminin}}\n {% end if %}`,\n },\n \"deu\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Wortart\",\n definition: \"Definition\",\n exampleSentence: \"Beispielsatz\",\n extendedVocabulary: \"Erweiterter Wortschatz\",\n synonyms: \"Synonyme\",\n antonyms: \"Antonyme\",\n root: \"Wortwurzel\",\n grammarPoint: \"Grammatikpunkt\",\n explanation: \"Erklärung\",\n uniqueAttributes: `{% if existed %}\n ## Genus und Kasus\n {{maskulin/feminin/neutral; Nominativ/Genitiv/Dativ/Akkusativ}}\n {% end if %}`,\n },\n \"jav\": {\n pronunciation: \"Romanisasi\",\n partOfSpeech: \"Jinising Tembung\",\n definition: \"Dhefinisi\",\n exampleSentence: \"Ukara Conto\",\n extendedVocabulary: \"Kosakata Tambahan\",\n synonyms: \"Sinonim\",\n antonyms: \"Antonim\",\n root: \"Tembung Dhasar\",\n grammarPoint: \"Poin Tata Basa\",\n explanation: \"Katerangan\",\n uniqueAttributes: \"\",\n },\n \"kor\": {\n pronunciation: \"로마자 표기법\",\n partOfSpeech: \"품사\",\n definition: \"정의\",\n exampleSentence: \"예문\",\n extendedVocabulary: \"확장 어휘\",\n synonyms: \"유의어\",\n antonyms: \"반의어\",\n root: \"어근\",\n grammarPoint: \"문법 포인트\",\n explanation: \"설명\",\n uniqueAttributes: `{% if existed %}\n ## 동사 활용\n {{어간·어미 변화, 시제·높임·연결 형태}}\n {% end if %}`,\n },\n \"tel\": {\n pronunciation: \"రోమనీకరణ\",\n partOfSpeech: \"పదం రకం\",\n definition: \"నిర్వచనం\",\n exampleSentence: \"ఉదాహరణ వాక్యం\",\n extendedVocabulary: \"విస్తరించిన పదజాలం\",\n synonyms: \"పర్యాయపదాలు\",\n antonyms: \"వ్యతిరేక పదాలు\",\n root: \"మూలం\",\n grammarPoint: \"వ్యాకరణ అంశం\",\n explanation: \"వివరణ\",\n uniqueAttributes: \"\",\n },\n \"vie\": {\n pronunciation: \"Phiên Âm\",\n partOfSpeech: \"Từ Loại\",\n definition: \"Định Nghĩa\",\n exampleSentence: \"Câu Ví Dụ\",\n extendedVocabulary: \"Từ Vựng Mở Rộng\",\n synonyms: \"Từ Đồng Nghĩa\",\n antonyms: \"Từ Trái Nghĩa\",\n root: \"Gốc Từ\",\n grammarPoint: \"Điểm Ngữ Pháp\",\n explanation: \"Giải Thích\",\n uniqueAttributes: \"\",\n },\n \"mar\": {\n pronunciation: \"रोमनकरण\",\n partOfSpeech: \"शब्दप्रकार\",\n definition: \"व्याख्या\",\n exampleSentence: \"उदाहरण वाक्य\",\n extendedVocabulary: \"विस्तारित शब्दसंग्रह\",\n synonyms: \"समानार्थी शब्द\",\n antonyms: \"विरुद्धार्थी शब्द\",\n root: \"मूळ\",\n grammarPoint: \"व्याकरण बिंदु\",\n explanation: \"स्पष्टीकरण\",\n uniqueAttributes: \"\",\n },\n \"ita\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Categoria Grammaticale\",\n definition: \"Definizione\",\n exampleSentence: \"Frase di Esempio\",\n extendedVocabulary: \"Vocabolario Esteso\",\n synonyms: \"Sinonimi\",\n antonyms: \"Contrari\",\n root: \"Radice\",\n grammarPoint: \"Punto Grammaticale\",\n explanation: \"Spiegazione\",\n uniqueAttributes: `{% if existed %}\n ## Genere\n {{maschile / femminile}}\n {% end if %}`,\n },\n \"tam\": {\n pronunciation: \"இலத்தீன் எழுத்துமுறை\",\n partOfSpeech: \"சொல் வகை\",\n definition: \"வரையறை\",\n exampleSentence: \"உதாரண வாக்கியம்\",\n extendedVocabulary: \"விரிவாக்கப்பட்ட சொற்கள்\",\n synonyms: \"ஒத்த சொற்கள்\",\n antonyms: \"எதிர் சொற்கள்\",\n root: \"சொல்லின் வேர்\",\n grammarPoint: \"இலக்கண புள்ளி\",\n explanation: \"விளக்கம்\",\n uniqueAttributes: \"\",\n },\n \"tur\": {\n pronunciation: \"Latin Alfabesi\",\n partOfSpeech: \"Sözcük Türü\",\n definition: \"Tanım\",\n exampleSentence: \"Örnek Cümle\",\n extendedVocabulary: \"Genişletilmiş Kelime Dağarcığı\",\n synonyms: \"Eş Anlamlılar\",\n antonyms: \"Zıt Anlamlılar\",\n root: \"Kök\",\n grammarPoint: \"Dilbilgisi Noktası\",\n explanation: \"Açıklama\",\n uniqueAttributes: \"\",\n },\n \"urd\": {\n pronunciation: \"رومنائزیشن\",\n partOfSpeech: \"کلام کا حصہ\",\n definition: \"تعریف\",\n exampleSentence: \"مثال کا جملہ\",\n extendedVocabulary: \"توسیع شدہ الفاظ\",\n synonyms: \"مترادفات\",\n antonyms: \"متضادات\",\n root: \"جڑ\",\n grammarPoint: \"گرائمر پوائنٹ\",\n explanation: \"وضاحت\",\n uniqueAttributes: \"\",\n },\n \"guj\": {\n pronunciation: \"રોમનાઇઝેશન\",\n partOfSpeech: \"શબ્દ પ્રકાર\",\n definition: \"વ્યાખ્યા\",\n exampleSentence: \"ઉદાહરણ વાક્ય\",\n extendedVocabulary: \"વિસ્તૃત શબ્દભંડોળ\",\n synonyms: \"સમાનાર્થી શબ્દો\",\n antonyms: \"વિરોધી શબ્દો\",\n root: \"મૂળ\",\n grammarPoint: \"વ્યાકરણ બિંદુ\",\n explanation: \"સમજૂતી\",\n uniqueAttributes: \"\",\n },\n \"pol\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Część Mowy\",\n definition: \"Definicja\",\n exampleSentence: \"Przykładowe Zdanie\",\n extendedVocabulary: \"Rozszerzony Słownik\",\n synonyms: \"Synonimy\",\n antonyms: \"Antonimy\",\n root: \"Rdzeń\",\n grammarPoint: \"Punkt Gramatyczny\",\n explanation: \"Wyjaśnienie\",\n uniqueAttributes: \"\",\n },\n \"ukr\": {\n pronunciation: \"Романізація\",\n partOfSpeech: \"Частина мови\",\n definition: \"Визначення\",\n exampleSentence: \"Приклад речення\",\n extendedVocabulary: \"Розширений словник\",\n synonyms: \"Синоніми\",\n antonyms: \"Антоніми\",\n root: \"Корінь\",\n grammarPoint: \"Граматична точка\",\n explanation: \"Пояснення\",\n uniqueAttributes: \"\",\n },\n \"kan\": {\n pronunciation: \"ರೋಮನೀಕರಣ\",\n partOfSpeech: \"ಪದದ ವರ್ಗ\",\n definition: \"ವ್ಯಾಖ್ಯಾನ\",\n exampleSentence: \"ಉದಾಹರಣೆ ವಾಕ್ಯ\",\n extendedVocabulary: \"ವಿಸ್ತೃತ ಶಬ್ದಕೋಶ\",\n synonyms: \"ಸಮಾನಾರ್ಥಕ ಪದಗಳು\",\n antonyms: \"ವಿರುದ್ಧಾರ್ಥಕ ಪದಗಳು\",\n root: \"ಮೂಲ\",\n grammarPoint: \"ವ್ಯಾಕರಣ ಅಂಶ\",\n explanation: \"ವಿವರಣೆ\",\n uniqueAttributes: \"\",\n },\n \"mai\": {\n pronunciation: \"रोमनकरण\",\n partOfSpeech: \"शब्द भेद\",\n definition: \"परिभाषा\",\n exampleSentence: \"उदाहरण वाक्य\",\n extendedVocabulary: \"विस्तारित शब्दावली\",\n synonyms: \"समानार्थी\",\n antonyms: \"विलोम\",\n root: \"मूल\",\n grammarPoint: \"व्याकरण बिंदु\",\n explanation: \"व्याख्या\",\n uniqueAttributes: \"\",\n },\n \"mal\": {\n pronunciation: \"ലാറ്റിനീകരണം\",\n partOfSpeech: \"വാക്ക് തരം\",\n definition: \"നിർവചനം\",\n exampleSentence: \"ഉദാഹരണ വാക്യം\",\n extendedVocabulary: \"വിപുലീകൃത പദാവലി\",\n synonyms: \"പര്യായപദങ്ങൾ\",\n antonyms: \"വിപരീതപദങ്ങൾ\",\n root: \"മൂലം\",\n grammarPoint: \"വ്യാകരണ പോയിന്റ്\",\n explanation: \"വിശദീകരണം\",\n uniqueAttributes: \"\",\n },\n \"pes\": {\n pronunciation: \"رومی‌سازی\",\n partOfSpeech: \"نوع کلمه\",\n definition: \"تعریف\",\n exampleSentence: \"جمله مثال\",\n extendedVocabulary: \"واژگان گسترده\",\n synonyms: \"مترادف‌ها\",\n antonyms: \"متضادها\",\n root: \"ریشه\",\n grammarPoint: \"نکته دستوری\",\n explanation: \"توضیح\",\n uniqueAttributes: \"\",\n },\n \"mya\": {\n pronunciation: \"ရိုမနైဇေးရှင်း\",\n partOfSpeech: \"စကားစု အမျိုးအစား\",\n definition: \"အဓိပ္ပာယ်\",\n exampleSentence: \"ဥပမာ စာကြောင်း\",\n extendedVocabulary: \"တိုးချဲ့ စကားလုံး\",\n synonyms: \"ဆင်တူ စကားလုံး\",\n antonyms: \"ဆန့်ကျင် စကားလုံး\",\n root: \"မူလ\",\n grammarPoint: \"သဒ္ဒါအချက်\",\n explanation: \"ရှင်းလင်းချက်\",\n uniqueAttributes: \"\",\n },\n \"swh\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Aina ya Neno\",\n definition: \"Maana\",\n exampleSentence: \"Mfano wa Sentensi\",\n extendedVocabulary: \"Msamiati Uliopanuliwa\",\n synonyms: \"Visawe\",\n antonyms: \"Kinyume\",\n root: \"Mzizi\",\n grammarPoint: \"Pointi ya Sarufi\",\n explanation: \"Ufafanuzi\",\n uniqueAttributes: \"\",\n },\n \"sun\": {\n pronunciation: \"Romanisasi\",\n partOfSpeech: \"Jinis Kecap\",\n definition: \"Harti\",\n exampleSentence: \"Conto Kalimah\",\n extendedVocabulary: \"Kosakata Ditambah\",\n synonyms: \"Sinonim\",\n antonyms: \"Antonim\",\n root: \"Akar Kecap\",\n grammarPoint: \"Titik Tata Basa\",\n explanation: \"Katerangan\",\n uniqueAttributes: \"\",\n },\n \"ron\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Parte de Vorbire\",\n definition: \"Definiție\",\n exampleSentence: \"Propoziție Exemplu\",\n extendedVocabulary: \"Vocabular Extins\",\n synonyms: \"Sinonime\",\n antonyms: \"Antonime\",\n root: \"Rădăcină\",\n grammarPoint: \"Punct Gramatical\",\n explanation: \"Explicație\",\n uniqueAttributes: \"\",\n },\n \"pan\": {\n pronunciation: \"ਰੋਮਨਾਈਜ਼ੇਸ਼ਨ\",\n partOfSpeech: \"ਸ਼ਬਦ ਦੀ ਕਿਸਮ\",\n definition: \"ਪਰਿਭਾਸ਼ਾ\",\n exampleSentence: \"ਉਦਾਹਰਨ ਵਾਕ\",\n extendedVocabulary: \"ਵਿਸਤ੍ਰਿਤ ਸ਼ਬਦਾਵਲੀ\",\n synonyms: \"ਸਮਾਨਾਰਥੀ ਸ਼ਬਦ\",\n antonyms: \"ਵਿਰੋਧੀ ਸ਼ਬਦ\",\n root: \"ਮੂਲ\",\n grammarPoint: \"ਵਿਆਕਰਣ ਬਿੰਦੂ\",\n explanation: \"ਸਪੱਸ਼ਟੀਕਰਨ\",\n uniqueAttributes: \"\",\n },\n \"bho\": {\n pronunciation: \"रोमनकरण\",\n partOfSpeech: \"शब्द भेद\",\n definition: \"परिभाषा\",\n exampleSentence: \"उदाहरण वाक्य\",\n extendedVocabulary: \"विस्तारित शब्दावली\",\n synonyms: \"समानार्थी\",\n antonyms: \"विलोम\",\n root: \"मूल\",\n grammarPoint: \"व्याकरण बिंदु\",\n explanation: \"व्याख्या\",\n uniqueAttributes: \"\",\n },\n \"amh\": {\n pronunciation: \"ሮማናይዜሽን\",\n partOfSpeech: \"የቃል አይነት\",\n definition: \"ትርጉም\",\n exampleSentence: \"የምሳሌ ዓረፍተ ነገር\",\n extendedVocabulary: \"የተዘረጋ ቃላት\",\n synonyms: \"ተመሳሳይ ቃላት\",\n antonyms: \"ተቃራኒ ቃላት\",\n root: \"ሥር\",\n grammarPoint: \"ሰዋሰው ነጥብ\",\n explanation: \"ማብራሪያ\",\n uniqueAttributes: \"\",\n },\n \"hau\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Nau'in Kalma\",\n definition: \"Ma'ana\",\n exampleSentence: \"Misali Jimla\",\n extendedVocabulary: \"Ƙarin Kalmomi\",\n synonyms: \"Kalmomi Masu Kamanceceniya\",\n antonyms: \"Sabanin Kalmomi\",\n root: \"Tushen Kalma\",\n grammarPoint: \"Manufa na Nahawu\",\n explanation: \"Bayani\",\n uniqueAttributes: \"\",\n },\n \"fuv\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Nokkuure Ɗemɗe\",\n definition: \"Faamsɗo\",\n exampleSentence: \"Winndere Seedantaare\",\n extendedVocabulary: \"Ɗemɗe Ɓurɗe\",\n synonyms: \"Ɗemɗe Noon\",\n antonyms: \"Ɗemɗe Feeñal\",\n root: \"Lewru\",\n grammarPoint: \"Ganndal Ganndal\",\n explanation: \"Tafsiir\",\n uniqueAttributes: \"\",\n },\n \"bos\": {\n pronunciation: \"Latinica\",\n partOfSpeech: \"Vrsta riječi\",\n definition: \"Definicija\",\n exampleSentence: \"Primjer rečenice\",\n extendedVocabulary: \"Prošireni rečnik\",\n synonyms: \"Sinonimi\",\n antonyms: \"Antonimi\",\n root: \"Korijen\",\n grammarPoint: \"Gramatički punkt\",\n explanation: \"Objašnjenje\",\n uniqueAttributes: \"\",\n },\n \"hrv\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Vrsta Riječi\",\n definition: \"Definicija\",\n exampleSentence: \"Primjer Rečenice\",\n extendedVocabulary: \"Prošireni Rječnik\",\n synonyms: \"Sinonimi\",\n antonyms: \"Antonimi\",\n root: \"Korijen\",\n grammarPoint: \"Gramatička Točka\",\n explanation: \"Objašnjenje\",\n uniqueAttributes: \"\",\n },\n \"nld\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Woordsoort\",\n definition: \"Definitie\",\n exampleSentence: \"Voorbeeldzin\",\n extendedVocabulary: \"Uitgebreide Woordenschat\",\n synonyms: \"Synoniemen\",\n antonyms: \"Antoniemen\",\n root: \"Wortel\",\n grammarPoint: \"Grammaticaal Punt\",\n explanation: \"Uitleg\",\n uniqueAttributes: \"\",\n },\n \"srp\": {\n pronunciation: \"Latinica\",\n partOfSpeech: \"Врста речи\",\n definition: \"Дефиниција\",\n exampleSentence: \"Пример реченице\",\n extendedVocabulary: \"Проширени речник\",\n synonyms: \"Синоними\",\n antonyms: \"Антоними\",\n root: \"Корен\",\n grammarPoint: \"Граматичка тачка\",\n explanation: \"Објашњење\",\n uniqueAttributes: \"\",\n },\n \"tha\": {\n pronunciation: \"การถอดเสียง\",\n partOfSpeech: \"ชนิดของคำ\",\n definition: \"คำนิยาม\",\n exampleSentence: \"ประโยคตัวอย่าง\",\n extendedVocabulary: \"คำศัพท์เพิ่มเติม\",\n synonyms: \"คำพ้องความหมาย\",\n antonyms: \"คำตรงข้าม\",\n root: \"รากศัพท์\",\n grammarPoint: \"จุดไวยากรณ์\",\n explanation: \"คำอธิบาย\",\n uniqueAttributes: \"\",\n },\n \"ckb\": {\n pronunciation: \"لاتینیکردن\",\n partOfSpeech: \"جۆری وشە\",\n definition: \"پێناسە\",\n exampleSentence: \"ڕستەی نموونە\",\n extendedVocabulary: \"وشەی زیادکراو\",\n synonyms: \"هاوواتا\",\n antonyms: \"پێچەوانە\",\n root: \"ڕەگ\",\n grammarPoint: \"خاڵی ڕێزمان\",\n explanation: \"ڕوونکردنەوە\",\n uniqueAttributes: \"\",\n },\n \"yor\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Ẹ̀ka Ọ̀rọ̀\",\n definition: \"Ìtumọ̀\",\n exampleSentence: \"Àpẹẹrẹ Gbólóhùn\",\n extendedVocabulary: \"Ọ̀rọ̀ Àfikún\",\n synonyms: \"Ọ̀rọ̀ Ìbámu\",\n antonyms: \"Ọ̀rọ̀ Ìdàkejì\",\n root: \"Gbòǹgbò Ọ̀rọ̀\",\n grammarPoint: \"Àmì Gírámà\",\n explanation: \"Àlàyé\",\n uniqueAttributes: \"\",\n },\n \"uzn\": {\n pronunciation: \"Lotin\",\n partOfSpeech: \"Сўз туркуми\",\n definition: \"Таъриф\",\n exampleSentence: \"Мисол жумла\",\n extendedVocabulary: \"Кенгайтирилган луғат\",\n synonyms: \"Синонимлар\",\n antonyms: \"Антонимлар\",\n root: \"Илдиз\",\n grammarPoint: \"Грамматика нуқтаси\",\n explanation: \"Изоҳ\",\n uniqueAttributes: \"\",\n },\n \"zlm\": {\n pronunciation: \"رومنيسسي\",\n partOfSpeech: \"جنيس ڤرکاتاءن\",\n definition: \"تعريف\",\n exampleSentence: \"ايبارت چونتوه\",\n extendedVocabulary: \"ڤربنداهاراءن کات دڤرلواسکن\",\n synonyms: \"سينونيم\",\n antonyms: \"انتونيم\",\n root: \"اکر\",\n grammarPoint: \"نوكته تات بهاس\",\n explanation: \"كترڠن\",\n uniqueAttributes: \"\",\n },\n \"ibo\": {\n pronunciation: \"Romanization\",\n partOfSpeech: \"Ụdị Okwu\",\n definition: \"Nkọwa\",\n exampleSentence: \"Ahịrịokwu Ihe Atụ\",\n extendedVocabulary: \"Okwu Ndị Ọzọ\",\n synonyms: \"Okwu Yiri Ya\",\n antonyms: \"Okwu Megidere Ya\",\n root: \"Mgbọrọgwụ Okwu\",\n grammarPoint: \"Isi Ụtụ Asụsụ\",\n explanation: \"Nkọwa\",\n uniqueAttributes: \"\",\n },\n \"npi\": {\n pronunciation: \"रोमनकरण\",\n partOfSpeech: \"शब्द भेद\",\n definition: \"परिभाषा\",\n exampleSentence: \"उदाहरण वाक्य\",\n extendedVocabulary: \"विस्तारित शब्दावली\",\n synonyms: \"समानार्थी शब्द\",\n antonyms: \"विलोम शब्द\",\n root: \"मूल\",\n grammarPoint: \"व्याकरण बिन्दु\",\n explanation: \"व्याख्या\",\n uniqueAttributes: \"\",\n },\n \"ceb\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Bahin sa Sinultihan\",\n definition: \"Kahulugan\",\n exampleSentence: \"Pananglitan nga Sentence\",\n extendedVocabulary: \"Dugang nga Bokabularyo\",\n synonyms: \"Managsama nga Kahulogan\",\n antonyms: \"Kaatbang nga Kahulogan\",\n root: \"Gamot\",\n grammarPoint: \"Punto sa Gramatika\",\n explanation: \"Pagpatin-aw\",\n uniqueAttributes: \"\",\n },\n \"skr\": {\n pronunciation: \"رومنائیزیشن\",\n partOfSpeech: \"کلام جا حصہ\",\n definition: \"تعریف\",\n exampleSentence: \"مثال جملہ\",\n extendedVocabulary: \"ودھائے الفاظ\",\n synonyms: \"ہم معنی\",\n antonyms: \"متضاد\",\n root: \"جڑ\",\n grammarPoint: \"گرامر پوائنٹ\",\n explanation: \"وضاحت\",\n uniqueAttributes: \"\",\n },\n \"tgl\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Bahagi ng Pananalita\",\n definition: \"Kahulugan\",\n exampleSentence: \"Halimbawang Pangungusap\",\n extendedVocabulary: \"Pinalawak na Bokabularyo\",\n synonyms: \"Kasingkahulugan\",\n antonyms: \"Kasalungat\",\n root: \"Ugat\",\n grammarPoint: \"Punto ng Gramatika\",\n explanation: \"Paliwanag\",\n uniqueAttributes: \"\",\n },\n \"hun\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Szófaj\",\n definition: \"Meghatározás\",\n exampleSentence: \"Példamondat\",\n extendedVocabulary: \"Bővített Szókincs\",\n synonyms: \"Szinonimák\",\n antonyms: \"Ellentétek\",\n root: \"Szótő\",\n grammarPoint: \"Nyelvtani Pont\",\n explanation: \"Magyarázat\",\n uniqueAttributes: \"\",\n },\n \"azj\": {\n pronunciation: \"Latinləşdirmə\",\n partOfSpeech: \"Сөз нөвү\",\n definition: \"Тәриф\",\n exampleSentence: \"Нүмунә ҹүмлә\",\n extendedVocabulary: \"Генишләндирилмиш луғәт\",\n synonyms: \"Синонимләр\",\n antonyms: \"Антонимләр\",\n root: \"Көк\",\n grammarPoint: \"Qrammatik nöqtə\",\n explanation: \"İzah\",\n uniqueAttributes: \"\",\n },\n \"sin\": {\n pronunciation: \"රෝමානුකරණය\",\n partOfSpeech: \"වචන වර්ගය\",\n definition: \"අර්ථ දැක්වීම\",\n exampleSentence: \"උදාහරණ වාක්‍යය\",\n extendedVocabulary: \"පුළුල් කළ වචන මාලාව\",\n synonyms: \"සමාන වචන\",\n antonyms: \"ප්‍රතිවචන\",\n root: \"මූලය\",\n grammarPoint: \"ව්‍යාකරණ ලක්ෂ්‍යය\",\n explanation: \"පැහැදිලි කිරීම\",\n uniqueAttributes: \"\",\n },\n \"koi\": {\n pronunciation: \"Латинизация\",\n partOfSpeech: \"Кывлӧн тип\",\n definition: \"Индӧд\",\n exampleSentence: \"Индан сёрникузя\",\n extendedVocabulary: \"Паськыттэм кывчукӧр\",\n synonyms: \"Ӧткодьлун кывъяс\",\n antonyms: \"Торъя кывъяс\",\n root: \"Корень\",\n grammarPoint: \"Грамматика точка\",\n explanation: \"Объяснение\",\n uniqueAttributes: \"\",\n },\n \"ell\": {\n pronunciation: \"Λατινοποίηση\",\n partOfSpeech: \"Μέρος του Λόγου\",\n definition: \"Ορισμός\",\n exampleSentence: \"Παράδειγμα Πρότασης\",\n extendedVocabulary: \"Εκτεταμένο Λεξιλόγιο\",\n synonyms: \"Συνώνυμα\",\n antonyms: \"Αντώνυμα\",\n root: \"Ρίζα\",\n grammarPoint: \"Γραμματικό Σημείο\",\n explanation: \"Επεξήγηση\",\n uniqueAttributes: \"\",\n },\n \"ces\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Slovní Druh\",\n definition: \"Definice\",\n exampleSentence: \"Příklad Věty\",\n extendedVocabulary: \"Rozšířená Slovní Zásoba\",\n synonyms: \"Synonyma\",\n antonyms: \"Antonyma\",\n root: \"Kořen\",\n grammarPoint: \"Gramatický Bod\",\n explanation: \"Vysvětlení\",\n uniqueAttributes: \"\",\n },\n \"mag\": {\n pronunciation: \"रोमनकरण\",\n partOfSpeech: \"शब्द भेद\",\n definition: \"परिभाषा\",\n exampleSentence: \"उदाहरण वाक्य\",\n extendedVocabulary: \"विस्तारित शब्दावली\",\n synonyms: \"समानार्थी\",\n antonyms: \"विलोम\",\n root: \"मूल\",\n grammarPoint: \"व्याकरण बिंदु\",\n explanation: \"व्याख्या\",\n uniqueAttributes: \"\",\n },\n \"run\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Ubwoko bw'Ijambo\",\n definition: \"Isobanuro\",\n exampleSentence: \"Interuro y'Urugero\",\n extendedVocabulary: \"Amagambo Yagutse\",\n synonyms: \"Amagambo Ahuye\",\n antonyms: \"Amagambo Atandukanye\",\n root: \"Imizi\",\n grammarPoint: \"Ingingo y'Ikibonezamvugo\",\n explanation: \"Ibisobanuro\",\n uniqueAttributes: \"\",\n },\n \"bel\": {\n pronunciation: \"Лацінізацыя\",\n partOfSpeech: \"Часціна мовы\",\n definition: \"Азначэнне\",\n exampleSentence: \"Прыклад сказа\",\n extendedVocabulary: \"Пашыраны слоўнік\",\n synonyms: \"Сінонімы\",\n antonyms: \"Антонімы\",\n root: \"Корань\",\n grammarPoint: \"Граматычны пункт\",\n explanation: \"Тлумачэнне\",\n uniqueAttributes: \"\",\n },\n \"plt\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Karazana Teny\",\n definition: \"Famaritana\",\n exampleSentence: \"Fehezanteny Ohatra\",\n extendedVocabulary: \"Teny Mivelatra\",\n synonyms: \"Mitovy Hevitra\",\n antonyms: \"Mifanohitra\",\n root: \"Fototry\",\n grammarPoint: \"Teny Fitsipi-pitenenana\",\n explanation: \"Fanazavana\",\n uniqueAttributes: \"\",\n },\n \"qug\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Shimipa Laya\",\n definition: \"Willay\",\n exampleSentence: \"Rikuchina Rimay\",\n extendedVocabulary: \"Mirarishka Shimikuna\",\n synonyms: \"Kipa Shina Shimikuna\",\n antonyms: \"Chikan Shimikuna\",\n root: \"Sapi\",\n grammarPoint: \"Shimipa Puntos\",\n explanation: \"Willay\",\n uniqueAttributes: \"\",\n },\n \"mad\": {\n pronunciation: \"Romanisasi\",\n partOfSpeech: \"Jenis Bhâsa\",\n definition: \"Pangartèyan\",\n exampleSentence: \"Contowan Kalèmat\",\n extendedVocabulary: \"Kosa Kata Tambahan\",\n synonyms: \"Sinonim\",\n antonyms: \"Antonim\",\n root: \"Akar\",\n grammarPoint: \"Poin Tata Bahasa\",\n explanation: \"Katerangan\",\n uniqueAttributes: \"\",\n },\n \"nya\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Mtundu wa Mawu\",\n definition: \"Tanthauzo\",\n exampleSentence: \"Chitsanzo cha Chiganizo\",\n extendedVocabulary: \"Mawu Owonjezera\",\n synonyms: \"Mawu Ofanana\",\n antonyms: \"Mawu Osiyana\",\n root: \"Muzu\",\n grammarPoint: \"Mfundo ya Galamala\",\n explanation: \"Kufotokoza\",\n uniqueAttributes: \"\",\n },\n \"zyb\": {\n pronunciation: \"拉丁壮文\",\n partOfSpeech: \"词类\",\n definition: \"定义\",\n exampleSentence: \"例句\",\n extendedVocabulary: \"扩展词汇\",\n synonyms: \"同义词\",\n antonyms: \"反义词\",\n root: \"词根\",\n grammarPoint: \"语法点\",\n explanation: \"解释\",\n uniqueAttributes: \"\",\n },\n \"pbu\": {\n pronunciation: \"رومنائزیشن\",\n partOfSpeech: \"د کلمې ډول\",\n definition: \"تعریف\",\n exampleSentence: \"د مثال جمله\",\n extendedVocabulary: \"پراخه شوي کلمې\",\n synonyms: \"مترادفات\",\n antonyms: \"متضادات\",\n root: \"ریښه\",\n grammarPoint: \"ګرامر نقطه\",\n explanation: \"تشریح\",\n uniqueAttributes: \"\",\n },\n \"kin\": {\n pronunciation: \"Romanization\",\n partOfSpeech: \"Ubwoko bw'Ijambo\",\n definition: \"Isobanuro\",\n exampleSentence: \"Interuro y'Urugero\",\n extendedVocabulary: \"Amagambo Yagutse\",\n synonyms: \"Amagambo Ahuye\",\n antonyms: \"Amagambo Atandukanye\",\n root: \"Imizi\",\n grammarPoint: \"Ingingo y'Ikibonezamvugo\",\n explanation: \"Ibisobanuro\",\n uniqueAttributes: \"\",\n },\n \"zul\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Uhlobo Lwegama\",\n definition: \"Incazelo\",\n exampleSentence: \"Isibonelo Somusho\",\n extendedVocabulary: \"Amagama Anwetshiwe\",\n synonyms: \"Amagama Afanayo\",\n antonyms: \"Amagama Aphikisayo\",\n root: \"Impande\",\n grammarPoint: \"Iphuzu Lolimi\",\n explanation: \"Incazelo\",\n uniqueAttributes: \"\",\n },\n \"bul\": {\n pronunciation: \"Латинизация\",\n partOfSpeech: \"Част на речта\",\n definition: \"Дефиниция\",\n exampleSentence: \"Примерно изречение\",\n extendedVocabulary: \"Разширен речник\",\n synonyms: \"Синоними\",\n antonyms: \"Антоними\",\n root: \"Корен\",\n grammarPoint: \"Граматична точка\",\n explanation: \"Обяснение\",\n uniqueAttributes: \"\",\n },\n \"swe\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Ordklass\",\n definition: \"Definition\",\n exampleSentence: \"Exempel Mening\",\n extendedVocabulary: \"Utökad Vokabulär\",\n synonyms: \"Synonymer\",\n antonyms: \"Antonymer\",\n root: \"Rot\",\n grammarPoint: \"Grammatikpunkt\",\n explanation: \"Förklaring\",\n uniqueAttributes: \"\",\n },\n \"lin\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Lolenge ya Liloba\",\n definition: \"Ndimbola\",\n exampleSentence: \"Ndakisa ya Fraze\",\n extendedVocabulary: \"Maloba Mingi\",\n synonyms: \"Maloba ya Ndenge Moko\",\n antonyms: \"Maloba Mikokanisi\",\n root: \"Motó\",\n grammarPoint: \"Likambo ya Grammaire\",\n explanation: \"Ndimbola\",\n uniqueAttributes: \"\",\n },\n \"som\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Nooca Ereyga\",\n definition: \"Macnaha\",\n exampleSentence: \"Tusaale Weedh\",\n extendedVocabulary: \"Erayada Ballaarsan\",\n synonyms: \"Erayada Isku Macnaha\",\n antonyms: \"Erayada Liddi\",\n root: \"Xididka\",\n grammarPoint: \"Xarunta Naxwaha\",\n explanation: \"Sharaxaad\",\n uniqueAttributes: \"\",\n },\n \"hms\": {\n pronunciation: \"拉丁苗文\",\n partOfSpeech: \"词类\",\n definition: \"定义\",\n exampleSentence: \"例句\",\n extendedVocabulary: \"扩展词汇\",\n synonyms: \"同义词\",\n antonyms: \"反义词\",\n root: \"词根\",\n grammarPoint: \"语法点\",\n explanation: \"解释\",\n uniqueAttributes: \"\",\n },\n \"hnj\": {\n pronunciation: \"Romanized Popular Alphabet\",\n partOfSpeech: \"Hom Lus\",\n definition: \"Txhais\",\n exampleSentence: \"Kab Lus Piv Txwv\",\n extendedVocabulary: \"Lo Lus Ntxiv\",\n synonyms: \"Lo Lus Zoo Sib Xws\",\n antonyms: \"Lo Lus Sib Txawv\",\n root: \"Hauv Paus\",\n grammarPoint: \"Qhov Grammar\",\n explanation: \"Piav Qhia\",\n uniqueAttributes: \"\",\n },\n \"ilo\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Kita ti Sasao\",\n definition: \"Kaipapanan\",\n exampleSentence: \"Pagarigan a Sentensia\",\n extendedVocabulary: \"Naparsuaan a Bokabularyo\",\n synonyms: \"Agpapada ti Kaipapanan\",\n antonyms: \"Agsumbangir ti Kaipapanan\",\n root: \"Ramut\",\n grammarPoint: \"Puntos ti Gramatika\",\n explanation: \"Panangilawlawag\",\n uniqueAttributes: \"\",\n },\n \"kaz\": {\n pronunciation: \"Латын жазуы\",\n partOfSpeech: \"Сөз табы\",\n definition: \"Анықтама\",\n exampleSentence: \"Мысал сөйлем\",\n extendedVocabulary: \"Кеңейтілген сөздік\",\n synonyms: \"Синонимдер\",\n antonyms: \"Антонимдер\",\n root: \"Түбір\",\n grammarPoint: \"Грамматикалық нүкте\",\n explanation: \"Түсіндіру\",\n uniqueAttributes: \"\",\n },\n \"heb\": {\n pronunciation: \"תעתיק\",\n partOfSpeech: \"חלק דיבור\",\n definition: \"הגדרה\",\n exampleSentence: \"משפט לדוגמה\",\n extendedVocabulary: \"אוצר מילים מורחב\",\n synonyms: \"מילים נרדפות\",\n antonyms: \"מילים הפוכות\",\n root: \"שורש\",\n grammarPoint: \"נקודה דקדוקית\",\n explanation: \"הסבר\",\n uniqueAttributes: \"\",\n },\n \"nob\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Ordklasse\",\n definition: \"Definisjon\",\n exampleSentence: \"Eksempelsetning\",\n extendedVocabulary: \"Utvidet Ordforråd\",\n synonyms: \"Synonymer\",\n antonyms: \"Antonymer\",\n root: \"Rot\",\n grammarPoint: \"Grammatikkpunkt\",\n explanation: \"Forklaring\",\n uniqueAttributes: \"\",\n },\n \"nno\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Ordklasse\",\n definition: \"Definisjon\",\n exampleSentence: \"Dømesetning\",\n extendedVocabulary: \"Utvida Ordforråd\",\n synonyms: \"Synonym\",\n antonyms: \"Antonym\",\n root: \"Rot\",\n grammarPoint: \"Grammatikkpunkt\",\n explanation: \"Forklaring\",\n uniqueAttributes: \"\",\n },\n \"afr\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"sqi\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"asm\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"eus\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"bre\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"cat\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"cos\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"cym\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"dan\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"div\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"epo\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"ekk\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"fao\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"fij\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"fin\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"fry\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"gla\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"gle\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"glg\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"grn\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"hat\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"haw\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"hye\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"ido\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"ina\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"isl\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"kat\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"khm\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"kir\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"lao\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"lat\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"lvs\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"lit\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"ltz\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"mkd\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"mlt\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"mon\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"mri\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"nso\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"oci\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"ori\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"orm\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"prs\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"san\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"slk\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"slv\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"smo\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"sna\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"snd\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"sot\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"tah\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"tat\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"tgk\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"tir\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"ton\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"tsn\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"tuk\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"uig\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"vol\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"wol\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"xho\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"ydd\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"aka\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"bam\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"bis\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"bod\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"che\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"chv\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"dzo\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"ewe\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"kab\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"lug\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"oss\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"ssw\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"ven\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"war\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"nde\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"nbl\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"pam\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"hil\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"bcl\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"min\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"ace\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"bug\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"ban\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"bjn\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"mak\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"sas\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"tet\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"cha\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"niu\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"tvl\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"gil\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"mah\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"pau\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"wls\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"rar\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n \"hif\": {\n pronunciation: \"IPA\",\n partOfSpeech: \"Part of Speech\",\n definition: \"Definition\",\n exampleSentence: \"Example Sentence\",\n extendedVocabulary: \"Extended Vocabulary\",\n synonyms: \"Synonyms\",\n antonyms: \"Antonyms\",\n root: \"Root\",\n grammarPoint: \"Grammar Point\",\n explanation: \"Explanation\",\n uniqueAttributes: \"\",\n },\n}\n","export const CHROME_EXTENSION_ORIGIN = \"chrome-extension://modkelfkcfjpgbfmnbnllalkiogfofhb\"\nexport const EDGE_EXTENSION_ORIGIN = \"extension://cbcbomlgikfbdnoaohcjfledcoklcjbo\"\n\nexport const READFROG_DOMAIN = \"readfrog.app\"\nexport const LOCALHOST_DOMAIN = \"localhost\"\n\n// Browser-accessible TanStack Start dev server.\nexport const WEBSITE_DEV_PORT = 8888\nexport const WEBSITE_DEV_URL = `http://localhost:${WEBSITE_DEV_PORT}`\n\n// Legacy Next.js Caddy proxy kept for compatibility while the old app is still present.\nexport const CADDY_DEV_PORT = 4433\nexport const WEBSITE_CADDY_DEV_URL = `https://localhost:${CADDY_DEV_PORT}`\n\nexport const WEBSITE_PROD_URL = \"https://www.readfrog.app\"\nexport const TRUSTED_ORIGINS = [CHROME_EXTENSION_ORIGIN, EDGE_EXTENSION_ORIGIN, WEBSITE_PROD_URL]\nexport const API_DEV_PORT = 7777\nexport const API_DEV_URL = `http://localhost:${API_DEV_PORT}`\nexport const API_PROD_URL = \"https://api.readfrog.app\"\n\n// Domain constants for cookie monitoring and other domain-based operations\nexport const AUTH_DOMAINS = [READFROG_DOMAIN, LOCALHOST_DOMAIN] as const\n","import type { ColumnConfig } from \"@/types/column\"\n\nimport { z } from \"zod\"\n\n/**\n * Create a Zod schema for a cell value based on column config.\n * All cell schemas are nullable (empty cells are valid).\n */\nexport function createCellSchema(config: ColumnConfig): z.ZodType {\n switch (config.type) {\n case \"string\":\n return z.string().nullable()\n case \"number\":\n return z.number({ message: \"Must be a valid number\" }).nullable()\n case \"boolean\":\n return z.boolean().nullable()\n case \"date\":\n return z.iso.date().nullable()\n case \"select\":\n if (config.options.length === 0) {\n return z.string().nullable()\n }\n return z\n .enum(config.options.map(o => o.id) as [string, ...string[]])\n .nullable()\n }\n}\n\n/**\n * Create a Zod schema for an entire row based on column definitions.\n * Each column becomes a field in the object schema.\n */\nexport function createRowSchema(\n columns: Array<{ id: string, name: string, config: ColumnConfig }>,\n): z.ZodObject<Record<string, z.ZodType>> {\n const shape: Record<string, z.ZodType> = {}\n\n for (const column of columns) {\n // Use column name as description for AI schema generation\n shape[column.id] = createCellSchema(column.config).describe(column.name)\n }\n\n return z.object(shape)\n}\n\n/**\n * Convert row schema to JSON Schema for AI structured outputs.\n * Use this when generating prompts for LLMs that support structured outputs.\n */\nexport function rowSchemaToJsonSchema(\n columns: Array<{ id: string, name: string, config: ColumnConfig }>,\n) {\n return z.toJSONSchema(createRowSchema(columns))\n}\n","import { z } from \"zod\"\n\n/**\n * Semantic version regex pattern\n * Matches versions like: 1.0.0, 10.20.30\n * Does NOT match: v1.0.0, 1.0.0-alpha, 1.0, 1.-1.0\n */\nexport const SEMANTIC_VERSION_REGEX = /^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)$/\n\n/**\n * Zod schema for semantic version validation\n * Validates semantic version strings according to SemVer conventions\n * Requires exactly 3 parts: major.minor.patch\n *\n * @example\n * semanticVersionSchema.parse('1.0.0') // ✓ valid\n * semanticVersionSchema.parse('10.20.30') // ✓ valid\n * semanticVersionSchema.parse('1.11') // ✗ throws error (must have 3 parts)\n * semanticVersionSchema.parse('v1.0.0') // ✗ throws error\n * semanticVersionSchema.parse('1.0.0-alpha') // ✗ throws error\n */\nexport const semanticVersionSchema = z.string().regex(\n SEMANTIC_VERSION_REGEX,\n \"Must be a valid semantic version with exactly 3 parts (e.g., 1.0.0, 10.20.30)\",\n).refine(\n (version) => {\n // Additional validation: ensure all parts are non-negative numbers\n const parts = version.split(\".\")\n return parts.length === 3 && parts.every(part => !Number.isNaN(Number(part)) && Number(part) >= 0)\n },\n { message: \"Version must have exactly 3 parts and all parts must be non-negative numbers\" },\n)\n\n/**\n * Type for semantic version string\n */\nexport type SemanticVersion = z.infer<typeof semanticVersionSchema>\n\n/**\n * Version type classification\n */\nexport type VersionType = \"major\" | \"minor\" | \"patch\"\n\n/**\n * Parse a semantic version string into its components\n * Validates the input using semanticVersionSchema before parsing\n *\n * @param version - The version string to parse (must be in format major.minor.patch)\n * @returns An object containing the major, minor, and patch numbers\n * @throws {z.ZodError} If the version string is invalid\n *\n * @example\n * parseSemanticVersion('1.2.3') // { major: 1, minor: 2, patch: 3 }\n * parseSemanticVersion('10.20.30') // { major: 10, minor: 20, patch: 30 }\n * parseSemanticVersion('1.0') // throws error - must have 3 parts\n * parseSemanticVersion('v1.0.0') // throws error - invalid format\n */\nexport function parseSemanticVersion(version: string): {\n major: number\n minor: number\n patch: number\n} {\n // Validate the version string first\n const validatedVersion = semanticVersionSchema.parse(version)\n\n const parts = validatedVersion.split(\".\")\n return {\n major: Number.parseInt(parts[0]!, 10),\n minor: Number.parseInt(parts[1]!, 10),\n patch: Number.parseInt(parts[2]!, 10),\n }\n}\n\n/**\n * Determine the version type (major, minor, or patch) based on semantic versioning rules\n * Validates the input using semanticVersionSchema before classification\n *\n * @param version - The version string to classify\n * @returns The version type classification\n * @throws {z.ZodError} If the version string is invalid\n *\n * @example\n * getVersionType('1.0.0') // 'major'\n * getVersionType('1.2.0') // 'minor'\n * getVersionType('1.2.3') // 'patch'\n * getVersionType('1.0') // throws error - must have 3 parts\n */\nexport function getVersionType(version: string): VersionType {\n // parseSemanticVersion already validates the version\n const { major, minor, patch } = parseSemanticVersion(version)\n\n if (major > 0 && minor === 0 && patch === 0) {\n return \"major\"\n }\n else if (minor > 0 && patch === 0) {\n return \"minor\"\n }\n else {\n return \"patch\"\n }\n}\n","import { z } from \"zod\"\n\n// Source of truth - can be iterated at runtime\nexport const COLUMN_TYPES = [\"string\", \"number\", \"boolean\", \"date\", \"select\"] as const\n\nexport type ColumnType = (typeof COLUMN_TYPES)[number]\n\nexport const selectOptionSchema = z.object({\n id: z.string(),\n value: z.string(),\n color: z.string().regex(/^#[0-9a-f]{6}$/i, \"Color must be a valid hex color\"),\n})\n\nexport const columnConfigSchema = z.discriminatedUnion(\"type\", [\n z.object({ type: z.literal(\"string\") }),\n z.object({\n type: z.literal(\"number\"),\n decimal: z.number().int().min(0).default(0),\n format: z.enum([\"number\", \"currency\", \"percent\"]).default(\"number\"),\n }),\n z.object({ type: z.literal(\"boolean\") }),\n z.object({\n type: z.literal(\"date\"),\n dateFormat: z.string().optional(),\n }),\n z.object({\n type: z.literal(\"select\"),\n options: z.array(selectOptionSchema).default([]),\n }),\n])\n\nexport type ColumnConfig = z.infer<typeof columnConfigSchema>\nexport type SelectOption = z.infer<typeof selectOptionSchema>\n\n// Column type metadata (label, default config)\nexport const COLUMN_TYPE_INFO: Record<\n ColumnType,\n { label: string, defaultConfig: ColumnConfig }\n> = {\n string: { label: \"Text\", defaultConfig: { type: \"string\" } },\n number: {\n label: \"Number\",\n defaultConfig: { type: \"number\", decimal: 0, format: \"number\" },\n },\n boolean: { label: \"Checkbox\", defaultConfig: { type: \"boolean\" } },\n date: { label: \"Date\", defaultConfig: { type: \"date\" } },\n select: { label: \"Select\", defaultConfig: { type: \"select\", options: [] } },\n}\n\nexport function isNumberConfig(\n config: ColumnConfig,\n): config is Extract<ColumnConfig, { type: \"number\" }> {\n return config.type === \"number\"\n}\n\nexport function isSelectConfig(\n config: ColumnConfig,\n): config is Extract<ColumnConfig, { type: \"select\" }> {\n return config.type === \"select\"\n}\n","import { z } from \"zod\"\n\nexport const LANG_CODE_ISO6393_OPTIONS = [\n \"eng\",\n \"cmn\",\n \"cmn-Hant\",\n \"yue\",\n \"spa\",\n \"rus\",\n \"arb\",\n \"ben\",\n \"hin\",\n \"por\",\n \"ind\",\n \"jpn\",\n \"fra\",\n \"deu\",\n \"jav\",\n \"kor\",\n \"tel\",\n \"vie\",\n \"mar\",\n \"ita\",\n \"tam\",\n \"tur\",\n \"urd\",\n \"guj\",\n \"pol\",\n \"ukr\",\n \"kan\",\n \"mai\",\n \"mal\",\n \"pes\",\n \"mya\",\n \"swh\",\n \"sun\",\n \"ron\",\n \"pan\",\n \"bho\",\n \"amh\",\n \"hau\",\n \"fuv\",\n \"bos\",\n \"hrv\",\n \"nld\",\n \"srp\",\n \"tha\",\n \"ckb\",\n \"yor\",\n \"uzn\",\n \"zlm\",\n \"ibo\",\n \"npi\",\n \"ceb\",\n \"skr\",\n \"tgl\",\n \"hun\",\n \"azj\",\n \"sin\",\n \"koi\",\n \"ell\",\n \"ces\",\n \"mag\",\n \"run\",\n \"bel\",\n \"plt\",\n \"qug\",\n \"mad\",\n \"nya\",\n \"zyb\",\n \"pbu\",\n \"kin\",\n \"zul\",\n \"bul\",\n \"swe\",\n \"lin\",\n \"som\",\n \"hms\",\n \"hnj\",\n \"ilo\",\n \"kaz\",\n \"heb\",\n \"nob\",\n \"nno\",\n \"afr\",\n \"sqi\",\n \"asm\",\n \"eus\",\n \"bre\",\n \"cat\",\n \"cos\",\n \"cym\",\n \"dan\",\n \"div\",\n \"epo\",\n \"ekk\",\n \"fao\",\n \"fij\",\n \"fin\",\n \"fry\",\n \"gla\",\n \"gle\",\n \"glg\",\n \"grn\",\n \"hat\",\n \"haw\",\n \"hye\",\n \"ido\",\n \"ina\",\n \"isl\",\n \"kat\",\n \"khm\",\n \"kir\",\n \"lao\",\n \"lat\",\n \"lvs\",\n \"lit\",\n \"ltz\",\n \"mkd\",\n \"mlt\",\n \"mon\",\n \"mri\",\n \"nso\",\n \"oci\",\n \"ori\",\n \"orm\",\n \"prs\",\n \"san\",\n \"slk\",\n \"slv\",\n \"smo\",\n \"sna\",\n \"snd\",\n \"sot\",\n \"tah\",\n \"tat\",\n \"tgk\",\n \"tir\",\n \"ton\",\n \"tsn\",\n \"tuk\",\n \"uig\",\n \"vol\",\n \"wol\",\n \"xho\",\n \"ydd\",\n \"aka\",\n \"bam\",\n \"bis\",\n \"bod\",\n \"che\",\n \"chv\",\n \"dzo\",\n \"ewe\",\n \"kab\",\n \"lug\",\n \"oss\",\n \"ssw\",\n \"ven\",\n \"war\",\n \"nde\",\n \"nbl\",\n \"pam\",\n \"hil\",\n \"bcl\",\n \"min\",\n \"ace\",\n \"bug\",\n \"ban\",\n \"bjn\",\n \"mak\",\n \"sas\",\n \"tet\",\n \"cha\",\n \"niu\",\n \"tvl\",\n \"gil\",\n \"mah\",\n \"pau\",\n \"wls\",\n \"rar\",\n \"hif\",\n] as const\n\nexport const LANG_CODE_ISO6391_OPTIONS = [\n \"en\", // English\n \"zh\", // Chinese(包含简/粤等;只是在 BCP-47 里再加 -Hans / -Hant / -yue)\n \"zh-TW\", // Traditional Chinese\n \"es\",\n \"ru\",\n \"ar\",\n \"bn\",\n \"hi\",\n \"pt\",\n \"id\",\n \"ja\",\n \"fr\",\n \"de\",\n \"jv\",\n \"ko\",\n \"te\",\n \"vi\",\n \"mr\",\n \"it\",\n \"ta\",\n \"tr\",\n \"ur\",\n \"gu\",\n \"pl\",\n \"uk\",\n \"kn\",\n \"ml\",\n \"fa\",\n \"my\",\n \"sw\",\n \"su\",\n \"ro\",\n \"pa\",\n \"am\",\n \"ha\",\n \"ff\",\n \"bs\",\n \"hr\",\n \"nl\",\n \"sr\",\n \"th\",\n \"ku\",\n \"yo\",\n \"uz\",\n \"ms\",\n \"ig\",\n \"ne\",\n \"tl\",\n \"hu\",\n \"az\",\n \"si\",\n \"el\",\n \"cs\",\n \"ny\",\n \"rw\",\n \"zu\",\n \"bg\",\n \"sv\",\n \"ln\",\n \"so\",\n \"kk\",\n \"be\",\n \"he\",\n \"nb\",\n \"nn\",\n \"af\",\n \"sq\",\n \"as\", // Assamese\n \"eu\",\n \"br\",\n \"ca\",\n \"co\",\n \"cy\",\n \"da\",\n \"dv\",\n \"eo\",\n \"et\",\n \"fo\",\n \"fj\",\n \"fi\",\n \"fy\",\n \"gd\",\n \"ga\",\n \"gl\",\n \"gn\",\n \"ht\",\n \"hy\",\n \"io\",\n \"ia\",\n \"is\",\n \"ka\",\n \"km\",\n \"ky\",\n \"lo\",\n \"la\",\n \"lv\",\n \"lt\",\n \"lb\",\n \"mk\",\n \"mt\",\n \"mn\",\n \"mi\",\n \"oc\",\n \"or\",\n \"om\",\n \"sa\",\n \"sk\",\n \"sl\",\n \"sm\",\n \"sn\",\n \"sd\",\n \"st\",\n \"ty\",\n \"tt\",\n \"tg\",\n \"ti\",\n \"to\",\n \"tn\",\n \"tk\",\n \"ug\",\n \"vo\",\n \"wo\",\n \"xh\",\n \"yi\",\n \"ak\",\n \"bm\",\n \"bi\",\n \"bo\",\n \"ce\",\n \"cv\",\n \"ee\",\n \"lg\",\n \"os\",\n \"ss\",\n \"ve\",\n \"nd\",\n \"nr\",\n \"ch\",\n \"mh\",\n \"dz\",\n] as const\n\nexport const langCodeISO6393Schema = z.enum(LANG_CODE_ISO6393_OPTIONS)\n\nexport const langCodeISO6391Schema = z.enum(LANG_CODE_ISO6391_OPTIONS)\n\nexport type LangCodeISO6391 = z.infer<typeof langCodeISO6391Schema>\n\nexport type LangCodeISO6393 = z.infer<typeof langCodeISO6393Schema>\n\nexport const LANG_CODE_TO_EN_NAME: Record<LangCodeISO6393, string> = {\n \"eng\": \"English\",\n \"cmn\": \"Simplified Mandarin Chinese\",\n \"cmn-Hant\": \"Traditional Mandarin Chinese\",\n \"yue\": \"Cantonese\", // not supported by franc-min\n \"spa\": \"Spanish\",\n \"rus\": \"Russian\",\n \"arb\": \"Standard Arabic\",\n \"ben\": \"Bengali\",\n \"hin\": \"Hindi\",\n \"por\": \"Portuguese\",\n \"ind\": \"Indonesian\",\n \"jpn\": \"Japanese\",\n \"fra\": \"French\",\n \"deu\": \"German\",\n \"jav\": \"Javanese (Javanese)\",\n \"kor\": \"Korean\",\n \"tel\": \"Telugu\",\n \"vie\": \"Vietnamese\",\n \"mar\": \"Marathi\",\n \"ita\": \"Italian\",\n \"tam\": \"Tamil\",\n \"tur\": \"Turkish\",\n \"urd\": \"Urdu\",\n \"guj\": \"Gujarati\",\n \"pol\": \"Polish\",\n \"ukr\": \"Ukrainian\",\n \"kan\": \"Kannada\",\n \"mai\": \"Maithili\",\n \"mal\": \"Malayalam\",\n \"pes\": \"Iranian Persian\",\n \"mya\": \"Burmese\",\n \"swh\": \"Swahili (individual language)\",\n \"sun\": \"Sundanese\",\n \"ron\": \"Romanian\",\n \"pan\": \"Panjabi\",\n \"bho\": \"Bhojpuri\",\n \"amh\": \"Amharic\",\n \"hau\": \"Hausa\",\n \"fuv\": \"Nigerian Fulfulde\",\n \"bos\": \"Bosnian (Cyrillic)\",\n \"hrv\": \"Croatian\",\n \"nld\": \"Dutch\",\n \"srp\": \"Serbian (Cyrillic)\",\n \"tha\": \"Thai\",\n \"ckb\": \"Central Kurdish\",\n \"yor\": \"Yoruba\",\n \"uzn\": \"Northern Uzbek (Cyrillic)\",\n \"zlm\": \"Malay (individual language) (Arabic)\",\n \"ibo\": \"Igbo\",\n \"npi\": \"Nepali (individual language)\",\n \"ceb\": \"Cebuano\",\n \"skr\": \"Saraiki\",\n \"tgl\": \"Tagalog\",\n \"hun\": \"Hungarian\",\n \"azj\": \"North Azerbaijani (Cyrillic)\",\n \"sin\": \"Sinhala\",\n \"koi\": \"Komi-Permyak\",\n \"ell\": \"Modern Greek (1453-)\",\n \"ces\": \"Czech\",\n \"mag\": \"Magahi\",\n \"run\": \"Rundi\",\n \"bel\": \"Belarusian\",\n \"plt\": \"Plateau Malagasy\",\n \"qug\": \"Chimborazo Highland Quichua\",\n \"mad\": \"Madurese\",\n \"nya\": \"Nyanja\",\n \"zyb\": \"Yongbei Zhuang\",\n \"pbu\": \"Northern Pashto\",\n \"kin\": \"Kinyarwanda\",\n \"zul\": \"Zulu\",\n \"bul\": \"Bulgarian\",\n \"swe\": \"Swedish\",\n \"lin\": \"Lingala\",\n \"som\": \"Somali\",\n \"hms\": \"Southern Qiandong Miao\",\n \"hnj\": \"Hmong Njua\",\n \"ilo\": \"Iloko\",\n \"kaz\": \"Kazakh\",\n \"heb\": \"Hebrew\",\n \"nob\": \"Norwegian Bokmål\",\n \"nno\": \"Norwegian Nynorsk\",\n \"afr\": \"Afrikaans\",\n \"sqi\": \"Albanian\",\n \"asm\": \"Assamese\",\n \"eus\": \"Basque\",\n \"bre\": \"Breton\",\n \"cat\": \"Catalan\",\n \"cos\": \"Corsican\",\n \"cym\": \"Welsh\",\n \"dan\": \"Danish\",\n \"div\": \"Divehi\",\n \"epo\": \"Esperanto\",\n \"ekk\": \"Estonian\",\n \"fao\": \"Faroese\",\n \"fij\": \"Fijian\",\n \"fin\": \"Finnish\",\n \"fry\": \"Western Frisian\",\n \"gla\": \"Scottish Gaelic\",\n \"gle\": \"Irish\",\n \"glg\": \"Galician\",\n \"grn\": \"Guarani\",\n \"hat\": \"Haitian Creole\",\n \"haw\": \"Hawaiian\",\n \"hye\": \"Armenian\",\n \"ido\": \"Ido\",\n \"ina\": \"Interlingua\",\n \"isl\": \"Icelandic\",\n \"kat\": \"Georgian\",\n \"khm\": \"Khmer\",\n \"kir\": \"Kyrgyz\",\n \"lao\": \"Lao\",\n \"lat\": \"Latin\",\n \"lvs\": \"Latvian\",\n \"lit\": \"Lithuanian\",\n \"ltz\": \"Luxembourgish\",\n \"mkd\": \"Macedonian\",\n \"mlt\": \"Maltese\",\n \"mon\": \"Mongolian\",\n \"mri\": \"Maori\",\n \"nso\": \"Northern Sotho\",\n \"oci\": \"Occitan\",\n \"ori\": \"Odia\",\n \"orm\": \"Oromo\",\n \"prs\": \"Dari\",\n \"san\": \"Sanskrit\",\n \"slk\": \"Slovak\",\n \"slv\": \"Slovenian\",\n \"smo\": \"Samoan\",\n \"sna\": \"Shona\",\n \"snd\": \"Sindhi\",\n \"sot\": \"Southern Sotho\",\n \"tah\": \"Tahitian\",\n \"tat\": \"Tatar\",\n \"tgk\": \"Tajik\",\n \"tir\": \"Tigrinya\",\n \"ton\": \"Tongan\",\n \"tsn\": \"Tswana\",\n \"tuk\": \"Turkmen\",\n \"uig\": \"Uyghur\",\n \"vol\": \"Volapük\",\n \"wol\": \"Wolof\",\n \"xho\": \"Xhosa\",\n \"ydd\": \"Eastern Yiddish\",\n \"aka\": \"Akan\",\n \"bam\": \"Bambara\",\n \"bis\": \"Bislama\",\n \"bod\": \"Tibetan\",\n \"che\": \"Chechen\",\n \"chv\": \"Chuvash\",\n \"dzo\": \"Dzongkha\",\n \"ewe\": \"Ewe\",\n \"kab\": \"Kabyle\",\n \"lug\": \"Ganda\",\n \"oss\": \"Ossetian\",\n \"ssw\": \"Swati\",\n \"ven\": \"Venda\",\n \"war\": \"Waray\",\n \"nde\": \"North Ndebele\",\n \"nbl\": \"South Ndebele\",\n \"pam\": \"Pampanga\",\n \"hil\": \"Hiligaynon\",\n \"bcl\": \"Central Bikol\",\n \"min\": \"Minangkabau\",\n \"ace\": \"Acehnese\",\n \"bug\": \"Buginese\",\n \"ban\": \"Balinese\",\n \"bjn\": \"Banjar\",\n \"mak\": \"Makasar\",\n \"sas\": \"Sasak\",\n \"tet\": \"Tetum\",\n \"cha\": \"Chamorro\",\n \"niu\": \"Niuean\",\n \"tvl\": \"Tuvaluan\",\n \"gil\": \"Gilbertese\",\n \"mah\": \"Marshallese\",\n \"pau\": \"Palauan\",\n \"wls\": \"Wallisian\",\n \"rar\": \"Rarotongan\",\n \"hif\": \"Fiji Hindi\",\n}\n\nexport const LANG_CODE_TO_LOCALE_NAME: Record<LangCodeISO6393, string> = {\n \"eng\": \"English\",\n \"cmn\": \"简体中文\",\n \"cmn-Hant\": \"繁體中文\",\n \"yue\": \"粵語\",\n \"spa\": \"Español\",\n \"rus\": \"Русский\",\n \"arb\": \"العربية\",\n \"ben\": \"বাংলা\",\n \"hin\": \"हिन्दी\",\n \"por\": \"Português\",\n \"ind\": \"Bahasa Indonesia\",\n \"jpn\": \"日本語\",\n \"fra\": \"Français\",\n \"deu\": \"Deutsch\",\n \"jav\": \"Basa Jawa\",\n \"kor\": \"한국어\",\n \"tel\": \"తెలుగు\",\n \"vie\": \"Tiếng Việt\",\n \"mar\": \"मराठी\",\n \"ita\": \"Italiano\",\n \"tam\": \"தமிழ்\",\n \"tur\": \"Türkçe\",\n \"urd\": \"اردو\",\n \"guj\": \"ગુજરાતી\",\n \"pol\": \"Polski\",\n \"ukr\": \"Українська\",\n \"kan\": \"ಕನ್ನಡ\",\n \"mai\": \"मैथिली\",\n \"mal\": \"മലയാളം\",\n \"pes\": \"فارسی\",\n \"mya\": \"မြန်မာစာ\",\n \"swh\": \"Kiswahili\",\n \"sun\": \"Basa Sunda\",\n \"ron\": \"Română\",\n \"pan\": \"ਪੰਜਾਬੀ\",\n \"bho\": \"भोजपुरी\",\n \"amh\": \"አማርኛ\",\n \"hau\": \"Hausa\",\n \"fuv\": \"Fulfulde\",\n \"bos\": \"Босански\",\n \"hrv\": \"Hrvatski\",\n \"nld\": \"Nederlands\",\n \"srp\": \"Српски\",\n \"tha\": \"ไทย\",\n \"ckb\": \"کوردیی ناوەندی\",\n \"yor\": \"Yorùbá\",\n \"uzn\": \"Ўзбекча\",\n \"zlm\": \"بهاس ملايو\",\n \"ibo\": \"Asụsụ Igbo\",\n \"npi\": \"नेपाली\",\n \"ceb\": \"Cebuano\",\n \"skr\": \"سرائیکی\",\n \"tgl\": \"Tagalog\",\n \"hun\": \"Magyar\",\n \"azj\": \"Азәрбајҹан дили\",\n \"sin\": \"සිංහල\",\n \"koi\": \"Перем Коми кыв\",\n \"ell\": \"Ελληνικά\",\n \"ces\": \"Čeština\",\n \"mag\": \"मगही\",\n \"run\": \"Ikirundi\",\n \"bel\": \"Беларуская\",\n \"plt\": \"Fiteny Malagasy\",\n \"qug\": \"Kichwa\",\n \"mad\": \"Madhurâ\",\n \"nya\": \"Chinyanja\",\n \"zyb\": \"Yongbei Bouxcuengh\",\n \"pbu\": \"پښتو\",\n \"kin\": \"Kinyarwanda\",\n \"zul\": \"isiZulu\",\n \"bul\": \"Български\",\n \"swe\": \"Svenska\",\n \"lin\": \"Lingála\",\n \"som\": \"Af Soomaali\",\n \"hms\": \"Hmongb Shuad\",\n \"hnj\": \"Hmong Njua\",\n \"ilo\": \"Ilokano\",\n \"kaz\": \"Қазақ тілі\",\n \"heb\": \"עברית\",\n \"nob\": \"Norsk bokmål\",\n \"nno\": \"Norsk nynorsk\",\n \"afr\": \"Afrikaans\",\n \"sqi\": \"Shqip\",\n \"asm\": \"অসমীয়া\",\n \"eus\": \"Euskara\",\n \"bre\": \"Brezhoneg\",\n \"cat\": \"Català\",\n \"cos\": \"Corsu\",\n \"cym\": \"Cymraeg\",\n \"dan\": \"Dansk\",\n \"div\": \"ދިވެހި\",\n \"epo\": \"Esperanto\",\n \"ekk\": \"Eesti\",\n \"fao\": \"Føroyskt\",\n \"fij\": \"Vosa Vakaviti\",\n \"fin\": \"Suomi\",\n \"fry\": \"Frysk\",\n \"gla\": \"Gàidhlig\",\n \"gle\": \"Gaeilge\",\n \"glg\": \"Galego\",\n \"grn\": \"Avañeʼẽ\",\n \"hat\": \"Kreyòl ayisyen\",\n \"haw\": \"ʻŌlelo Hawaiʻi\",\n \"hye\": \"Հایերен\",\n \"ido\": \"Ido\",\n \"ina\": \"Interlingua\",\n \"isl\": \"Íslenska\",\n \"kat\": \"ქართული\",\n \"khm\": \"ភាសាខ្មែរ\",\n \"kir\": \"Кыргызча\",\n \"lao\": \"ພາສາລາວ\",\n \"lat\": \"Latina\",\n \"lvs\": \"Latviešu\",\n \"lit\": \"Lietuvių\",\n \"ltz\": \"Lëtzebuergesch\",\n \"mkd\": \"Македонски\",\n \"mlt\": \"Malti\",\n \"mon\": \"Монгол\",\n \"mri\": \"Te Reo Māori\",\n \"nso\": \"Sesotho sa Leboa\",\n \"oci\": \"Occitan\",\n \"ori\": \"ଓଡ଼ିଆ\",\n \"orm\": \"Oromoo\",\n \"prs\": \"دری\",\n \"san\": \"संस्कृतम्\",\n \"slk\": \"Slovenčina\",\n \"slv\": \"Slovenščina\",\n \"smo\": \"Gagana Samoa\",\n \"sna\": \"chiShona\",\n \"snd\": \"سنڌي\",\n \"sot\": \"Sesotho\",\n \"tah\": \"Reo Tahiti\",\n \"tat\": \"Татарча\",\n \"tgk\": \"Тоҷикӣ\",\n \"tir\": \"ትግርኛ\",\n \"ton\": \"Lea fakatonga\",\n \"tsn\": \"Setswana\",\n \"tuk\": \"Türkmençe\",\n \"uig\": \"ئۇيغۇرچە\",\n \"vol\": \"Volapük\",\n \"wol\": \"Wolof\",\n \"xho\": \"isiXhosa\",\n \"ydd\": \"ייִדיש\",\n \"aka\": \"Akan\",\n \"bam\": \"Bamanankan\",\n \"bis\": \"Bislama\",\n \"bod\": \"བོད་སྐད\",\n \"che\": \"Нохчийн\",\n \"chv\": \"Чӑвашла\",\n \"dzo\": \"རྫོང་ཁ\",\n \"ewe\": \"Eʋegbe\",\n \"kab\": \"Taqbaylit\",\n \"lug\": \"Luganda\",\n \"oss\": \"Ирон\",\n \"ssw\": \"SiSwati\",\n \"ven\": \"Tshivenḓa\",\n \"war\": \"Winaray\",\n \"nde\": \"isiNdebele\",\n \"nbl\": \"isiNdebele seSewula\",\n \"pam\": \"Kapampangan\",\n \"hil\": \"Ilonggo\",\n \"bcl\": \"Bikol Sentral\",\n \"min\": \"Baso Minangkabau\",\n \"ace\": \"Bahsa Acèh\",\n \"bug\": \"Basa Ugi\",\n \"ban\": \"Basa Bali\",\n \"bjn\": \"Bahasa Banjar\",\n \"mak\": \"Basa Mangkasara\",\n \"sas\": \"Sasak\",\n \"tet\": \"Tetun\",\n \"cha\": \"Chamoru\",\n \"niu\": \"Vagahau Niuē\",\n \"tvl\": \"Te Gana Tuvalu\",\n \"gil\": \"Taetae ni Kiribati\",\n \"mah\": \"Kajin Majel\",\n \"pau\": \"A tekoi er a Belau\",\n \"wls\": \"Fakaʻuvea\",\n \"rar\": \"Māori Kūki ʻĀirani\",\n \"hif\": \"फ़िजी हिंदी\",\n}\n\nexport const ISO6393_TO_6391: Record<LangCodeISO6393, LangCodeISO6391 | undefined> = {\n \"eng\": \"en\",\n \"cmn\": \"zh\",\n \"cmn-Hant\": \"zh-TW\",\n \"yue\": \"zh\",\n \"spa\": \"es\",\n \"rus\": \"ru\",\n \"arb\": \"ar\",\n \"ben\": \"bn\",\n \"hin\": \"hi\",\n \"por\": \"pt\",\n \"ind\": \"id\",\n \"jpn\": \"ja\",\n \"fra\": \"fr\",\n \"deu\": \"de\",\n \"jav\": \"jv\",\n \"kor\": \"ko\",\n \"tel\": \"te\",\n \"vie\": \"vi\",\n \"mar\": \"mr\",\n \"ita\": \"it\",\n \"tam\": \"ta\",\n \"tur\": \"tr\",\n \"urd\": \"ur\",\n \"guj\": \"gu\",\n \"pol\": \"pl\",\n \"ukr\": \"uk\",\n \"kan\": \"kn\",\n \"mai\": undefined, // 无 2-letter -> undefined\n \"mal\": \"ml\",\n \"pes\": \"fa\", // Iranian Persian ⇢ fa\n \"mya\": \"my\",\n \"swh\": \"sw\",\n \"sun\": \"su\",\n \"ron\": \"ro\",\n \"pan\": \"pa\",\n \"bho\": undefined,\n \"amh\": \"am\",\n \"hau\": \"ha\",\n \"fuv\": \"ff\", // Fulah\n \"bos\": \"bs\",\n \"hrv\": \"hr\",\n \"nld\": \"nl\",\n \"srp\": \"sr\",\n \"tha\": \"th\",\n \"ckb\": \"ku\", // 有人也写 'ckb',但 ISO-639-1 是 ku\n \"yor\": \"yo\",\n \"uzn\": \"uz\",\n \"zlm\": \"ms\", // Malay\n \"ibo\": \"ig\",\n \"npi\": \"ne\",\n \"ceb\": undefined,\n \"skr\": undefined,\n \"tgl\": \"tl\",\n \"hun\": \"hu\",\n \"azj\": \"az\",\n \"sin\": \"si\",\n \"koi\": undefined,\n \"ell\": \"el\",\n \"ces\": \"cs\",\n \"mag\": undefined,\n \"run\": undefined,\n \"bel\": \"be\",\n \"plt\": undefined,\n \"qug\": undefined,\n \"mad\": undefined,\n \"nya\": \"ny\",\n \"zyb\": undefined,\n \"pbu\": undefined,\n \"kin\": \"rw\",\n \"zul\": \"zu\",\n \"bul\": \"bg\",\n \"swe\": \"sv\",\n \"lin\": \"ln\",\n \"som\": \"so\",\n \"hms\": undefined,\n \"hnj\": undefined,\n \"ilo\": undefined,\n \"kaz\": \"kk\",\n \"heb\": \"he\",\n \"nob\": \"nb\",\n \"nno\": \"nn\",\n \"afr\": \"af\",\n \"sqi\": \"sq\",\n \"asm\": \"as\",\n \"eus\": \"eu\",\n \"bre\": \"br\",\n \"cat\": \"ca\",\n \"cos\": \"co\",\n \"cym\": \"cy\",\n \"dan\": \"da\",\n \"div\": \"dv\",\n \"epo\": \"eo\",\n \"ekk\": \"et\",\n \"fao\": \"fo\",\n \"fij\": \"fj\",\n \"fin\": \"fi\",\n \"fry\": \"fy\",\n \"gla\": \"gd\",\n \"gle\": \"ga\",\n \"glg\": \"gl\",\n \"grn\": \"gn\",\n \"hat\": \"ht\",\n \"haw\": undefined,\n \"hye\": \"hy\",\n \"ido\": \"io\",\n \"ina\": \"ia\",\n \"isl\": \"is\",\n \"kat\": \"ka\",\n \"khm\": \"km\",\n \"kir\": \"ky\",\n \"lao\": \"lo\",\n \"lat\": \"la\",\n \"lvs\": \"lv\",\n \"lit\": \"lt\",\n \"ltz\": \"lb\",\n \"mkd\": \"mk\",\n \"mlt\": \"mt\",\n \"mon\": \"mn\",\n \"mri\": \"mi\",\n \"nso\": undefined,\n \"oci\": \"oc\",\n \"ori\": \"or\",\n \"orm\": \"om\",\n \"prs\": undefined,\n \"san\": \"sa\",\n \"slk\": \"sk\",\n \"slv\": \"sl\",\n \"smo\": \"sm\",\n \"sna\": \"sn\",\n \"snd\": \"sd\",\n \"sot\": \"st\",\n \"tah\": \"ty\",\n \"tat\": \"tt\",\n \"tgk\": \"tg\",\n \"tir\": \"ti\",\n \"ton\": \"to\",\n \"tsn\": \"tn\",\n \"tuk\": \"tk\",\n \"uig\": \"ug\",\n \"vol\": \"vo\",\n \"wol\": \"wo\",\n \"xho\": \"xh\",\n \"ydd\": \"yi\",\n \"aka\": \"ak\",\n \"bam\": \"bm\",\n \"bis\": \"bi\",\n \"bod\": \"bo\",\n \"che\": \"ce\",\n \"chv\": \"cv\",\n \"dzo\": \"dz\",\n \"ewe\": \"ee\",\n \"kab\": undefined,\n \"lug\": \"lg\",\n \"oss\": \"os\",\n \"ssw\": \"ss\",\n \"ven\": \"ve\",\n \"war\": undefined,\n \"nde\": \"nd\",\n \"nbl\": \"nr\",\n \"pam\": undefined,\n \"hil\": undefined,\n \"bcl\": undefined,\n \"min\": undefined,\n \"ace\": undefined,\n \"bug\": undefined,\n \"ban\": undefined,\n \"bjn\": undefined,\n \"mak\": undefined,\n \"sas\": undefined,\n \"tet\": undefined,\n \"cha\": \"ch\",\n \"niu\": undefined,\n \"tvl\": undefined,\n \"gil\": undefined,\n \"mah\": \"mh\",\n \"pau\": undefined,\n \"wls\": undefined,\n \"rar\": undefined,\n \"hif\": undefined,\n}\n\nexport const LOCALE_TO_ISO6393: Partial<Record<LangCodeISO6391, LangCodeISO6393>> = {\n en: \"eng\",\n zh: \"cmn\",\n}\n\nexport const langLevel = z.enum([\"beginner\", \"intermediate\", \"advanced\"])\nexport type LangLevel = z.infer<typeof langLevel>\n\n// RTL (Right-to-Left) languages basically Arabic-based languages\nexport const RTL_LANG_CODES: readonly LangCodeISO6393[] = [\n \"arb\", // Standard Arabic\n \"urd\", // Urdu\n \"pes\", // Iranian Persian\n \"ckb\", // Central Kurdish\n \"zlm\", // Malay (individual language) (Arabic)\n \"skr\", // Saraiki\n \"pbu\", // Northern Pashto\n \"heb\", // Hebrew\n \"div\", // Divehi\n \"snd\", // Sindhi\n \"uig\", // Uyghur\n \"ydd\", // Eastern Yiddish\n \"prs\", // Dari\n] as const\n"],"mappings":"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QAAQ,SAAS;EACzB,SAAS,EAAE,MAAM,mBAAmB,CAAC,QAAQ,EAAE,CAAC;EACjD,CAAC;CACH,CAAC;AAMF,MAAa,mBAGT;CACF,QAAQ;EAAE,OAAO;EAAQ,eAAe,EAAE,MAAM,UAAU;EAAE;CAC5D,QAAQ;EACN,OAAO;EACP,eAAe;GAAE,MAAM;GAAU,SAAS;GAAG,QAAQ;GAAU;EAChE;CACD,SAAS;EAAE,OAAO;EAAY,eAAe,EAAE,MAAM,WAAW;EAAE;CAClE,MAAM;EAAE,OAAO;EAAQ,eAAe,EAAE,MAAM,QAAQ;EAAE;CACxD,QAAQ;EAAE,OAAO;EAAU,eAAe;GAAE,MAAM;GAAU,SAAS,EAAE;GAAE;EAAE;CAC5E;AAED,SAAgB,eACd,QACqD;AACrD,QAAO,OAAO,SAAS;;AAGzB,SAAgB,eACd,QACqD;AACrD,QAAO,OAAO,SAAS;;;;ACxDzB,MAAa,4BAA4B;CACvC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD;AAED,MAAa,4BAA4B;CACvC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD;AAED,MAAa,wBAAwB,EAAE,KAAK,0BAA0B;AAEtE,MAAa,wBAAwB,EAAE,KAAK,0BAA0B;AAMtE,MAAa,uBAAwD;CACnE,OAAO;CACP,OAAO;CACP,YAAY;CACZ,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACR;AAED,MAAa,2BAA4D;CACvE,OAAO;CACP,OAAO;CACP,YAAY;CACZ,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACR;AAED,MAAa,kBAAwE;CACnF,OAAO;CACP,OAAO;CACP,YAAY;CACZ,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACP,OAAO,KAAA;CACR;AAED,MAAa,oBAAuE;CAClF,IAAI;CACJ,IAAI;CACL;AAED,MAAa,YAAY,EAAE,KAAK;CAAC;CAAY;CAAgB;CAAW,CAAC;AAIzE,MAAa,iBAA6C;CACxD;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD"}