@read-frog/definitions 0.1.4 → 0.3.0
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 +772 -21
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +840 -516
- package/dist/index.js.map +1 -1
- package/package.json +21 -9
- package/src/constants/dictionary.ts +1 -1
- package/src/constants/notebase-column.ts +2 -0
- package/src/index.ts +5 -2
- package/src/schemas/cell-value.ts +4 -4
- package/src/types/card.ts +73 -0
- package/src/types/language-names/en.ts +183 -0
- package/src/types/language-names/locale.ts +183 -0
- package/src/types/language-names/zh.ts +183 -0
- package/src/types/languages.ts +3 -363
- package/src/types/{column.ts → notebase-column.ts} +14 -14
- package/src/types/srs.ts +68 -0
- package/src/utils/srs-day.test.ts +132 -0
- package/src/utils/srs-day.ts +60 -0
- package/src/constants/column.ts +0 -2
package/dist/index.js.map
CHANGED
|
@@ -1 +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","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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E,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"}
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../src/constants/app.ts","../src/constants/auth.ts","../src/constants/beta-access.ts","../src/constants/dictionary.ts","../src/constants/notebase-column.ts","../src/constants/url.ts","../src/schemas/cell-value.ts","../src/schemas/version.ts","../src/types/card.ts","../src/types/language-names/en.ts","../src/types/language-names/locale.ts","../src/types/language-names/zh.ts","../src/types/languages.ts","../src/types/notebase-column.ts","../src/types/srs.ts","../src/utils/srs-day.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","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 NOTEBASE_COLUMN_MIN_WIDTH = 100\nexport const NOTEBASE_COLUMN_MAX_WIDTH = 500\n","export const CHROME_EXTENSION_ORIGIN = \"chrome-extension://modkelfkcfjpgbfmnbnllalkiogfofhb\"\nexport const EDGE_EXTENSION_ORIGIN = \"extension://cbcbomlgikfbdnoaohcjfledcoklcjbo\"\n","import type { NotebaseColumnConfig } from \"#/types/notebase-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: NotebaseColumnConfig): 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: NotebaseColumnConfig }>,\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: NotebaseColumnConfig }>,\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\nexport const CARD_STATE_VALUES = [\n \"new\",\n \"learning\",\n \"review\",\n \"relearning\",\n] as const\n\nexport const SCHEDULE_STATUS_VALUES = [\n \"new\",\n \"learning\",\n \"review\",\n \"suspended\",\n \"buried\",\n] as const\n\nexport const cardStateSchema = z.enum(CARD_STATE_VALUES)\nexport type CardState = z.infer<typeof cardStateSchema>\n\nexport const scheduleStatusSchema = z.enum(SCHEDULE_STATUS_VALUES)\nexport type ScheduleStatus = z.infer<typeof scheduleStatusSchema>\n\nexport const CARD_STATE_TO_SCHEDULE_STATUS = {\n new: \"new\",\n learning: \"learning\",\n relearning: \"learning\",\n review: \"review\",\n} satisfies Record<CardState, Extract<ScheduleStatus, \"new\" | \"learning\" | \"review\">>\n\nexport const basicCardTemplateConfigSchema = z.object({\n type: z.literal(\"basic\"),\n frontPattern: z.string().min(1),\n backPattern: z.string().min(1),\n}).strict()\n\nexport const cardTemplateConfigSchema = z.discriminatedUnion(\"type\", [\n basicCardTemplateConfigSchema,\n])\n\nexport type BasicCardTemplateConfig = z.infer<typeof basicCardTemplateConfigSchema>\nexport type CardTemplateConfig = z.infer<typeof cardTemplateConfigSchema>\n\nexport const cardIdentityShape = {\n id: z.uuid(),\n notebaseId: z.uuid(),\n notebaseRowId: z.uuid(),\n templateId: z.uuid(),\n variantKey: z.string(),\n} satisfies z.ZodRawShape\n\nexport const cardReviewStateShape = {\n state: cardStateSchema,\n scheduleStatus: scheduleStatusSchema,\n dueAt: z.coerce.date(),\n lastReviewTime: z.coerce.date().nullable(),\n stability: z.number(),\n difficulty: z.number(),\n step: z.number().int(),\n lapses: z.number().int(),\n reps: z.number().int(),\n} satisfies z.ZodRawShape\n\nexport const cardMemoryStateShape = {\n ...cardReviewStateShape,\n buriedAt: z.coerce.date().nullable(),\n} satisfies z.ZodRawShape\n\nexport const cardReviewStateSchema = z.object(cardReviewStateShape)\nexport type CardReviewState = z.infer<typeof cardReviewStateSchema>\n\nexport const cardMemoryStateSchema = z.object(cardMemoryStateShape)\nexport type CardMemoryState = z.infer<typeof cardMemoryStateSchema>\n","import type { LangCodeISO6393 } from \"../languages\"\n\nexport const LANG_CODE_TO_EN_NAME = {\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} satisfies Record<LangCodeISO6393, string>\n","import type { LangCodeISO6393 } from \"../languages\"\n\nexport const LANG_CODE_TO_LOCALE_NAME = {\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} satisfies Record<LangCodeISO6393, string>\n","import type { LangCodeISO6393 } from \"../languages\"\n\nexport const LANG_CODE_TO_ZH_NAME = {\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} satisfies Record<LangCodeISO6393, string>\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 * from \"./language-names/en\"\nexport * from \"./language-names/locale\"\nexport * from \"./language-names/zh\"\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","import { z } from \"zod\"\n\n// Source of truth - can be iterated at runtime\nexport const NOTEBASE_COLUMN_TYPES = [\"string\", \"number\", \"boolean\", \"date\", \"select\"] as const\n\nexport type NotebaseColumnType = (typeof NOTEBASE_COLUMN_TYPES)[number]\n\nexport const notebaseSelectOptionSchema = 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 notebaseColumnConfigSchema = 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(notebaseSelectOptionSchema).default([]),\n }),\n])\n\nexport type NotebaseColumnConfig = z.infer<typeof notebaseColumnConfigSchema>\nexport type NotebaseSelectOption = z.infer<typeof notebaseSelectOptionSchema>\n\n// Column type metadata (label, default config)\nexport const NOTEBASE_COLUMN_TYPE_INFO: Record<\n NotebaseColumnType,\n { label: string, defaultConfig: NotebaseColumnConfig }\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: NotebaseColumnConfig,\n): config is Extract<NotebaseColumnConfig, { type: \"number\" }> {\n return config.type === \"number\"\n}\n\nexport function isSelectConfig(\n config: NotebaseColumnConfig,\n): config is Extract<NotebaseColumnConfig, { type: \"select\" }> {\n return config.type === \"select\"\n}\n","import { z } from \"zod\"\n\nconst srsStepPattern = /^[1-9]\\d*[mhd]$/\n\nexport const REVIEW_RATING_VALUES = [\n \"again\",\n \"hard\",\n \"good\",\n \"easy\",\n] as const\n\nexport const reviewRatingSchema = z.enum(REVIEW_RATING_VALUES)\nexport type ReviewRating = z.infer<typeof reviewRatingSchema>\n\nexport const SRS_REVIEW_DURATION_MS_MAX = 180_000\n\nexport const srsStepSchema = z.templateLiteral([\n z.number(),\n z.enum([\"m\", \"h\", \"d\"]),\n]).refine(\n step => srsStepPattern.test(step),\n \"Expected a positive integer step like \\\"1m\\\", \\\"10m\\\", \\\"1h\\\", or \\\"1d\\\"\",\n)\n\nexport type SrsStep = z.infer<typeof srsStepSchema>\n\nexport const srsWeightsSchema = z.array(z.number())\n\nexport const schedulingParamsShape = {\n newPerDay: z.number().int().gte(-1),\n reviewsPerDay: z.number().int().gte(-1),\n desiredRetention: z.number().gt(0).lte(1),\n enableShortTerm: z.boolean(),\n maximumInterval: z.number().int().positive(),\n learningSteps: z.array(srsStepSchema),\n relearningSteps: z.array(srsStepSchema),\n leechThreshold: z.number().int().positive(),\n enableFuzz: z.boolean(),\n weights: srsWeightsSchema.optional(),\n} satisfies z.ZodRawShape\n\nexport const schedulingParamsSchema = z.object(schedulingParamsShape).strict()\nexport type SchedulingParams = z.infer<typeof schedulingParamsSchema>\n\nexport const DEFAULT_SRS_SCHEDULING_PARAMS = {\n newPerDay: 20,\n reviewsPerDay: 200,\n desiredRetention: 0.9,\n enableShortTerm: true,\n maximumInterval: 36500,\n learningSteps: [\"1m\", \"10m\"],\n relearningSteps: [\"10m\"],\n leechThreshold: 8,\n enableFuzz: false,\n} satisfies SchedulingParams\n\nexport const fsrsReviewLogSnapshotSchema = z.object({\n rating: z.union([z.literal(1), z.literal(2), z.literal(3), z.literal(4)]),\n state: z.union([z.literal(0), z.literal(1), z.literal(2), z.literal(3)]),\n dueAt: z.string(),\n stability: z.number(),\n difficulty: z.number(),\n scheduledDays: z.number(),\n learningSteps: z.number(),\n review: z.string(),\n}).strict()\n\nexport type FsrsReviewLogSnapshot = z.infer<typeof fsrsReviewLogSnapshotSchema>\n","import { tz } from \"@date-fns/tz\"\nimport { addDays, addHours, differenceInCalendarDays, isSameDay, startOfDay, subHours } from \"date-fns\"\n\nexport const SRS_DAY_START_HOUR = 4\n\nexport function getSrsDayStart(\n date: Date,\n timezone: string,\n startHour: number = SRS_DAY_START_HOUR,\n): Date {\n const timezoneContext = tz(timezone)\n const shiftedDate = subHours(date, startHour, { in: timezoneContext })\n const shiftedDayStart = startOfDay(shiftedDate, { in: timezoneContext })\n\n return new Date(addHours(shiftedDayStart, startHour, { in: timezoneContext }).getTime())\n}\n\nexport function getSrsDayEnd(\n date: Date,\n timezone: string,\n startHour: number = SRS_DAY_START_HOUR,\n): Date {\n const timezoneContext = tz(timezone)\n const shiftedDate = subHours(date, startHour, { in: timezoneContext })\n const nextShiftedDayStart = addDays(startOfDay(shiftedDate, { in: timezoneContext }), 1, {\n in: timezoneContext,\n })\n\n return new Date(addHours(nextShiftedDayStart, startHour, { in: timezoneContext }).getTime())\n}\n\nexport function isSameSrsDay(\n left: Date,\n right: Date,\n timezone: string,\n startHour: number = SRS_DAY_START_HOUR,\n): boolean {\n const timezoneContext = tz(timezone)\n\n return isSameDay(\n subHours(left, startHour, { in: timezoneContext }),\n subHours(right, startHour, { in: timezoneContext }),\n { in: timezoneContext },\n )\n}\n\nexport function differenceInSrsDays(\n later: Date,\n earlier: Date,\n timezone: string,\n startHour: number = SRS_DAY_START_HOUR,\n): number {\n const timezoneContext = tz(timezone)\n\n return differenceInCalendarDays(\n subHours(later, startHour, { in: timezoneContext }),\n subHours(earlier, startHour, { in: timezoneContext }),\n { in: timezoneContext },\n )\n}\n"],"mappings":"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ACrC;AAED,MAAa,wBAAwB,EAAE,OAAO,qBAAqB;AAGnE,MAAa,wBAAwB,EAAE,OAAO,qBAAqB;;;ACrEnE,MAAa,uBAAuB;CAClC,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;;;ACpLD,MAAa,2BAA2B;CACtC,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;;;ACpLD,MAAa,uBAAuB;CAClC,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;;;ACpLD,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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"}
|