From f0f6b5a233473021a7e40e12bc83deac865db640 Mon Sep 17 00:00:00 2001 From: dadukhankevin Date: Wed, 4 Feb 2026 11:15:08 -0600 Subject: [PATCH 01/13] deleted clearly unused code --- src/extension.ts | 42 -- src/projectManager/fileTypeMap_deprecated.ts | 686 ------------------ src/projectManager/sourceTextImporter.ts | 155 ---- src/projectManager/translationTextImporter.ts | 120 --- .../VideoEditor/VideoEditorProvider.ts | 40 - .../VideoPlayer/VideoDocumentProvider.ts | 28 - .../VideoPlayer/VideoPlayerProvider.ts | 56 -- src/providers/VideoPlayer/registerCommands.ts | 34 - src/tsServer/connection.ts | 99 --- src/tsServer/forecasting.ts | 65 -- src/tsServer/registerClientCommands.ts | 144 ---- src/tsServer/registerClientOnRequests.ts | 183 ----- src/tsServer/registerLanguageServer.ts | 181 ----- src/tsServer/server.ts | 477 ------------ src/tsServer/spellCheck.ts | 173 ----- src/tsServer/types.ts | 9 - src/utils/appConfig.ts | 58 -- webpack.config.js | 40 - 18 files changed, 2590 deletions(-) delete mode 100644 src/projectManager/fileTypeMap_deprecated.ts delete mode 100644 src/projectManager/sourceTextImporter.ts delete mode 100644 src/projectManager/translationTextImporter.ts delete mode 100644 src/providers/VideoEditor/VideoEditorProvider.ts delete mode 100644 src/providers/VideoPlayer/VideoDocumentProvider.ts delete mode 100644 src/providers/VideoPlayer/VideoPlayerProvider.ts delete mode 100644 src/providers/VideoPlayer/registerCommands.ts delete mode 100644 src/tsServer/connection.ts delete mode 100644 src/tsServer/forecasting.ts delete mode 100644 src/tsServer/registerClientCommands.ts delete mode 100644 src/tsServer/registerClientOnRequests.ts delete mode 100644 src/tsServer/registerLanguageServer.ts delete mode 100644 src/tsServer/server.ts delete mode 100644 src/tsServer/spellCheck.ts delete mode 100644 src/tsServer/types.ts delete mode 100644 src/utils/appConfig.ts diff --git a/src/extension.ts b/src/extension.ts index e1758b1cc..428f3d5f5 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -3,17 +3,11 @@ import { registerProviders } from "./providers/registerProviders"; import { GlobalProvider } from "./globalProvider"; import { registerCommands } from "./activationHelpers/contextAware/commands"; import { initializeWebviews } from "./activationHelpers/contextAware/webviewInitializers"; -import { registerLanguageServer } from "./tsServer/registerLanguageServer"; -import { registerClientCommands } from "./tsServer/registerClientCommands"; -import registerClientOnRequests from "./tsServer/registerClientOnRequests"; import { registerSmartEditCommands } from "./smartEdits/registerSmartEditCommands"; -import { LanguageClient } from "vscode-languageclient/node"; import { registerProjectManager } from "./projectManager"; import { temporaryMigrationScript_checkMatthewNotebook, migration_changeDraftFolderToFilesFolder, - migration_chatSystemMessageSetting, - migration_chatSystemMessageToMetadata, migration_lineNumbersSettings, migration_editHistoryFormat, migration_addMilestoneCells, @@ -68,7 +62,6 @@ import { } from "./projectManager/utils/migrationUtils"; import { initializeAudioProcessor } from "./utils/audioProcessor"; import { initializeAudioMerger } from "./utils/audioMerger"; -import * as fs from "fs"; import * as os from "os"; import * as path from "path"; @@ -172,8 +165,6 @@ declare global { var db: Database | undefined; } -let client: LanguageClient | undefined; -let clientCommandsDisposable: vscode.Disposable; let autoCompleteStatusBarItem: StatusBarItem; // let commitTimeout: any; // const COMMIT_DELAY = 5000; // Delay in milliseconds @@ -782,36 +773,14 @@ async function initializeExtension(context: vscode.ExtensionContext, metadataExi startRealtimeStep("Initializing Language Server"); const lsStart = globalThis.performance.now(); - client = await registerLanguageServer(context); const lsDuration = globalThis.performance.now() - lsStart; debug(`[Activation] Start Language Server: ${lsDuration.toFixed(2)}ms`); - // Always register client commands to prevent "command not found" errors // If language server failed, commands will return appropriate fallbacks const regServicesStart = globalThis.performance.now(); - clientCommandsDisposable = registerClientCommands(context, client); - context.subscriptions.push(clientCommandsDisposable); const regServicesDuration = globalThis.performance.now() - regServicesStart; debug(`[Activation] Register Language Services: ${regServicesDuration.toFixed(2)}ms`); - if (client && global.db) { - const optimizeStart = globalThis.performance.now(); - try { - await registerClientOnRequests(client, global.db); - await client.start(); - } catch (error) { - console.error("Error registering client requests:", error); - } - const optimizeDuration = globalThis.performance.now() - optimizeStart; - debug(`[Activation] Optimize Language Processing: ${optimizeDuration.toFixed(2)}ms`); - } else { - if (!client) { - console.warn("Language server failed to initialize - spellcheck and alert features will use fallback behavior"); - } - if (!global.db) { - console.info("[Database] Dictionary not available - dictionary features will be limited. This is normal during initial setup or if database initialization failed."); - } - } finishRealtimeStep(); const totalLsDuration = globalThis.performance.now() - totalLsStart; debug(`[Activation] Language Server Ready: ${totalLsDuration.toFixed(2)}ms`); @@ -984,17 +953,6 @@ export function deactivate() { clearInterval(currentStepTimer); currentStepTimer = null; } - - if (clientCommandsDisposable) { - clientCommandsDisposable.dispose(); - } - if (client) { - return client.stop(); - } - if (global.db) { - global.db.close(); - } - // Clean up the global index manager import("./activationHelpers/contextAware/contentIndexes/indexes/sqliteIndexManager").then( ({ clearSQLiteIndexManager }) => { diff --git a/src/projectManager/fileTypeMap_deprecated.ts b/src/projectManager/fileTypeMap_deprecated.ts deleted file mode 100644 index bd24fac0f..000000000 --- a/src/projectManager/fileTypeMap_deprecated.ts +++ /dev/null @@ -1,686 +0,0 @@ -import * as vscode from "vscode"; -import { WebVTTParser } from "webvtt-parser"; -import { CodexContentSerializer, CodexNotebookReader } from "../serializer"; -import { - SupportedFileExtension, - FileType, - FileTypeMap, - CustomNotebookCellData, - ImportedContent, -} from "../../types"; -import { CodexCellTypes } from "../../types/enums"; -import * as fs from "fs/promises"; // Add this import if not already present -import * as path from "path"; -import * as grammar from "usfm-grammar"; -import { ParsedUSFM } from "usfm-grammar"; -import { getNotebookMetadataManager } from "../utils/notebookMetadataManager"; - -const DEBUG_MODE = false; // Set this to false to disable debug logging - -function debug(...args: any[]): void { - if (DEBUG_MODE) { - console.log("[TranslationImporter]", ...args); - } -} - -interface AlignedCell { - notebookCell: vscode.NotebookCell | null; - importedContent: ImportedContent; - isParatext?: boolean; - // Added: Indicates if this cell is an additional overlap - isAdditionalOverlap?: boolean; -} - -type CellAligner = ( - notebookCells: vscode.NotebookCell[], - importedContent: ImportedContent[] -) => Promise; - -export const fileTypeMap: FileTypeMap = { - vtt: "subtitles", - txt: "plaintext", - usfm: "usfm", - usx: "usx", - sfm: "usfm", - SFM: "usfm", - USFM: "usfm", - codex: "codex", -}; - -// interface AlignedCell { -// notebookCell: vscode.NotebookCell | null; -// importedContent: ImportedContent; -// isParatext?: boolean; -// // Added: Indicates if this cell is an additional overlap -// isAdditionalOverlap?: boolean; -// } - -export async function importTranslations( - context: vscode.ExtensionContext, - fileUri: vscode.Uri, - sourceNotebookId: string -): Promise { - debug("Starting importTranslations", { fileUri: fileUri.toString(), sourceNotebookId }); - - const fileExtension = fileUri.fsPath.split(".").pop()?.toLowerCase() as SupportedFileExtension; - - debug("File extension", fileExtension); - - let importedContent: ImportedContent[] = []; - let cellAligner: CellAligner; - let importedVttData: { - cues: { text: string; startTime: number; endTime: number; id: string; }[]; - } = { - cues: [], - }; - - try { - const fileContent = await vscode.workspace.fs.readFile(fileUri); - const fileContentString = new TextDecoder().decode(fileContent); - - debug("File content (first 100 characters):", fileContentString.substring(0, 100)); - debug("File content length:", fileContentString.length); - - const fileType = (fileExtension as FileType) || "plaintext"; - - debug("File type", fileType); - - const parseVtt = (rawFileContent: string) => { - debug("Parsing VTT content"); - debug("VTT content (first 100 characters):", rawFileContent.substring(0, 100)); - const vttData = new WebVTTParser().parse(rawFileContent); - debug("Parsed VTT data", vttData); - return vttData; - }; - - switch (fileType) { - case "subtitles": - importedVttData = parseVtt(fileContentString); - cellAligner = alignVTTCells; - break; - case "plaintext": - importedContent = await parsePlaintext(fileUri); - cellAligner = alignPlaintextCells; - break; - case "usfm": - importedContent = await parseUSFM(fileUri); - cellAligner = alignUSFMCells; - break; - case "codex": - importedContent = await parseCodex(fileUri); - cellAligner = alignCodexCells; - break; - default: - debug("Unsupported file type", fileType); - vscode.window.showErrorMessage("Unsupported file type."); - return; - } - - if (importedVttData.cues.length > 0) { - debug("Imported VTT data", importedVttData); - importedContent = importedVttData.cues.map((cue) => ({ - id: cue.id, - content: cue.text, - startTime: cue.startTime, - endTime: cue.endTime, - })); - } - - if (importedContent.length === 0) { - debug("No content to import"); - vscode.window.showErrorMessage("No content to import."); - return; - } - - debug("Imported content length", importedContent.length); - - const metadataManager = getNotebookMetadataManager(); - await metadataManager.initialize(); - await metadataManager.loadMetadata(); - - const sourceMetadata = metadataManager.getMetadataById(sourceNotebookId); - - if (!sourceMetadata) { - debug("No matching metadata found for the source notebook"); - vscode.window.showErrorMessage("No matching metadata found for the source notebook."); - return; - } - - if (!sourceMetadata.codexFsPath) { - debug("No .codex file found. Creating a new one."); - const baseName = sourceMetadata.originalName; - const codexUri = vscode.Uri.joinPath( - vscode.workspace.workspaceFolders![0].uri, - "files", - "target", - `${baseName}.codex` - ); - sourceMetadata.codexFsPath = codexUri.fsPath; - - // Create an empty notebook data - const serializer = new CodexContentSerializer(); - const emptyNotebookData = new vscode.NotebookData([]); - emptyNotebookData.metadata = {}; // Add any required metadata here - const emptyNotebookBytes = await serializer.serializeNotebook( - emptyNotebookData, - new vscode.CancellationTokenSource().token - ); - await vscode.workspace.fs.writeFile(codexUri, emptyNotebookBytes); - - await metadataManager.addOrUpdateMetadata(sourceMetadata); - } - - const codexFile = sourceMetadata.codexFsPath; - debug("Matching .codex file found or created", codexFile); - - await insertZeroDrafts(importedContent, cellAligner, codexFile); - - // Update metadata after insertion - metadataManager.addOrUpdateMetadata({ - ...sourceMetadata, - codexFsPath: codexFile, - }); - - vscode.window.showInformationMessage("Translation imported successfully."); - debug("Translation import completed successfully"); - } catch (error: any) { - debug("Error during import:", error); - vscode.window.showErrorMessage(`Error during import: ${error.message}`); - return; - } -} - -async function insertZeroDrafts( - importedContent: ImportedContent[], - cellAligner: CellAligner, - codexFile: string -): Promise { - debug("Starting insertZeroDrafts"); - const codexNotebook = new CodexNotebookReader(vscode.Uri.file(codexFile)); - - const codexNotebookCells = await codexNotebook - .getCells() - .then((cells) => cells.filter((cell) => cell.kind === vscode.NotebookCellKind.Code)); - - debug("Codex notebook cells found", codexNotebookCells.length); - - const alignedCells = await cellAligner(codexNotebookCells, importedContent); - debug("Aligned cells", alignedCells.length); - - let insertedCount = 0; - let skippedCount = 0; - let paratextCount = 0; - let currentBook: string = ""; // To track the current book - let currentChapter: string | number = 0; // To track the current chapter, default to 0 for leading paratext - - const codexFileUri = vscode.Uri.file(codexFile); - const serializer = new CodexContentSerializer(); - const notebookData = await serializer.deserializeNotebook( - await vscode.workspace.fs.readFile(codexFileUri), - new vscode.CancellationTokenSource().token - ); - - const newCells: CustomNotebookCellData[] = []; - - for (const alignedCell of alignedCells) { - if (alignedCell.notebookCell && !alignedCell.isParatext) { - // Update currentBook and currentChapter based on non-paratext cells - const cellIdParts = alignedCell.notebookCell.metadata.id.split(" "); - currentBook = cellIdParts[0] || path.basename(codexFileUri.path).split(".")[0] || ""; - currentChapter = cellIdParts[1]?.split(":")[0] || "1"; - } - - if (alignedCell.isParatext) { - // Determine the section for the paratext cell - const section = currentChapter || "1"; - const paratextId = `${currentBook} ${section}:${alignedCell.importedContent.id}`; - - // Handle paratext cells - const newCellData: CustomNotebookCellData = { - kind: vscode.NotebookCellKind.Code, - languageId: "html", - value: alignedCell.importedContent.content, - metadata: { - type: CodexCellTypes.PARATEXT, - id: paratextId, // Ensure the ID starts with [book] [section] - data: { - startTime: alignedCell.importedContent.startTime, - endTime: alignedCell.importedContent.endTime, - }, - edits: [], - }, - }; - newCells.push(newCellData); - paratextCount++; - } else if (alignedCell.notebookCell) { - const cellContent = alignedCell.notebookCell.document.getText().trim(); - if (cellContent === "") { - // Insert content into empty cell - const updatedCellData: CustomNotebookCellData = { - kind: vscode.NotebookCellKind.Code, - languageId: "html", - value: alignedCell.importedContent.content, - metadata: { - ...alignedCell.notebookCell.metadata, - type: CodexCellTypes.TEXT, - id: alignedCell.importedContent.id, // Use the potentially nested ID - data: { - ...alignedCell.notebookCell.metadata.data, - startTime: alignedCell.importedContent.startTime, - endTime: alignedCell.importedContent.endTime, - }, - edits: [], - isLocked: alignedCell.notebookCell.metadata?.isLocked ?? false, - }, - }; - newCells.push(updatedCellData); - insertedCount++; - } else { - // Keep the existing cell - const existingCellData = notebookData.cells.find( - (cell) => cell.metadata.id === alignedCell.notebookCell?.metadata.id - ); - if (existingCellData) { - newCells.push(existingCellData); - } - skippedCount++; - } - } - } - - // Replace the cells in the notebook with the new order - notebookData.cells = newCells; - - const updatedNotebookContent = await serializer.serializeNotebook( - notebookData, - new vscode.CancellationTokenSource().token - ); - - await vscode.workspace.fs.writeFile(codexFileUri, updatedNotebookContent); - - debug("Insertion summary", { - inserted: insertedCount, - skipped: skippedCount, - paratext: paratextCount, - }); - vscode.window.showInformationMessage( - `Inserted ${insertedCount} drafts, added ${paratextCount} paratext cells, skipped ${skippedCount} cells.` - ); -} - -function timestampMismatchResolver( - notebookCell: vscode.NotebookCell, - importedContent: ImportedContent -): boolean { - debug("Resolving timestamp mismatch", { - cellMetadata: notebookCell.metadata, - importedContent, - }); - // Placeholder function for resolving timestamp mismatches - // Implement more sophisticated logic here - return true; -} - -function calculateOverlap( - sourceStart: number, - sourceEnd: number, - targetStart: number, - targetEnd: number -): number { - const overlapStart = Math.max(sourceStart, targetStart); - const overlapEnd = Math.min(sourceEnd, targetEnd); - return Math.max(0, overlapEnd - overlapStart); -} - -async function alignVTTCells( - notebookCells: vscode.NotebookCell[], - importedContent: ImportedContent[] -): Promise { - debug("Aligning VTT cells with improved overlap strategy and order preservation", { - notebookCellsCount: notebookCells.length, - importedContentCount: importedContent.length, - }); - - const alignedCells: AlignedCell[] = []; - let totalOverlaps = 0; - - // Map to track how many overlaps each source cell has - const sourceCellOverlapCount: { [key: string]: number; } = {}; - - importedContent.forEach((importedItem) => { - if (!importedItem.content.trim()) { - // Skip empty lines - return; - } - - const sourceCell = notebookCells.find((cell) => { - const sourceStart = cell.metadata?.data?.startTime; - const sourceEnd = cell.metadata?.data?.endTime; - if ( - sourceStart === undefined || - sourceEnd === undefined || - importedItem.startTime === undefined || - importedItem.endTime === undefined - ) { - return false; - } - const overlap = calculateOverlap( - sourceStart, - sourceEnd, - importedItem.startTime, - importedItem.endTime - ); - return overlap > 0; - }); - - if (sourceCell) { - const sourceId = sourceCell.metadata.id; - if (!sourceCellOverlapCount[sourceId]) { - sourceCellOverlapCount[sourceId] = 1; - alignedCells.push({ - notebookCell: sourceCell, - importedContent: { - ...importedItem, - id: sourceId, // Use the source cell's ID for the first overlap - }, - }); - } else { - sourceCellOverlapCount[sourceId]++; - const nestedId = `${sourceId}:${Date.now()}-${Math.random() - .toString(36) - .substr(2, 9)}`; - alignedCells.push({ - notebookCell: sourceCell, - isAdditionalOverlap: true, - importedContent: { - ...importedItem, - id: nestedId, - }, - }); - } - totalOverlaps++; - } else { - // If no matching cell, mark as paratext - const paratextId = `paratext-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`; - alignedCells.push({ - notebookCell: null, - importedContent: { ...importedItem, id: paratextId }, - isParatext: true, - }); - } - }); - - if (totalOverlaps === 0 && importedContent.length > 0) { - vscode.window.showErrorMessage( - "No overlapping subtitles found. Please check the selected file." - ); - throw new Error("No overlapping subtitles found."); - } - - return alignedCells; -} - -async function alignPlaintextCells( - notebookCells: vscode.NotebookCell[], - importedContent: ImportedContent[] -): Promise { - debug("Aligning plaintext cells by matching cell IDs", { - notebookCellsCount: notebookCells.length, - importedContentCount: importedContent.length, - }); - - const alignedCells: AlignedCell[] = []; - let totalMatches = 0; - - const cellIdRegex = /^(\w+)\s+(\w+:\w+)(?::\w+)*\s+(.*)$/; - - importedContent.forEach((importedItem, index) => { - if (!importedItem.content.trim()) { - // Skip empty lines - return; - } - - const match = importedItem.content.match(cellIdRegex); - if (match) { - const [, file, cellId, content] = match; - const notebookCell = notebookCells.find((cell) => cell.metadata.id === cellId); - - if (notebookCell) { - alignedCells.push({ - notebookCell, - importedContent: { ...importedItem, content }, - }); - totalMatches++; - } else { - // If no matching cell, mark as paratext - alignedCells.push({ - notebookCell: null, - importedContent: { ...importedItem, content }, - isParatext: true, - }); - } - } else { - // If line doesn't match the pattern, treat it as paratext - alignedCells.push({ - notebookCell: null, - importedContent: importedItem, - isParatext: true, - }); - } - }); - - if (totalMatches === 0 && importedContent.length > 0) { - vscode.window.showErrorMessage( - "No matching cell IDs found in plaintext. Please check the file format." - ); - throw new Error("No matching cell IDs found in plaintext."); - } - - return alignedCells; -} - -async function alignCodexCells( - notebookCells: vscode.NotebookCell[], - importedContent: ImportedContent[] -): Promise { - debug("Aligning Codex cells by matching cell IDs", { - notebookCellsCount: notebookCells.length, - importedContentCount: importedContent.length, - }); - - const alignedCells: AlignedCell[] = []; - let totalMatches = 0; - - importedContent.forEach((importedItem) => { - if (!importedItem.content.trim()) { - // Skip empty lines - return; - } - - const notebookCell = notebookCells.find((cell) => cell.metadata.id === importedItem.id); - if (notebookCell) { - alignedCells.push({ - notebookCell, - importedContent: importedItem, - }); - totalMatches++; - } - }); - - if (totalMatches === 0 && importedContent.length > 0) { - vscode.window.showErrorMessage( - "No matching cell IDs found in Codex. Please check the file format." - ); - throw new Error("No matching cell IDs found in Codex."); - } - - return alignedCells; -} - -async function alignUSFMCells( - notebookCells: vscode.NotebookCell[], - importedContent: ImportedContent[] -): Promise { - debug("Aligning USFM cells by matching verse identifiers", { - notebookCellsCount: notebookCells.length, - importedContentCount: importedContent.length, - }); - - const alignedCells: AlignedCell[] = []; - let totalMatches = 0; - - importedContent.forEach((importedItem) => { - if (!importedItem.content.trim()) { - // Skip empty lines - return; - } - - const verseId = importedItem.id; // Assuming 'id' is in the format 'BOOK CHAPTER:VERSE' - - const notebookCell = notebookCells.find((cell) => cell.metadata.id === verseId); - - if (notebookCell) { - alignedCells.push({ - notebookCell, - importedContent: importedItem, - }); - totalMatches++; - } else { - // If no matching cell, mark as paratext - alignedCells.push({ - notebookCell: null, - importedContent: importedItem, - isParatext: true, - }); - } - }); - - if (totalMatches === 0 && importedContent.length > 0) { - vscode.window.showErrorMessage( - "No matching verse identifiers found in USFM. Please check the file format." - ); - throw new Error("No matching verse identifiers found in USFM."); - } - - return alignedCells; -} - -async function parsePlaintext(fileUri: vscode.Uri): Promise { - debug("Parsing plaintext file", fileUri.toString()); - - const importedContent: ImportedContent[] = []; - - try { - const fileContent = await vscode.workspace.fs.readFile(fileUri); - const fileContentString = new TextDecoder("utf-8").decode(fileContent); - const lines = fileContentString.split(/\r?\n/); - - const cellIdRegex = /^(\w+)\s+(\w+:\w+)(?::\w+)*\s+(.*)$/; - - for (const line of lines) { - if (!line.trim()) { - // Skip empty lines - continue; - } - - const match = line.match(cellIdRegex); - if (match) { - const [, file, cellId, content] = match; - importedContent.push({ - id: cellId, - content: content.trim(), - }); - } else { - // If line doesn't match the pattern, treat it as paratext - importedContent.push({ - id: `paratext-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`, - content: line.trim(), - }); - } - } - - debug("Parsed plaintext content", importedContent); - } catch (error: any) { - debug("Error parsing plaintext file:", error); - vscode.window.showErrorMessage(`Error parsing plaintext file: ${error.message}`); - } - - return importedContent; -} - -async function parseCodex(fileUri: vscode.Uri): Promise { - debug("Parsing Codex file", fileUri.toString()); - const importedContent: ImportedContent[] = []; - - try { - const fileContent = await vscode.workspace.fs.readFile(fileUri); - const serializer = new CodexContentSerializer(); - const notebookData = await serializer.deserializeNotebook( - fileContent, - new vscode.CancellationTokenSource().token - ); - - // Process each cell in the notebook - notebookData.cells.forEach((cell) => { - if (cell.metadata?.id && cell.value) { - importedContent.push({ - id: cell.metadata.id, - content: cell.value.trim(), - edits: cell.metadata.edits, - // Include any additional metadata if needed - startTime: cell.metadata.data?.startTime, - endTime: cell.metadata.data?.endTime, - }); - } - }); - - debug("Parsed Codex content", importedContent); - } catch (error: any) { - debug("Error parsing Codex file:", error); - vscode.window.showErrorMessage(`Error parsing Codex file: ${error.message}`); - } - - return importedContent; -} - -async function parseUSFM(fileUri: vscode.Uri): Promise { - debug("Parsing USFM file", fileUri.toString()); - - const importedContent: ImportedContent[] = []; - - try { - const fileContent = await vscode.workspace.fs.readFile(fileUri); - const fileContentString = new TextDecoder("utf-8").decode(fileContent); - - // Use usfm-grammar in relaxed mode for parsing - const relaxedUsfmParser = new grammar.USFMParser(fileContentString, grammar.LEVEL.RELAXED); - const jsonOutput = relaxedUsfmParser.toJSON() as any as ParsedUSFM; - - const bookCode = jsonOutput.book.bookCode; - jsonOutput.chapters.forEach((chapter: any) => { - const chapterNumber = chapter.chapterNumber; - chapter.contents.forEach((content: any) => { - if (content.verseNumber !== undefined && content.verseText !== undefined) { - const verseId = `${bookCode} ${chapterNumber}:${content.verseNumber}`; - importedContent.push({ - id: verseId, - content: content.verseText.trim(), - }); - } else if (content.text && !content.marker) { - // Treat lines without a marker as paratext - importedContent.push({ - id: `paratext-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`, - content: content.text.trim(), - }); - } - }); - }); - - debug("Parsed USFM content", importedContent); - } catch (error: any) { - debug("Error parsing USFM file:", error); - vscode.window.showErrorMessage(`Error parsing USFM file: ${error.message}`); - } - - return importedContent; -} diff --git a/src/projectManager/sourceTextImporter.ts b/src/projectManager/sourceTextImporter.ts deleted file mode 100644 index e92f2f1c7..000000000 --- a/src/projectManager/sourceTextImporter.ts +++ /dev/null @@ -1,155 +0,0 @@ -import { getWorkSpaceUri } from "./../utils/index"; -import * as vscode from "vscode"; -import { CustomNotebookMetadata, FileType, SupportedFileExtension } from "../../types"; -import { fileTypeMap } from "./fileTypeMap_deprecated"; -import { importLocalUsfmSourceBible, splitSourceFileByBook } from "../utils/codexNotebookUtils"; -import { - NotebookMetadataManager, - getNotebookMetadataManager, -} from "../utils/notebookMetadataManager"; -import { CodexContentSerializer } from "../serializer"; -import * as path from "path"; -import { formatJsonForNotebookFile } from "../utils/notebookFileFormattingUtils"; - -// Add this new function at the top level -export async function validateSourceFile(fileUri: vscode.Uri): Promise { - try { - const stat = await vscode.workspace.fs.stat(fileUri); - return stat.type === vscode.FileType.File; - } catch (error) { - console.error("Error validating source file:", error); - return false; - } -} - -function getFileNameFromUri(fileUri: vscode.Uri): string { - const fileNameWithExtension = path.basename(fileUri.fsPath); - const fileName = path.parse(fileNameWithExtension).name || fileNameWithExtension; - return fileName; -} - -// Helper function to wait for a file to exist -async function waitForFile(uri: vscode.Uri, timeout: number): Promise { - const start = Date.now(); - while (Date.now() - start < timeout) { - try { - await vscode.workspace.fs.stat(uri); - return; // File exists, exit the loop - } catch { - await new Promise((resolve) => setTimeout(resolve, 100)); // Wait 100ms before trying again - } - } - throw new Error(`Timeout waiting for file: ${uri.fsPath}`); -} - -async function addMetadataToSourceFile(sourceUri: vscode.Uri, metadata: any): Promise { - try { - const fileContent = await vscode.workspace.fs.readFile(sourceUri); - const sourceData = JSON.parse(new TextDecoder().decode(fileContent)); - - // Add metadata to the source data - sourceData.metadata = metadata; - - // Write the updated content back to the file - await vscode.workspace.fs.writeFile( - sourceUri, - new TextEncoder().encode(formatJsonForNotebookFile(sourceData)) - ); - } catch (error) { - console.error("Error adding metadata to source file:", error); - throw error; - } -} - -export async function createEmptyCodexNotebooks(sourceFileName: string): Promise { - const workspaceFolder = vscode.workspace.workspaceFolders?.[0]; - if (!workspaceFolder) { - throw new Error("No workspace folder found"); - } - - const sourceFolder = vscode.Uri.joinPath(workspaceFolder.uri, ".project", "sourceTexts"); - - // Find all .source files - const allSourceFiles = await vscode.workspace.findFiles( - new vscode.RelativePattern(sourceFolder, `*.source`) - ); - - // Filter for the specific source file we're interested in - const sourceFiles = allSourceFiles.filter( - (file) => path.basename(file.fsPath, ".source") === sourceFileName - ); - - if (sourceFiles.length === 0) { - throw new Error(`No source file found for ${sourceFileName} in ${sourceFolder.fsPath}`); - } - - const serializer = new CodexContentSerializer(); - - for (const sourceFile of sourceFiles) { - const sourceContent = await vscode.workspace.fs.readFile(sourceFile); - const sourceData = await serializer.deserializeNotebook( - sourceContent, - new vscode.CancellationTokenSource().token - ); - - const bookName = path.basename(sourceFile.path, path.extname(sourceFile.path)); - const codexUri = vscode.Uri.joinPath( - workspaceFolder.uri, - "files", - "target", - `${bookName}.codex` - ); - - // Create empty notebook data - const emptyNotebookData = new vscode.NotebookData( - sourceData.cells.map((cell) => ({ - ...cell, - value: "", // Empty content for target cells - })) - ); - emptyNotebookData.metadata = { - ...sourceData.metadata, - codexUri: codexUri, - }; - - const notebookContent = await serializer.serializeNotebook( - emptyNotebookData, - new vscode.CancellationTokenSource().token - ); - await vscode.workspace.fs.writeFile(codexUri, notebookContent); - - console.log(`Created empty Codex notebook: ${codexUri.fsPath}`); - } -} - -export async function processDownloadedBible(downloadedBibleFile: vscode.Uri): Promise { - const workspaceFolder = vscode.workspace.workspaceFolders?.[0]; - if (!workspaceFolder) { - throw new Error("No workspace folder found"); - } - - // Split the downloaded Bible file into individual book files - const createdSourceFiles = await splitSourceFileByBook( - downloadedBibleFile, - workspaceFolder.uri.fsPath, - "source" - ); - - // Wait for all source files to be created - await Promise.all(createdSourceFiles); - - // Create empty Codex notebooks for each newly created book file - for (const sourceFile of createdSourceFiles) { - const fileName = path.basename(sourceFile.path).split(".")[0] || ""; - - try { - await createEmptyCodexNotebooks(fileName); - } catch (error) { - console.error(`Error creating Codex notebook for ${fileName}: ${error}`); - } - } - - vscode.window.showInformationMessage( - "Bible processed and empty Codex notebooks created successfully." - ); -} diff --git a/src/projectManager/translationTextImporter.ts b/src/projectManager/translationTextImporter.ts deleted file mode 100644 index 47bab1594..000000000 --- a/src/projectManager/translationTextImporter.ts +++ /dev/null @@ -1,120 +0,0 @@ -import * as vscode from "vscode"; -import { - NotebookMetadataManager, - getNotebookMetadataManager, -} from "../utils/notebookMetadataManager"; -import { CodexContentSerializer } from "../serializer"; -import * as path from "path"; -import { WebVTTParser } from "webvtt-parser"; -import { SupportedFileExtension, FileTypeMap, ImportedContent } from "../../types"; -import { fileTypeMap } from "./fileTypeMap_deprecated"; - -export async function importTranslations( - context: vscode.ExtensionContext, - fileUri: vscode.Uri, - sourceNotebookId: string, - progress?: vscode.Progress<{ message?: string }>, - token?: vscode.CancellationToken -): Promise { - try { - progress?.report({ message: "Reading translation file..." }); - const fileContent = await vscode.workspace.fs.readFile(fileUri); - const fileContentString = new TextDecoder().decode(fileContent); - - const metadataManager = getNotebookMetadataManager(); - await metadataManager.initialize(); - await metadataManager.loadMetadata(); - - const sourceMetadata = metadataManager.getMetadataById(sourceNotebookId); - if (!sourceMetadata) { - throw new Error("Source notebook metadata not found"); - } - - const codexUri = vscode.Uri.file(sourceMetadata.codexFsPath!); - const serializer = new CodexContentSerializer(); - - progress?.report({ message: "Deserializing existing Codex notebook..." }); - if (!token) { - throw new Error("Cancellation token is required"); - } - const existingNotebook = await serializer.deserializeNotebook( - await vscode.workspace.fs.readFile(codexUri), - token - ); - - if (token?.isCancellationRequested) { - throw new vscode.CancellationError(); - } - - progress?.report({ message: "Merging translations into Codex notebook..." }); - const updatedNotebook = mergeTranslations(existingNotebook, fileContentString); - - if (token?.isCancellationRequested) { - throw new vscode.CancellationError(); - } - - progress?.report({ message: "Serializing updated Codex notebook..." }); - const serializedContent = await serializer.serializeNotebook(updatedNotebook, token); - - progress?.report({ message: "Writing updated Codex notebook to disk..." }); - await vscode.workspace.fs.writeFile(codexUri, serializedContent); - - vscode.window.showInformationMessage("Translations imported successfully."); - } catch (error) { - if (error instanceof vscode.CancellationError) { - vscode.window.showWarningMessage("Translation import was cancelled."); - } else { - vscode.window.showErrorMessage(`Error importing translations: ${error}`); - } - } -} - -function mergeTranslations(existingNotebook: any, fileContentString: string): any { - // Implement the logic to merge translations into the existing notebook - // This is a placeholder for the actual merging logic - return { - ...existingNotebook, - cells: existingNotebook.cells.map((cell: any) => ({ - ...cell, - value: `${cell.value}\n${fileContentString}`, // Example merge logic - })), - }; -} - -async function parseFileContent(fileUri: vscode.Uri): Promise { - const fileExtension = fileUri.fsPath.split(".").pop()?.toLowerCase() as SupportedFileExtension; - const fileContent = await vscode.workspace.fs.readFile(fileUri); - const fileContentString = new TextDecoder().decode(fileContent); - - switch (fileTypeMap[fileExtension]) { - case "subtitles": - return parseVTT(fileContentString); - case "plaintext": - return parsePlaintext(fileContentString); - case "usfm": - return parseUSFM(fileContentString); - default: - throw new Error("Unsupported file type."); - } -} - -function parseVTT(content: string): ImportedContent[] { - const parser = new WebVTTParser(); - const vttData = parser.parse(content); - return vttData.cues.map((cue) => ({ - id: cue.id, - content: cue.text, - startTime: cue.startTime, - endTime: cue.endTime, - })); -} - -function parsePlaintext(content: string): ImportedContent[] { - // Implement plaintext parsing logic - return []; -} - -function parseUSFM(content: string): ImportedContent[] { - // Implement USFM parsing logic - return []; -} diff --git a/src/providers/VideoEditor/VideoEditorProvider.ts b/src/providers/VideoEditor/VideoEditorProvider.ts deleted file mode 100644 index c505dd227..000000000 --- a/src/providers/VideoEditor/VideoEditorProvider.ts +++ /dev/null @@ -1,40 +0,0 @@ -import * as vscode from "vscode"; - -export class VideoEditorProvider implements vscode.CustomTextEditorProvider { - public static readonly viewType = "codex.videoEditor"; - - constructor(private readonly context: vscode.ExtensionContext) {} - - public async resolveCustomTextEditor( - document: vscode.TextDocument, - webviewPanel: vscode.WebviewPanel, - _token: vscode.CancellationToken - ): Promise { - // Set the HTML content for the webview - webviewPanel.webview.html = this.getHtmlForWebview(webviewPanel.webview); - - // Add your logic to handle video playback and interactions - // ... - } - - private getHtmlForWebview(webview: vscode.Webview): string { - // Add your HTML template for the video editor - return ` - - - - - - Video Editor - - - - - - `; - } -} diff --git a/src/providers/VideoPlayer/VideoDocumentProvider.ts b/src/providers/VideoPlayer/VideoDocumentProvider.ts deleted file mode 100644 index fdb832544..000000000 --- a/src/providers/VideoPlayer/VideoDocumentProvider.ts +++ /dev/null @@ -1,28 +0,0 @@ -import * as vscode from "vscode"; - -class VideoDocumentProvider implements vscode.TextDocumentContentProvider { - onDidChangeEmitter = new vscode.EventEmitter(); - onDidChange = this.onDidChangeEmitter.event; - - provideTextDocumentContent(uri: vscode.Uri): string { - console.log("provideTextDocumentContent called for video player", { uri }); - // Generate and return the content for the virtual video document - // - // - // - // - // - // Video Player - // - // - // - // - // - return `Hello world`; - } -} - -export default VideoDocumentProvider; diff --git a/src/providers/VideoPlayer/VideoPlayerProvider.ts b/src/providers/VideoPlayer/VideoPlayerProvider.ts deleted file mode 100644 index 31513e93b..000000000 --- a/src/providers/VideoPlayer/VideoPlayerProvider.ts +++ /dev/null @@ -1,56 +0,0 @@ -import * as vscode from "vscode"; -import { getWebviewHtml } from "../../utils/webviewTemplate"; -export class VideoPlayerProvider - implements vscode.TextDocumentContentProvider, vscode.CustomTextEditorProvider -{ - public static readonly viewType = "videoPlayerProvider"; - onDidChangeEmitter = new vscode.EventEmitter(); - onDidChange = this.onDidChangeEmitter.event; - - constructor(private readonly context: vscode.ExtensionContext) {} - - public async resolveCustomDocument( - document: vscode.CustomDocument, - cancellationToken: vscode.CancellationToken - ): Promise {} - - provideTextDocumentContent(uri: vscode.Uri): string { - return "Video Player Provider Content"; - } - async openCustomDocument( - uri: vscode.Uri, - openContext: vscode.CustomDocumentOpenContext, - token: vscode.CancellationToken - ): Promise { - return { uri, dispose: () => {} }; - } - - public async resolveCustomTextEditor( - document: vscode.TextDocument, - webviewPanel: vscode.WebviewPanel, - _token: vscode.CancellationToken - ): Promise { - webviewPanel.webview.options = { - enableScripts: true, - localResourceRoots: [this.context.extensionUri], - }; - - webviewPanel.webview.html = this.getHtmlForWebview(webviewPanel.webview); - - webviewPanel.webview.onDidReceiveMessage(async (message) => { - switch (message.command) { - case "updateTimeStamp": - console.log("updateTimeStamp", message.timeStamp); - break; - } - }); - } - - private getHtmlForWebview(webview: vscode.Webview): string { - return getWebviewHtml(webview, this.context, { - title: "Codex Video Player", - scriptPath: ["VideoPlayer", "index.js"], - csp: `default-src 'none'; style-src ${webview.cspSource} 'unsafe-inline'; script-src 'nonce-\${nonce}' https://static.cloudflareinsights.com; connect-src https://*.vscode-cdn.net https://*.frontierrnd.com; worker-src ${webview.cspSource}; img-src ${webview.cspSource} https:; font-src ${webview.cspSource};` - }); - } -} diff --git a/src/providers/VideoPlayer/registerCommands.ts b/src/providers/VideoPlayer/registerCommands.ts deleted file mode 100644 index 2d86290d2..000000000 --- a/src/providers/VideoPlayer/registerCommands.ts +++ /dev/null @@ -1,34 +0,0 @@ -import * as vscode from "vscode"; -import { VideoPlayerProvider } from "./VideoPlayerProvider"; -import { getWorkSpaceFolder } from "../../utils"; - -export const registerVideoPlayerCommands = (context: vscode.ExtensionContext) => { - // Register the custom editor provider for video playback - const videoEditorProvider = new VideoPlayerProvider(context); - context.subscriptions.push( - vscode.window.registerCustomEditorProvider( - VideoPlayerProvider.viewType, - videoEditorProvider, - { - supportsMultipleEditorsPerDocument: false, - webviewOptions: { - retainContextWhenHidden: true, - }, - } - ) - ); - - // Register a command to open the video player - context.subscriptions.push( - vscode.commands.registerCommand("codex-video-player.openVideoPlayer", (uri: vscode.Uri) => { - const workspaceFolder = getWorkSpaceFolder(); - if (workspaceFolder) { - vscode.commands.executeCommand( - "vscode.openWith", - uri, - VideoPlayerProvider.viewType - ); - } - }) - ); -}; diff --git a/src/tsServer/connection.ts b/src/tsServer/connection.ts deleted file mode 100644 index 14f325188..000000000 --- a/src/tsServer/connection.ts +++ /dev/null @@ -1,99 +0,0 @@ -import { - createConnection, - TextDocuments, - Diagnostic, - DiagnosticSeverity, - ProposedFeatures, - InitializeParams, - DidChangeConfigurationNotification, - CompletionItem, - TextDocumentPositionParams, - TextDocumentSyncKind, - InitializeResult, -} from "vscode-languageserver/node"; - -import { TextDocument } from "vscode-languageserver-textdocument"; -// import { SpellChecker } from '../server/spellCheck'; -// import { WordSuggestionProvider } from '../activationHelpers/contextAware/server/forecasting'; - -// Create a connection for the server, using Node's IPC as a transport. -// Also include all preview / proposed LSP features. -const connection = createConnection(ProposedFeatures.all); - -// Create a simple text document manager. -const documents: TextDocuments = new TextDocuments(TextDocument); - -let hasConfigurationCapability = false; -let hasWorkspaceFolderCapability = false; - -connection.onInitialize((params: InitializeParams) => { - const capabilities = params.capabilities; - - hasConfigurationCapability = !!( - capabilities.workspace && !!capabilities.workspace.configuration - ); - hasWorkspaceFolderCapability = !!( - capabilities.workspace && !!capabilities.workspace.workspaceFolders - ); - - const result: InitializeResult = { - capabilities: { - textDocumentSync: TextDocumentSyncKind.Incremental, - // Tell the client that this server supports code completion. - completionProvider: { - resolveProvider: true, - }, - }, - }; - if (hasWorkspaceFolderCapability) { - result.capabilities.workspace = { - workspaceFolders: { - supported: true, - }, - }; - } - return result; -}); - -connection.onInitialized(() => { - if (hasConfigurationCapability) { - // Register for all configuration changes. - connection.client.register(DidChangeConfigurationNotification.type, undefined); - } - if (hasWorkspaceFolderCapability) { - connection.workspace.onDidChangeWorkspaceFolders((_event) => { - connection.console.log("Workspace folder change event received."); - }); - } -}); - -// The content of a text document has changed. This event is emitted -// when the text document first opened or when its content has changed. -documents.onDidChangeContent((change) => { - validateTextDocument(change.document); -}); - -async function validateTextDocument(textDocument: TextDocument): Promise { - // In this function, you'll use your existing logic from SpellCheckDiagnosticsProvider - // to validate the document and send diagnostics. - // You'll need to adapt your existing code to work with the LSP types. -} - -connection.onDidChangeWatchedFiles((_change) => { - // Monitored files have change in VSCode - connection.console.log("We received a file change event"); -}); - -// This handler provides the initial list of the completion items. -connection.onCompletion((_textDocumentPosition: TextDocumentPositionParams): CompletionItem[] => { - // This is where you'll use your WordSuggestionProvider logic - // You'll need to adapt it to return CompletionItem[] instead of vscode.CompletionItem[] - return []; -}); - -// Make the text document manager listen on the connection -// for open, change and close text document events -documents.listen(connection); - -// Listen on the connection -connection.listen(); diff --git a/src/tsServer/forecasting.ts b/src/tsServer/forecasting.ts deleted file mode 100644 index 00f524b0c..000000000 --- a/src/tsServer/forecasting.ts +++ /dev/null @@ -1,65 +0,0 @@ -import * as fs from "fs"; -import * as path from "path"; - -class MarkovChain { - private forwardChain: Map>; - private backwardChain: Map>; - - constructor() { - this.forwardChain = new Map(); - this.backwardChain = new Map(); - } - - addPair(word1: string, word2: string, direction: "forward" | "backward") { - const chain = direction === "forward" ? this.forwardChain : this.backwardChain; - if (!chain.has(word1)) { - chain.set(word1, new Map()); - } - const nextWords = chain.get(word1)!; - nextWords.set(word2, (nextWords.get(word2) || 0) + 1); - } - - getNextWords(word: string, direction: "forward" | "backward"): string[] { - const chain = direction === "forward" ? this.forwardChain : this.backwardChain; - const nextWords = chain.get(word); - if (!nextWords) return []; - return Array.from(nextWords.entries()) - .sort((a, b) => b[1] - a[1]) - .map((entry) => entry[0]); - } - - getSimilarWords(word: string): string[] { - const leftNeighbors = this.getNextWords(word, "backward"); - const rightNeighbors = this.getNextWords(word, "forward"); - - const similarWords = new Map(); - - // Increase the number of neighbors considered - for (const left of leftNeighbors.slice(0, 5)) { - for (const right of rightNeighbors.slice(0, 5)) { - const middleWords = this.getNextWords(left, "forward").filter((w) => - this.getNextWords(w, "forward").includes(right) - ); - middleWords.forEach((w) => { - similarWords.set(w, (similarWords.get(w) || 0) + 1); - }); - } - } - - // Add words with similar context - this.getNextWords(word, "forward").forEach((w) => { - similarWords.set(w, (similarWords.get(w) || 0) + 2); - }); - this.getNextWords(word, "backward").forEach((w) => { - similarWords.set(w, (similarWords.get(w) || 0) + 2); - }); - - // Sort by frequency and similarity score - const result = Array.from(similarWords.entries()) - .sort((a, b) => b[1] - a[1]) - .map((entry) => entry[0]) - .filter((w) => w !== word); - - return result.slice(0, 10); - } -} diff --git a/src/tsServer/registerClientCommands.ts b/src/tsServer/registerClientCommands.ts deleted file mode 100644 index 11c7334b5..000000000 --- a/src/tsServer/registerClientCommands.ts +++ /dev/null @@ -1,144 +0,0 @@ -import { GetAlertCodes, AlertCodesServerResponse } from "@types"; -import * as vscode from "vscode"; -import { LanguageClient } from "vscode-languageclient/node"; - -export function registerClientCommands( - context: vscode.ExtensionContext, - client: LanguageClient | undefined -): vscode.Disposable { - const disposables: vscode.Disposable[] = []; - - disposables.push( - vscode.commands.registerCommand( - "codex-editor-extension.spellCheckText", - async (text: string, cellId: string) => { - if (!client) { - console.error("[Language Server] spellCheckText failed: Language server client is not available - this indicates a language server initialization failure"); - // Return structure that consumers expect - return { corrections: [], matches: [] }; - } - - try { - return await client.sendRequest("spellcheck/check", { text, cellId }); - } catch (error) { - console.error("[Language Server] spellCheckText request failed:", { - error: error instanceof Error ? error.message : String(error), - stack: error instanceof Error ? error.stack : undefined, - text: text.substring(0, 100), // Log first 100 chars for debugging - cellId, - clientState: client ? "initialized" : "not_initialized" - }); - // Return safe fallback - return { corrections: [], matches: [] }; - } - } - ) - ); - - disposables.push( - vscode.commands.registerCommand( - "codex-editor-extension.alertCodes", - async (args: GetAlertCodes): Promise => { - if (!client) { - console.error("[Language Server] alertCodes failed: Language server client is not available - this indicates a language server initialization failure", { - requestedCells: args.length, - cellIds: args.map(arg => arg.cellId) - }); - // Return safe fallback maintaining expected structure - return args.map((arg) => ({ - code: 0, // 0 = no alerts (safe fallback) - cellId: arg.cellId, - savedSuggestions: { suggestions: [] }, - })); - } - - try { - return await client.sendRequest( - "spellcheck/getAlertCodes", - args - ); - } catch (error) { - console.error("[Language Server] alertCodes request failed:", { - error: error instanceof Error ? error.message : String(error), - stack: error instanceof Error ? error.stack : undefined, - requestedCells: args.length, - cellIds: args.map(arg => arg.cellId), - clientState: client ? "initialized" : "not_initialized" - }); - // Return safe fallback for all requested cells - return args.map((arg) => ({ - code: 0, - cellId: arg.cellId, - savedSuggestions: { suggestions: [] }, - })); - } - } - ) - ); - - disposables.push( - vscode.commands.registerCommand( - "codex-editor-extension.getSimilarWords", - async (word: string) => { - if (!client) { - console.error("[Language Server] getSimilarWords failed: Language server client is not available - this indicates a language server initialization failure", { - word - }); - return []; - } - - try { - return await client.sendRequest("server.getSimilarWords", [word]); - } catch (error) { - console.error("[Language Server] getSimilarWords request failed:", { - error: error instanceof Error ? error.message : String(error), - stack: error instanceof Error ? error.stack : undefined, - word, - clientState: client ? "initialized" : "not_initialized" - }); - return []; - } - } - ) - ); - - disposables.push( - vscode.commands.registerCommand("spellcheck.addWord", async (words: string | string[]) => { - console.log("spellcheck.addWord command executed", { words }); - - if (!client) { - console.error("[Language Server] addWord failed: Language server client is not available - this indicates a language server initialization failure", { - words: Array.isArray(words) ? words : [words] - }); - vscode.window.showErrorMessage("Cannot add word to dictionary: Spellcheck service is not available due to language server issues"); - return; - } - - const wordsArray = Array.isArray(words) ? words : [words]; - console.log("sending request to language server"); - - try { - const response = await client.sendRequest("spellcheck/addWord", { - words: wordsArray, - }); - console.log("Add word response from language server:", response); - } catch (error) { - console.error("[Language Server] addWord request failed:", { - error: error instanceof Error ? error.message : String(error), - stack: error instanceof Error ? error.stack : undefined, - words: wordsArray, - clientState: client ? "initialized" : "not_initialized" - }); - vscode.window.showErrorMessage(`Failed to add word to dictionary: ${error instanceof Error ? error.message : String(error)}`); - } - }) - ); - - context.subscriptions.push(...disposables); - - return { - dispose: () => { - disposables.forEach((d) => d.dispose()); - }, - }; -} diff --git a/src/tsServer/registerClientOnRequests.ts b/src/tsServer/registerClientOnRequests.ts deleted file mode 100644 index 9051c92ac..000000000 --- a/src/tsServer/registerClientOnRequests.ts +++ /dev/null @@ -1,183 +0,0 @@ -import { LanguageClient } from "vscode-languageclient/node"; -import { Database } from "fts5-sql-bundle"; -import * as vscode from "vscode"; -import { getEntry, bulkAddWords } from "../sqldb"; - -const DEBUG_REGISTER_CLIENT_ON_REQUESTS = false; -function debug(message: string, ...args: any[]): void { - if (DEBUG_REGISTER_CLIENT_ON_REQUESTS) { - console.log(`[registerClientOnRequests] ${message}`, ...args); - } -} - -// Define message types -export const CustomRequests = { - CheckWord: "custom/checkWord", - GetSuggestions: "custom/getSuggestions", - AddWords: "custom/addWords", -} as const; - -function generateId(): string { - return Math.random().toString(36).substring(2, 15); -} - -export default async function registerClientOnRequests(client: LanguageClient, db: Database) { - try { - debug("[Language Server] Registering client request handlers with database..."); - - // Register handlers - await client.start(); // Make sure client is started first - - // Register the handlers - client.onRequest( - CustomRequests.CheckWord, - async ({ word, caseSensitive = false }: { word: string; caseSensitive: boolean; }) => { - try { - if (!db) { - console.error("[Language Server] Database not available for checkWord request:", { - word, - caseSensitive - }); - return { exists: false }; - } - - const entry = getEntry(db, word, caseSensitive); - return { exists: entry }; - } catch (error) { - console.error("[Language Server] CheckWord request failed:", { - error: error instanceof Error ? error.message : String(error), - stack: error instanceof Error ? error.stack : undefined, - word, - caseSensitive, - databaseAvailable: !!db - }); - return { exists: false }; - } - } - ); - - client.onRequest( - "workspace/executeCommand", - async (params: { command: string; args: any[]; }) => { - try { - // Execute the command in the main extension context - const result = await vscode.commands.executeCommand(params.command, ...params.args); - return result; - } catch (error) { - console.error("[Language Server] Workspace command execution failed:", { - error: error instanceof Error ? error.message : String(error), - stack: error instanceof Error ? error.stack : undefined, - command: params?.command, - argsCount: params?.args?.length || 0 - }); - throw error; // Re-throw to let caller handle command-specific errors - } - } - ); - - client.onRequest(CustomRequests.GetSuggestions, async (word: string) => { - try { - if (!db) { - console.error("[Language Server] Database not available for getSuggestions request:", { - word - }); - return []; - } - - // First, create the Levenshtein function if it doesn't exist - db.create_function("levenshtein", (a: string, b: string) => { - if (a.length === 0) return b.length; - if (b.length === 0) return a.length; - - const matrix = Array(b.length + 1) - .fill(null) - .map(() => Array(a.length + 1).fill(null)); - - for (let i = 0; i <= a.length; i++) matrix[0][i] = i; - for (let j = 0; j <= b.length; j++) matrix[j][0] = j; - - for (let j = 1; j <= b.length; j++) { - for (let i = 1; i <= a.length; i++) { - const substitutionCost = a[i - 1] === b[j - 1] ? 0 : 1; - matrix[j][i] = Math.min( - matrix[j][i - 1] + 1, - matrix[j - 1][i] + 1, - matrix[j - 1][i - 1] + substitutionCost - ); - } - } - return matrix[b.length][a.length]; - }); - - // Use Levenshtein distance to find similar words - const stmt = db.prepare(` - SELECT head_word - FROM entries - WHERE head_word LIKE '%' || ? || '%' COLLATE NOCASE - ORDER BY levenshtein(LOWER(head_word), LOWER(?)) - LIMIT 100 - `); - - const words: string[] = []; - stmt.bind([word[0], word]); - - while (stmt.step()) { - words.push(stmt.getAsObject()["head_word"] as string); - } - stmt.free(); - return words; - } catch (error) { - console.error("[Language Server] GetSuggestions request failed:", { - error: error instanceof Error ? error.message : String(error), - stack: error instanceof Error ? error.stack : undefined, - word, - databaseAvailable: !!db - }); - return []; - } - }); - - client.onRequest(CustomRequests.AddWords, async (words: string[]) => { - try { - if (!db) { - console.error("[Language Server] Database not available for addWords request:", { - words, - wordsCount: words?.length || 0 - }); - return false; - } - - await bulkAddWords( - db, - words.map((word) => ({ - headWord: word, - definition: "", - authorId: "", - isUserEntry: true, - id: generateId(), - })) - ); - return true; - } catch (error) { - console.error("[Language Server] AddWords request failed:", { - error: error instanceof Error ? error.message : String(error), - stack: error instanceof Error ? error.stack : undefined, - words, - wordsCount: words?.length || 0, - databaseAvailable: !!db - }); - return false; - } - }); - - debug("[Language Server] Client request handlers registered successfully"); - } catch (error) { - console.error("[Language Server] Critical failure registering client request handlers:", { - error: error instanceof Error ? error.message : String(error), - stack: error instanceof Error ? error.stack : undefined, - clientAvailable: !!client, - databaseAvailable: !!db - }); - throw error; // Re-throw to let calling code handle the initialization failure - } -} diff --git a/src/tsServer/registerLanguageServer.ts b/src/tsServer/registerLanguageServer.ts deleted file mode 100644 index 23056b4e4..000000000 --- a/src/tsServer/registerLanguageServer.ts +++ /dev/null @@ -1,181 +0,0 @@ -import * as vscode from "vscode"; -import { - LanguageClient, - LanguageClientOptions, - ServerOptions, - TransportKind, -} from "vscode-languageclient/node"; -import { NOTEBOOK_TYPE } from "../utils/codexNotebookUtils"; - -const DEBUG_REGISTER_LANGUAGE_SERVER = false; -function debug(message: string, ...args: any[]): void { - if (DEBUG_REGISTER_LANGUAGE_SERVER) { - console.log(`[registerLanguageServer] ${message}`, ...args); - } -} - -export async function registerLanguageServer( - context: vscode.ExtensionContext -): Promise { - try { - const config = vscode.workspace.getConfiguration("codex-editor-extension-server"); - const isCopilotEnabled = config.get("enable", true); - - if (!isCopilotEnabled) { - debug("[Language Server] Language server is disabled by configuration"); - vscode.window.showInformationMessage( - "Codex Extension Server is disabled. Project was not indexed." - ); - return undefined; - } - - debug("[Language Server] Registering the Codex Copilot Language Server..."); - const serverModule = context.asAbsolutePath("out/server.js"); - - // Validate server module exists - try { - const fs = require('fs'); // eslint-disable-line @typescript-eslint/no-var-requires - if (!fs.existsSync(serverModule)) { - console.error("[Language Server] Server module file not found:", { - expectedPath: serverModule, - absolutePath: context.asAbsolutePath("out/server.js") - }); - vscode.window.showErrorMessage("Language server module not found. Please ensure the extension is properly compiled."); - return undefined; - } - } catch (fsError) { - console.error("[Language Server] Failed to validate server module existence:", { - error: fsError instanceof Error ? fsError.message : String(fsError), - serverModule - }); - // Continue anyway, let the language client handle the error - } - - const debugOptions = { execArgv: ["--nolazy", "--inspect=6009"] }; - - const serverOptions: ServerOptions = { - run: { module: serverModule, transport: TransportKind.ipc }, - debug: { - module: serverModule, - transport: TransportKind.ipc, - options: debugOptions, - }, - }; - - const clientOptions: LanguageClientOptions = { - documentSelector: [ - { notebook: NOTEBOOK_TYPE, language: "*" }, - { scheme: "file", pattern: "**/*.codex" }, - ], - synchronize: { - fileEvents: vscode.workspace.createFileSystemWatcher("**/*.{dictionary,codex,source}"), - }, - }; - - debug("[Language Server] Creating the Codex Copilot Language Server client..."); - const client = new LanguageClient( - "codexCopilotLanguageServer", - "Codex Copilot Language Server", - serverOptions, - clientOptions - ); - - debug("[Language Server] Attempting to start the Codex Copilot Language Server..."); - - try { - await client.start(); - context.subscriptions.push(client); - - // Set up notification handlers - try { - client.onNotification("custom/dictionaryUpdated", () => { - vscode.commands.executeCommand("dictionaryTable.dictionaryUpdated"); - }); - } catch (notificationError) { - console.error("[Language Server] Failed to register dictionary notification handler:", { - error: notificationError instanceof Error ? notificationError.message : String(notificationError), - stack: notificationError instanceof Error ? notificationError.stack : undefined - }); - // Continue - this is not critical for basic functionality - } - - debug("[Language Server] Codex Copilot Language Server started successfully."); - return client; - } catch (startError) { - console.error("[Language Server] Failed to start language server on first attempt:", { - error: startError instanceof Error ? startError.message : String(startError), - stack: startError instanceof Error ? startError.stack : undefined, - serverModule, - clientOptions: JSON.stringify(clientOptions, null, 2) - }); - - // Attempt to restart the server - debug("[Language Server] Attempting to restart the language server..."); - try { - await client.stop(); - await new Promise((resolve) => setTimeout(resolve, 1000)); - await client.start(); - - debug("[Language Server] Codex Copilot Language Server restarted successfully."); - context.subscriptions.push(client); - - // Re-register notification handlers after restart - try { - client.onNotification("custom/dictionaryUpdated", () => { - vscode.commands.executeCommand("dictionaryTable.dictionaryUpdated"); - }); - } catch (notificationError) { - console.error("[Language Server] Failed to register dictionary notification handler after restart:", { - error: notificationError instanceof Error ? notificationError.message : String(notificationError) - }); - } - - return client; - } catch (restartError) { - console.error("[Language Server] Critical failure: Failed to restart the language server:", { - error: restartError instanceof Error ? restartError.message : String(restartError), - stack: restartError instanceof Error ? restartError.stack : undefined, - originalError: startError instanceof Error ? startError.message : String(startError), - serverModule - }); - - vscode.window.showErrorMessage( - "Language server failed to start. Spellcheck and smart edit features will not be available. " + - "Check the console for detailed error information." - ); - - return undefined; - } - } - } catch (error) { - console.error("[Language Server] Critical failure during language server registration:", { - error: error instanceof Error ? error.message : String(error), - stack: error instanceof Error ? error.stack : undefined, - contextAvailable: !!context - }); - - vscode.window.showErrorMessage( - "Failed to initialize language server. Spellcheck and smart edit features will not be available." - ); - - return undefined; - } -} - -export function deactivate(client: LanguageClient): Thenable | undefined { - if (!client) { - debug("[Language Server] No Codex Copilot Language Server client to stop."); - return undefined; - } - - debug("[Language Server] Stopping Codex Copilot Language Server..."); - return client.stop().then( - () => debug("[Language Server] Codex Copilot Language Server stopped successfully."), - (error) => { - console.error("[Language Server] Error stopping Codex Copilot Language Server:", { - error: error instanceof Error ? error.message : String(error), - stack: error instanceof Error ? error.stack : undefined - }); - } - ); -} diff --git a/src/tsServer/server.ts b/src/tsServer/server.ts deleted file mode 100644 index cb9f0f4c6..000000000 --- a/src/tsServer/server.ts +++ /dev/null @@ -1,477 +0,0 @@ -import { - createConnection, - TextDocuments, - ProposedFeatures, - InitializeParams, - InitializeResult, -} from "vscode-languageserver/node"; -import { TextDocument } from "vscode-languageserver-textdocument"; -import { - SpellChecker, -} from "./spellCheck"; -import { - MatchesEntity, -} from "../../webviews/codex-webviews/src/CodexCellEditor/react-quill-spellcheck/types"; -import { RequestType } from "vscode-languageserver"; -import { tokenizeText } from "../utils/nlpUtils"; -import { GetAlertCodes, AlertCodesServerResponse } from "@types"; - -const DEBUG_MODE = false; // Flag for debug mode - -const connection = createConnection(ProposedFeatures.all); -const documents = new TextDocuments(TextDocument); -const ExecuteCommandRequest = new RequestType<{ command: string; args: any[]; }, any, void>( - "workspace/executeCommand" -); - -let spellChecker: SpellChecker; -let lastSmartEditsText: string | null = null; -let lastSmartEditResults: any[] | null = null; - -// Custom debug function -function debugLog(...args: any[]) { - if (DEBUG_MODE) { - console.log(new Date().toISOString(), ...args); - } -} - -// Define special phrases with their replacements and colors -let specialPhrases: { - phrase: string; - replacement: string; - color: string; - source: string; - leftToken: string; - rightToken: string; -}[] = [ - { - phrase: "hello world", - replacement: "hi", - color: "purple", - source: "llm", - leftToken: "", - rightToken: "", - }, - // Add more phrases as needed - ]; - -connection.onInitialize((params: InitializeParams) => { - const workspaceFolder = params.workspaceFolders?.[0].uri; - - debugLog(`Initializing with workspace folder: ${workspaceFolder}`); - - // Initialize services - debugLog("Initializing SpellChecker..."); - spellChecker = new SpellChecker(connection); - debugLog("SpellChecker initialized."); - - return { - capabilities: { - textDocumentSync: { - openClose: true, - change: 1, // Incremental - }, - // Add other capabilities as needed - }, - } as InitializeResult; -}); -connection.onRequest( - "spellcheck/getAlertCodes", - async (params: GetAlertCodes): Promise => { - try { - debugLog("SERVER: Received spellcheck/getAlertCodes request:", { params }); - - const results = await Promise.all( - params.map(async (param) => { - try { - const words = tokenizeText({ - method: "whitespace_and_punctuation", - text: param.text, - }); - - // spellcheck - for (const word of words) { - try { - const spellCheckResult = await spellChecker.spellCheck(word); - debugLog("SERVER: Spell check result:", { spellCheckResult }); - if (spellCheckResult?.corrections?.length > 0) { - return { - code: 1, - cellId: param.cellId, - savedSuggestions: { suggestions: [] }, - }; - } - } catch (wordError) { - console.error("[Language Server] Spell check failed for word:", { - word, - cellId: param.cellId, - error: wordError instanceof Error ? wordError.message : String(wordError), - stack: wordError instanceof Error ? wordError.stack : undefined - }); - // Continue processing other words - } - } - - // debugLog("No smart edits found, checking for applicable prompt"); - // If no spelling errors or smart edits, check for applicable prompt - - const code = 0; - - return { - code, - cellId: param.cellId, - savedSuggestions: { suggestions: [] }, - }; - } catch (cellError) { - console.error("[Language Server] Alert code processing failed for cell:", { - cellId: param.cellId, - textLength: param.text?.length || 0, - error: cellError instanceof Error ? cellError.message : String(cellError), - stack: cellError instanceof Error ? cellError.stack : undefined - }); - // Return safe fallback for this cell - return { - code: 0, - cellId: param.cellId, - savedSuggestions: { suggestions: [] }, - }; - } - }) - ); - - debugLog("SERVER: Returning results:", { results }); - return results; - } catch (error) { - console.error("[Language Server] Critical failure in getAlertCodes:", { - error: error instanceof Error ? error.message : String(error), - stack: error instanceof Error ? error.stack : undefined, - requestCount: params?.length || 0, - cellIds: params?.map(p => p.cellId) || [] - }); - // Return safe fallback for all requested cells - return params.map((param) => ({ - code: 0, - cellId: param.cellId, - savedSuggestions: { suggestions: [] }, - })); - } - } -); - -connection.onRequest("spellcheck/check", async (params: { text: string; cellId: string; }) => { - try { - debugLog("SERVER: Received spellcheck/check request:", { params }); - - const text = params.text; - const matches: MatchesEntity[] = []; - - // Start parallel requests for both smart edits and ICE suggestions - let smartEditsPromise: Promise; - let iceEditsPromise: Promise; - - try { - smartEditsPromise = lastSmartEditsText !== text - ? connection.sendRequest(ExecuteCommandRequest, { - command: "codex-smart-edits.getEdits", - args: [text, params.cellId], - }) - : Promise.resolve(lastSmartEditResults); - - // New ICE edits request - iceEditsPromise = connection.sendRequest(ExecuteCommandRequest, { - command: "codex-smart-edits.getIceEdits", - args: [text], - }); - } catch (requestError) { - console.error("[Language Server] Failed to initiate smart edits requests:", { - error: requestError instanceof Error ? requestError.message : String(requestError), - stack: requestError instanceof Error ? requestError.stack : undefined, - cellId: params.cellId, - textLength: text?.length || 0 - }); - // Continue with spell checking even if smart edits fail - smartEditsPromise = Promise.resolve(null); - iceEditsPromise = Promise.resolve(null); - } - - // Process spell checking - try { - const words = tokenizeText({ - method: "whitespace_and_punctuation", - text: params.text, - }); - - // Process traditional spell checking - for (const word of words) { - if (!word) continue; - - try { - const spellCheckResult = await spellChecker.spellCheck(word); - if (!spellCheckResult) continue; - - const offset = text.indexOf(word, 0); - if (offset === -1) continue; - - if (spellCheckResult.wordIsFoundInDictionary === false) { - matches.push({ - id: `UNKNOWN_WORD_${matches.length}`, - text: word, - replacements: spellCheckResult.corrections - .filter((c) => c !== null && c !== undefined) - .map((correction) => ({ - value: correction, - source: "llm" as const, - })), - offset: offset, - length: word.length, - cellId: params.cellId, - }); - } - } catch (wordError) { - console.error("[Language Server] Spell check failed for individual word:", { - word, - cellId: params.cellId, - error: wordError instanceof Error ? wordError.message : String(wordError), - stack: wordError instanceof Error ? wordError.stack : undefined - }); - // Continue processing other words - } - } - } catch (spellError) { - console.error("[Language Server] Traditional spell checking failed:", { - error: spellError instanceof Error ? spellError.message : String(spellError), - stack: spellError instanceof Error ? spellError.stack : undefined, - cellId: params.cellId, - textLength: text?.length || 0 - }); - // Continue to smart edits processing - } - - // Wait for both smart edits and ICE suggestions - let smartEditResults = null; - let iceResults = null; - - try { - [smartEditResults, iceResults] = await Promise.all([smartEditsPromise, iceEditsPromise]); - } catch (smartEditsError) { - console.error("[Language Server] Smart edits processing failed:", { - error: smartEditsError instanceof Error ? smartEditsError.message : String(smartEditsError), - stack: smartEditsError instanceof Error ? smartEditsError.stack : undefined, - cellId: params.cellId - }); - // Continue with what we have - } - - // Update smart edits cache - if (lastSmartEditsText !== text) { - lastSmartEditsText = text; - lastSmartEditResults = smartEditResults; - } - - // Process smart edits - if (smartEditResults) { - try { - specialPhrases = []; - smartEditResults.forEach((suggestion: any, index: number) => { - const source = suggestion.source || "llm"; - const color = source === "ice" ? "blue" : "purple"; - - specialPhrases.push({ - phrase: suggestion.oldString, - replacement: suggestion.newString, - color: color, - source: source, - leftToken: suggestion.leftToken || "", - rightToken: suggestion.rightToken || "", - }); - }); - - specialPhrases.forEach(({ phrase, replacement, color, source }, index) => { - try { - let startIndex = 0; - const phraseToSearch = phrase?.trim(); // Trim whitespace before searching - if (!phraseToSearch) return; // Skip if phrase is empty after trimming - - const phraseLower = phraseToSearch.toLowerCase(); - - while ((startIndex = text?.toLowerCase()?.indexOf(phraseLower, startIndex)) !== -1) { - // Get context tokens for ICE suggestions - let leftToken = ""; - let rightToken = ""; - if (source === "ice") { - const words = text?.split(/\s+/); - const wordIndex = words?.findIndex( - (w, i) => - text?.indexOf( - w, - i === 0 ? 0 : text?.indexOf(words[i - 1]) + words[i - 1].length - ) === startIndex - ); - if (wordIndex !== -1) { - leftToken = wordIndex > 0 ? words[wordIndex - 1] : ""; - rightToken = wordIndex < words.length - 1 ? words[wordIndex + 1] : ""; - } - } - - matches.push({ - id: `SPECIAL_PHRASE_${index}_${matches.length}`, - text: phrase, // Display original phrase in popup - replacements: [ - { - value: replacement, - source: source as "llm" | "ice", - }, - ], - offset: startIndex, // Use the found index - length: phraseToSearch.length, // Use the *trimmed* length for the underline - color: color as "purple" | "blue", - leftToken: source === "ice" ? leftToken : "", - rightToken: source === "ice" ? rightToken : "", - cellId: params.cellId, - }); - startIndex += phraseToSearch.length; // Advance by the *trimmed* length - } - } catch (phraseError) { - console.error("[Language Server] Failed to process smart edit phrase:", { - phrase, - index, - cellId: params.cellId, - error: phraseError instanceof Error ? phraseError.message : String(phraseError), - stack: phraseError instanceof Error ? phraseError.stack : undefined - }); - // Continue processing other phrases - } - }); - } catch (smartEditProcessingError) { - console.error("[Language Server] Smart edit results processing failed:", { - error: smartEditProcessingError instanceof Error ? smartEditProcessingError.message : String(smartEditProcessingError), - stack: smartEditProcessingError instanceof Error ? smartEditProcessingError.stack : undefined, - cellId: params.cellId, - resultsCount: smartEditResults?.length || 0 - }); - // Continue to ICE processing - } - } - - // Process ICE results - if (iceResults && Array.isArray(iceResults)) { - try { - for (const suggestion of iceResults) { - try { - if (suggestion.rejected === true) continue; - - const wordOffset = text.indexOf(suggestion.oldString); - if (wordOffset !== -1) { - matches.push({ - id: `ICE_${matches.length}`, - text: suggestion.oldString, - replacements: [ - { - value: suggestion.newString, - confidence: suggestion.confidence, - source: "ice", - frequency: suggestion.frequency, - }, - ], - offset: wordOffset, - length: suggestion.oldString.length, - color: "blue", - leftToken: suggestion.leftToken || "", - rightToken: suggestion.rightToken || "", - cellId: params.cellId, - }); - } - } catch (iceItemError) { - console.error("[Language Server] Failed to process ICE suggestion:", { - suggestion, - cellId: params.cellId, - error: iceItemError instanceof Error ? iceItemError.message : String(iceItemError), - stack: iceItemError instanceof Error ? iceItemError.stack : undefined - }); - // Continue processing other ICE suggestions - } - } - } catch (iceProcessingError) { - console.error("[Language Server] ICE results processing failed:", { - error: iceProcessingError instanceof Error ? iceProcessingError.message : String(iceProcessingError), - stack: iceProcessingError instanceof Error ? iceProcessingError.stack : undefined, - cellId: params.cellId, - resultsCount: iceResults?.length || 0 - }); - // Continue with what we have - } - } - - debugLog(`Returning matches: ${JSON.stringify(matches)}`); - return matches; - } catch (error) { - console.error("[Language Server] Critical failure in spellcheck/check:", { - error: error instanceof Error ? error.message : String(error), - stack: error instanceof Error ? error.stack : undefined, - cellId: params?.cellId, - textLength: params?.text?.length || 0 - }); - // Return empty matches array as safe fallback - return []; - } -}); - -connection.onRequest( - "spellcheck/applyPromptedEdit", - async (params: { text: string; prompt: string; cellId: string; }) => { - try { - debugLog("Received spellcheck/applyPromptedEdit request:", { params }); - - const modifiedText = await connection.sendRequest(ExecuteCommandRequest, { - command: "codex-smart-edits.applyPromptedEdit", - args: [params.text, params.prompt, params.cellId], - }); - - debugLog("Modified text from prompted edit:", modifiedText); - return modifiedText; - } catch (error) { - console.error("[Language Server] Prompted edit request failed:", { - error: error instanceof Error ? error.message : String(error), - stack: error instanceof Error ? error.stack : undefined, - cellId: params?.cellId, - textLength: params?.text?.length || 0, - promptLength: params?.prompt?.length || 0 - }); - // Return original text as safe fallback - return params?.text || null; - } - } -); - -connection.onRequest("spellcheck/addWord", async (params: { words: string[]; }) => { - try { - debugLog("Received spellcheck/addWord request:", { params }); - - if (!spellChecker) { - console.error("[Language Server] SpellChecker not initialized for addWord request:", { - requestedWords: params?.words || [], - wordsCount: params?.words?.length || 0 - }); - throw new Error("SpellChecker is not initialized."); - } - - await spellChecker.addWords(params.words); - debugLog("Words successfully added to the dictionary."); - return { success: true }; - } catch (error) { - console.error("[Language Server] Add word request failed:", { - error: error instanceof Error ? error.message : String(error), - stack: error instanceof Error ? error.stack : undefined, - requestedWords: params?.words || [], - wordsCount: params?.words?.length || 0, - spellCheckerAvailable: !!spellChecker - }); - return { - success: false, - error: error instanceof Error ? error.message : String(error) - }; - } -}); - -documents.listen(connection); -connection.listen(); diff --git a/src/tsServer/spellCheck.ts b/src/tsServer/spellCheck.ts deleted file mode 100644 index ca85da998..000000000 --- a/src/tsServer/spellCheck.ts +++ /dev/null @@ -1,173 +0,0 @@ -import { - Connection, - RequestType, -} from "vscode-languageserver/node"; -import { verseRefRegex } from "./types"; -import { SpellCheckResult } from "./types"; -import { URI } from "vscode-uri"; -import { cleanWord } from "../utils/cleaningUtils"; - -let folderUri: URI | undefined; - -// Define request types -interface CheckWordResponse { - exists: boolean; -} - -const DEBUG_MODE = false; // Flag for debug mode - -// Custom debug function -function debugLog(...args: any[]) { - if (DEBUG_MODE) { - console.log(new Date().toISOString(), ...args); - } -} -const CheckWordRequest = new RequestType< - { word: string; caseSensitive: boolean }, - CheckWordResponse, - never ->("custom/checkWord"); -const GetSuggestionsRequest = new RequestType("custom/getSuggestions"); -const AddWordsRequest = new RequestType("custom/addWords"); - -export class SpellChecker { - private connection: Connection; - private wordCache: Map = new Map(); - - constructor(connection: Connection) { - this.connection = connection; - } - - async spellCheck(word: string): Promise { - if (this.wordCache.has(word)) { - const cachedResult = this.wordCache.get(word); - if (cachedResult) { - return cachedResult; - } - } - const originalWord = word; - const cleanedWord = cleanWord(word); - - try { - // Check if word exists in dictionary - const response = await this.connection.sendRequest(CheckWordRequest, { - word: cleanedWord, - caseSensitive: false, - }); - debugLog("SERVER: CheckWordRequest response:", { response }); - - if (response.exists) { - const result: SpellCheckResult = { - word: originalWord, - wordIsFoundInDictionary: true, - corrections: [], - }; - - this.wordCache.set(word, result); - return result; - } - - const suggestions = await this.getSuggestions(originalWord); - debugLog("SERVER: getSuggestions response:", { suggestions }); - const result: SpellCheckResult = { - word: originalWord, - wordIsFoundInDictionary: false, - corrections: suggestions, - }; - this.wordCache.set(word, result); - return result; - } catch (error) { - console.error("Error in spellCheck:", error); - const result: SpellCheckResult = { - word: originalWord, - wordIsFoundInDictionary: false, - corrections: [], - }; - this.wordCache.set(word, result); - return result; - } - } - - private async getSuggestions(word: string): Promise { - if (!word || word.trim().length === 0) { - return []; - } - - try { - const cleanedWord = cleanWord(word); - const leadingPunctuation = word.match(/^[^\p{L}\p{N}]+/u)?.[0] || ""; - const trailingPunctuation = word.match(/[^\p{L}\p{N}]+$/u)?.[0] || ""; - - // Get all words from the dictionary - const dictWords = await this.connection.sendRequest(GetSuggestionsRequest, cleanedWord); - debugLog("SERVER: GetSuggestionsRequest response:", { dictWords }); - - const suggestions = dictWords.map((dictWord) => ({ - word: dictWord, - distance: this.levenshteinDistance(cleanedWord, dictWord), - })); - debugLog("SERVER: suggestions:", { suggestions }); - return suggestions - .sort((a, b) => a.distance - b.distance) - .slice(0, 5) - .map((suggestion) => { - let result = suggestion.word; - - // Preserve original capitalization - if (word[0].toUpperCase() === word[0]) { - result = result.charAt(0).toUpperCase() + result.slice(1); - } - - // Preserve surrounding punctuation - return leadingPunctuation + result + trailingPunctuation; - }); - } catch (error) { - console.error("Error in getSuggestions:", error); - return []; - } - } - - async addWords(words: string[]): Promise { - try { - const success = await this.connection.sendRequest(AddWordsRequest, words); - - if (success) { - this.wordCache.clear(); - this.connection.sendNotification("custom/dictionaryUpdated"); - } - } catch (error) { - console.error("Error in addWords:", error); - } - } - - clearCache(): void { - this.wordCache.clear(); - } - - private levenshteinDistance(a: string, b: string): number { - const matrix: number[][] = []; - - for (let i = 0; i <= b.length; i++) { - matrix[i] = [i]; - } - for (let j = 0; j <= a.length; j++) { - matrix[0][j] = j; - } - - for (let i = 1; i <= b.length; i++) { - for (let j = 1; j <= a.length; j++) { - if (b.charAt(i - 1) === a.charAt(j - 1)) { - matrix[i][j] = matrix[i - 1][j - 1]; - } else { - matrix[i][j] = Math.min( - matrix[i - 1][j - 1] + 1, - matrix[i][j - 1] + 1, - matrix[i - 1][j] + 1 - ); - } - } - } - - return matrix[b.length][a.length]; - } -} \ No newline at end of file diff --git a/src/tsServer/types.ts b/src/tsServer/types.ts deleted file mode 100644 index 0f43b908b..000000000 --- a/src/tsServer/types.ts +++ /dev/null @@ -1,9 +0,0 @@ -export const verseRefRegex = /(\b[A-Z, 1-9]{3}\s\d+:\d+\b)/; - -export type SpellCheckResult = { - word: string; - wordIsFoundInDictionary: boolean; - corrections: string[]; -}; - -export type SpellCheckFunction = (word: string) => SpellCheckResult; diff --git a/src/utils/appConfig.ts b/src/utils/appConfig.ts deleted file mode 100644 index cf0886584..000000000 --- a/src/utils/appConfig.ts +++ /dev/null @@ -1,58 +0,0 @@ -import * as vscode from "vscode"; - -const CONFIG_FILE_NAME = "scribe.config.json"; - -const getConfigFromDisk = async () => { - const rootDir = vscode.workspace.workspaceFolders?.[0].uri; - if (!rootDir) { - console.error("No workspace found."); - return; - } - const configUri = vscode.Uri.joinPath(rootDir, CONFIG_FILE_NAME); - const configJson = vscode.workspace.fs.readFile(configUri); - const config = JSON.parse(configJson.toString()); - return config; -}; - -const saveToConfigToDisk = async (config: any) => { - const rootDir = vscode.workspace.workspaceFolders?.[0].uri; - if (!rootDir) { - console.error("No workspace found."); - return; - } - const configUri = vscode.Uri.joinPath(rootDir, CONFIG_FILE_NAME); - const configJson = JSON.stringify(config); - await vscode.workspace.fs.writeFile(configUri, Buffer.from(configJson)); -}; - -export const addToConfig = async (key: string, value: unknown) => { - const config = await getConfigFromDisk(); - if (config[key] !== undefined) { - vscode.window.showErrorMessage("Key already exists."); - return; - } - config[key] = value; - await saveToConfigToDisk(config); -}; -export const getFromConfig = async (key: string) => { - const config = await getConfigFromDisk(); - return config[key]; -}; -export const removeFromConfig = async (key: string) => { - const config = await getConfigFromDisk(); - if (config[key] === undefined) { - vscode.window.showErrorMessage("Key does not exist."); - return; - } - delete config[key]; - await saveToConfigToDisk(config); -}; -export const updateConfig = async (key: string, value: unknown) => { - const config = await getConfigFromDisk(); - config[key] = value; - await saveToConfigToDisk(config); -}; -export const getConfig = async () => { - const config = await getConfigFromDisk(); - return config; -}; diff --git a/webpack.config.js b/webpack.config.js index eac6a445b..e820ab05f 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -139,46 +139,6 @@ const extensionConfig = { ], }; -const serverConfig = { - name: "server", - target: "node", - mode: "none", - entry: "./src/tsServer/server.ts", - output: { - path: path.resolve(__dirname, "out"), - filename: "server.js", - libraryTarget: "commonjs2", - }, - node: { - __dirname: false, - __filename: false, - global: false, - }, - externals: { - vscode: "commonjs vscode", - }, - resolve: { - extensions: [".ts", ".js"], - alias: { - "@": path.resolve(__dirname, "src"), - }, - }, - module: { - rules: [ - { - test: /\.ts$/, - exclude: /node_modules/, - use: [ - { - loader: "ts-loader", - }, - ], - }, - ], - }, - devtool: "nosources-source-map", -}; - const testConfig = { name: "test", target: "node", // VS Code extension tests run in Node.js context From b805548799f698f37ee8a5af2ce3b4ab2a29f91a Mon Sep 17 00:00:00 2001 From: dadukhankevin Date: Wed, 4 Feb 2026 11:24:08 -0600 Subject: [PATCH 02/13] more deletion, and converted languages to json --- src/utils/audioFileValidation.ts | 60 - src/utils/dictionaryUtils.ts | 105 - src/utils/dictionaryUtils/server.ts | 43 - src/utils/editTypeExamples.ts | 112 - src/utils/extractBookChapterVerse.ts | 35 - src/utils/fileUtils.ts | 1 - src/utils/formatters.ts | 16 - src/utils/languageUtils.ts | 63764 +------------------------ src/utils/languages.json | 63720 ++++++++++++++++++++++++ src/utils/progressManager.ts | 38 - src/utils/typeDemo.ts | 105 - src/utils/typeSystemTest.ts | 81 - 12 files changed, 63750 insertions(+), 64330 deletions(-) delete mode 100644 src/utils/audioFileValidation.ts delete mode 100644 src/utils/dictionaryUtils.ts delete mode 100644 src/utils/dictionaryUtils/server.ts delete mode 100644 src/utils/editTypeExamples.ts delete mode 100644 src/utils/extractBookChapterVerse.ts delete mode 100644 src/utils/formatters.ts create mode 100644 src/utils/languages.json delete mode 100644 src/utils/progressManager.ts delete mode 100644 src/utils/typeDemo.ts delete mode 100644 src/utils/typeSystemTest.ts diff --git a/src/utils/audioFileValidation.ts b/src/utils/audioFileValidation.ts deleted file mode 100644 index fbe0d035d..000000000 --- a/src/utils/audioFileValidation.ts +++ /dev/null @@ -1,60 +0,0 @@ -import * as vscode from 'vscode'; -import * as path from 'path'; - -/** - * Automatically migrates legacy .x-m4a audio files to .m4a on startup - * Runs silently without user notification, similar to database corruption repair - * - * This follows the pattern of automatic repairs in: - * - sqliteIndexManager.ts (database corruption) - * - commentsMigrationUtils.ts (comment data repair) - * - * This runs during extension activation if a workspace with metadata exists - */ -export async function autoMigrateLegacyAudioFiles(): Promise { - try { - const workspaceFolders = vscode.workspace.workspaceFolders; - if (!workspaceFolders || workspaceFolders.length === 0) { - return; - } - - const workspaceRoot = workspaceFolders[0].uri.fsPath; - const attachmentsRoot = path.join(workspaceRoot, '.project', 'attachments'); - - // Quick check: do we even have an attachments folder? - try { - await vscode.workspace.fs.stat(vscode.Uri.file(attachmentsRoot)); - } catch { - return; // No attachments folder = no problem - } - - // Search for .x-m4a files - const pattern = new vscode.RelativePattern(attachmentsRoot, '**/*.x-m4a'); - const xm4aFiles = await vscode.workspace.findFiles(pattern); - - if (xm4aFiles.length === 0) { - return; // No legacy files found - } - - console.log(`[Audio Migration] Found ${xm4aFiles.length} legacy .x-m4a file(s) - auto-migrating silently`); - - // Import and run migration silently - const { migrateXM4aFiles } = await import('./audioMigration'); - const result = await migrateXM4aFiles(); - - // Log results but don't show UI - if (result.renamedFiles.length > 0) { - console.log(`[Audio Migration] Successfully migrated ${result.renamedFiles.length} file(s)`); - } - if (result.updatedCodexFiles.length > 0) { - console.log(`[Audio Migration] Updated ${result.updatedCodexFiles.length} .codex file(s)`); - } - if (result.errors.length > 0) { - console.error(`[Audio Migration] Encountered ${result.errors.length} error(s):`, result.errors); - } - } catch (error) { - // Don't fail startup if migration fails - just log it - console.error('[Audio Migration] Error during automatic migration:', error); - } -} - diff --git a/src/utils/dictionaryUtils.ts b/src/utils/dictionaryUtils.ts deleted file mode 100644 index 2bf65b129..000000000 --- a/src/utils/dictionaryUtils.ts +++ /dev/null @@ -1,105 +0,0 @@ -import * as fs from "fs"; // Need to use fs because the server uses this too -import * as vscode from "vscode"; -import { Dictionary, DictionaryEntry } from "../../types"; -import { cleanWord } from "./cleaningUtils"; - -// Server version (using fs) -export async function readDictionaryServer(path: string): Promise { - try { - const content = await fs.promises.readFile(path, "utf-8"); - const entries = deserializeDictionaryEntries(content); - return { - id: "project", - label: "Project", - entries, - metadata: {}, - }; - } catch (error) { - console.error("Error reading dictionary:", error); - return { id: "project", label: "Project", entries: [], metadata: {} }; - } -} - -export async function saveDictionaryServer(path: string, dictionary: Dictionary): Promise { - const content = serializeDictionaryEntries(dictionary.entries); - await fs.promises.writeFile(path, content, "utf-8"); -} - -// Client version (using vscode.workspace.fs) -export async function readDictionaryClient(uri: vscode.Uri): Promise { - try { - const content = await vscode.workspace.fs.readFile(uri); - const entries = deserializeDictionaryEntries(new TextDecoder().decode(content)); - return { - id: "project", - label: "Project", - entries, - metadata: {}, - }; - } catch (error) { - console.error("Error reading dictionary:", error); - return { id: "project", label: "Project", entries: [], metadata: {} }; - } -} - -export async function saveDictionaryClient(uri: vscode.Uri, dictionary: Dictionary): Promise { - const content = serializeDictionaryEntries(dictionary.entries); - await vscode.workspace.fs.writeFile(uri, Buffer.from(content, "utf-8")); -} - -export async function addWordsToDictionary(path: string, words: string[]): Promise { - const dictionary = await readDictionaryServer(path); - const newEntries = words - .map(cleanWord) - .filter( - (word) => - word && - !dictionary.entries.some( - (entry) => entry.headWord?.toLowerCase() === word.toLowerCase() - ) - ) - .map((word) => createDictionaryEntry(word)); - - dictionary.entries.push(...newEntries); - await saveDictionaryServer(path, dictionary); -} - -export function serializeDictionaryEntries(entries: DictionaryEntry[]): string { - return entries.map((entry) => JSON.stringify(ensureCompleteEntry(entry))).join("\n") + "\n"; -} - -export function deserializeDictionaryEntries(content: string): DictionaryEntry[] { - return content - .split("\n") - .filter((line) => line.trim() !== "") - .map((line) => JSON.parse(line)) - .map(ensureCompleteEntry); -} - -export function repairDictionaryContent(content: string): string { - return content.replace(/}\s*{/g, "}\n{"); -} - -export function ensureCompleteEntry(entry: Partial): DictionaryEntry { - return { - id: entry.id || generateUniqueId(), - headWord: entry.headWord || "N/A", - definition: entry.definition || "", - isUserEntry: entry.isUserEntry || false, - authorId: entry.authorId || "", - }; -} - -function createDictionaryEntry(word: string): DictionaryEntry { - return { - id: generateUniqueId(), - headWord: word, - definition: "", - isUserEntry: false, - authorId: "", - }; -} - -function generateUniqueId(): string { - return Math.random().toString(36).substr(2, 9); -} diff --git a/src/utils/dictionaryUtils/server.ts b/src/utils/dictionaryUtils/server.ts deleted file mode 100644 index 887f1ad0c..000000000 --- a/src/utils/dictionaryUtils/server.ts +++ /dev/null @@ -1,43 +0,0 @@ -import * as fs from "fs"; - -import { cleanWord } from "../cleaningUtils"; -import { - serializeDictionaryEntries, - deserializeDictionaryEntries, - createDictionaryEntry, -} from "./common"; -import { Dictionary } from "../../../types"; - -// todo: this is probably not needed anymore - -export async function readDictionaryServer(path: string): Promise { - try { - const content = await fs.promises.readFile(path, "utf-8"); - const entries = deserializeDictionaryEntries(content); - return { - id: "project", - label: "Project", - entries, - metadata: {}, - }; - } catch (error) { - console.error("Error reading dictionary:", error); - return { id: "project", label: "Project", entries: [], metadata: {} }; - } -} - -export async function saveDictionaryServer(path: string, dictionary: Dictionary): Promise { - const content = serializeDictionaryEntries(dictionary.entries); - await fs.promises.writeFile(path, content, "utf-8"); -} - -export async function addWordsToDictionary(path: string, words: string[]): Promise { - const dictionary = await readDictionaryServer(path); - const newEntries = words - .map(cleanWord) - .filter((word) => word && !dictionary.entries.some((entry) => entry.headWord === word)) - .map((word) => createDictionaryEntry(word)); - - dictionary.entries.push(...newEntries); - await saveDictionaryServer(path, dictionary); -} diff --git a/src/utils/editTypeExamples.ts b/src/utils/editTypeExamples.ts deleted file mode 100644 index 6e70173de..000000000 --- a/src/utils/editTypeExamples.ts +++ /dev/null @@ -1,112 +0,0 @@ -// Examples demonstrating the type-safe edit system -import { EditHistory, EditFor, CodexData } from "../../types"; -import { EditMapUtils } from "./editMapUtils"; -import { EditType } from "../../types/enums"; - -// Example 1: Value edit (HTML string) -const valueEdit: EditFor = { - editMap: EditMapUtils.value(), - value: "Hello World", // TypeScript infers: string - author: "user1", - timestamp: Date.now(), - type: EditType.USER_EDIT, - validatedBy: [] -}; - -// Example 2: Cell label edit (string) -const labelEdit: EditFor = { - editMap: EditMapUtils.cellLabel(), - value: "Genesis 1:1", // TypeScript infers: string - author: "user1", - timestamp: Date.now(), - type: EditType.USER_EDIT, - validatedBy: [] -}; - -// Example 3: Data edit (CodexData object) -const timestamps: CodexData = { - startTime: 0, - endTime: 1000, -}; - -const dataEdit: EditFor = { - editMap: EditMapUtils.data(), - value: timestamps, // ✅ TypeScript infers: CodexData - author: "user1", - timestamp: Date.now(), - type: EditType.USER_EDIT, - validatedBy: [] -}; - -// Example 4: Boolean field edit -const deleteEdit: EditFor = { - editMap: EditMapUtils.dataDeleted(), - value: true, // ✅ TypeScript infers: boolean - author: "user1", - timestamp: Date.now(), - type: EditType.USER_EDIT, - validatedBy: [] -}; - -// Example 5: Number field edit -const startTimeEdit: EditFor = { - editMap: EditMapUtils.dataStartTime(), - value: 500, // ✅ TypeScript infers: number - author: "user1", - timestamp: Date.now(), - type: EditType.USER_EDIT, - validatedBy: [] -}; - -// Example 6: Generic metadata field (fallback type) -const genericEdit: EditFor = { - editMap: EditMapUtils.metadata("customField"), - value: "some value", // ✅ TypeScript infers: string | number | boolean | object - author: "user1", - timestamp: Date.now(), - type: EditType.USER_EDIT, - validatedBy: [] -}; - -// Example 7: Array of mixed edit types -const mixedEdits: EditHistory[] = [ - { - editMap: EditMapUtils.value(), - value: "Content", // string - author: "user1", - timestamp: Date.now(), - type: "user-edit" as any - }, - { - editMap: EditMapUtils.cellLabel(), - value: "Chapter 1", // string - author: "user1", - timestamp: Date.now(), - type: "user-edit" as any - }, - { - editMap: EditMapUtils.dataDeleted(), - value: false, // boolean - author: "user1", - timestamp: Date.now(), - type: "user-edit" as any - } -]; - -// Type-safe filtering functions -function filterValueEdits(edits: EditHistory[]): EditFor<["value"]>[] { - return edits.filter(edit => EditMapUtils.isValue(edit.editMap)) as EditFor<["value"]>[]; -} - -function filterLabelEdits(edits: EditHistory[]): EditFor<["metadata", "cellLabel"]>[] { - return edits.filter(edit => EditMapUtils.equals(edit.editMap, ["metadata", "cellLabel"])) as EditFor<["metadata", "cellLabel"]>[]; -} - -// Usage example -const valueEdits = filterValueEdits(mixedEdits); -// TypeScript knows valueEdits[0].value is a string - -const labelEdits = filterLabelEdits(mixedEdits); -// TypeScript knows labelEdits[0].value is a string - -export { valueEdit, labelEdit, dataEdit, deleteEdit, startTimeEdit, genericEdit, mixedEdits }; diff --git a/src/utils/extractBookChapterVerse.ts b/src/utils/extractBookChapterVerse.ts deleted file mode 100644 index 301400b5a..000000000 --- a/src/utils/extractBookChapterVerse.ts +++ /dev/null @@ -1,35 +0,0 @@ -/** - * Extracts the book, chapter, and verse from a reference string. - * - * The reference string must be in the format "Book Abbreviation Chapter:Verse". - * Book abbreviations are expected to be three letters. If the string does not match - * this format, a default value of Genesis 1:1 (GEN 1:1) is returned. - * - * @param refString - The scripture reference string to be parsed. - * @returns An object containing the book abbreviation, chapter number, and verse number. - * - * @example - * ```typescript - * // Extracts and returns { book: "MAT", chapter: 28, verse: 19 } - * const result = extractBookChapterVerse("MAT 28:19"); - * ``` - * - * @example - * ```typescript - * // Returns the default { book: "GEN", chapter: 1, verse: 1 } for non-matching strings - * const result = extractBookChapterVerse("Not a valid reference"); - * ``` - */ -export const extractBookChapterVerse = ( - refString: string -): { bookID: string; chapter: number; verse: number } => { - const match = refString.match(/([A-Za-z0-9]{3}) (\d+):(\d+)/); - - return match - ? { - bookID: match[1], - chapter: parseInt(match[2], 10), - verse: parseInt(match[3], 10), - } - : { bookID: "GEN", chapter: 1, verse: 1 }; -}; diff --git a/src/utils/fileUtils.ts b/src/utils/fileUtils.ts index d172adf08..4eeb7b003 100644 --- a/src/utils/fileUtils.ts +++ b/src/utils/fileUtils.ts @@ -1,6 +1,5 @@ // eslint-disable-next-line @typescript-eslint/naming-convention import * as vscode from "vscode"; -import * as path from "path"; import { ChatMessageThread, NotebookCommentThread } from "../../types"; import { getWorkSpaceUri } from "./index"; diff --git a/src/utils/formatters.ts b/src/utils/formatters.ts deleted file mode 100644 index 38cddee67..000000000 --- a/src/utils/formatters.ts +++ /dev/null @@ -1,16 +0,0 @@ -export function formatFileSize(bytes: number | undefined | null): string { - if (bytes === undefined || bytes === null) { - return '0 B'; - } - - const units = ['B', 'KB', 'MB', 'GB']; - let size = Math.abs(bytes); // Handle negative numbers gracefully - let unitIndex = 0; - - while (size >= 1024 && unitIndex < units.length - 1) { - size /= 1024; - unitIndex++; - } - - return `${size.toFixed(1)} ${units[unitIndex]}`; -} diff --git a/src/utils/languageUtils.ts b/src/utils/languageUtils.ts index c4f9967c2..82476c4ca 100644 --- a/src/utils/languageUtils.ts +++ b/src/utils/languageUtils.ts @@ -1,63730 +1,25 @@ -// Get the languages from the ./iso-639-3.tab file -// import * as vscode from "vscode"; -import { LanguageMetadata } from "codex-types"; +import { LanguageMetadata, ScriptDirection } from "codex-types"; +import isoLanguageData from "./languages.json"; -const isoLanguageData = [ - { - Id: "aaa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ghotuo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aab", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alumu-Tesu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aac", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aad", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aae", - Scope: "I", - Language_Type: "L", - Ref_Name: "ArbëreshëAlbanian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aaf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aranadan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ambrak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aah", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abu'Arapesh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aai", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arifama-Miniafia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aak", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ankave", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aal", - Scope: "I", - Language_Type: "L", - Ref_Name: "Afade", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aan", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anambé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aao", - Scope: "I", - Language_Type: "L", - Ref_Name: "AlgerianSaharanArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "aap", - Scope: "I", - Language_Type: "L", - Ref_Name: "ParáArára", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aaq", - Scope: "I", - Language_Type: "E", - Ref_Name: "EasternAbnaki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aar", - Part2b: "aar", - Part2t: "aar", - Part1: "aa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Afar", - Comment: null, - }, - { - Id: "aas", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aasáx", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aat", - Scope: "I", - Language_Type: "L", - Ref_Name: "ArvanitikaAlbanian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aau", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aaw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Solong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aax", - Scope: "I", - Language_Type: "L", - Ref_Name: "MandoboAtas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aaz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amarasi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aba", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bankon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abc", - Scope: "I", - Language_Type: "L", - Ref_Name: "AmbalaAyta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manide", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abe", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternAbnaki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abf", - Scope: "I", - Language_Type: "L", - Ref_Name: "AbaiSungai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abh", - Scope: "I", - Language_Type: "L", - Ref_Name: "TajikiArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "abi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abidji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abj", - Scope: "I", - Language_Type: "E", - Ref_Name: "Aka-Bea", - Comment: null, - }, - { - Id: "abk", - Part2b: "abk", - Part2t: "abk", - Part1: "ab", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abkhazian", - Comment: null, - }, - { - Id: "abl", - Scope: "I", - Language_Type: "L", - Ref_Name: "LampungNyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abanyom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abp", - Scope: "I", - Language_Type: "L", - Ref_Name: "AbellenAyta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abaza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abron", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abs", - Scope: "I", - Language_Type: "L", - Ref_Name: "AmboneseMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ambulas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abure", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abv", - Scope: "I", - Language_Type: "L", - Ref_Name: "BaharnaArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "abw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Inabaknon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aby", - Scope: "I", - Language_Type: "L", - Ref_Name: "AnemeWake", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "abz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aca", - Scope: "I", - Language_Type: "L", - Ref_Name: "Achagua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "acb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Áncá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "acd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gikyode", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ace", - Part2b: "ace", - Part2t: "ace", - Scope: "I", - Language_Type: "L", - Ref_Name: "Achinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "acf", - Scope: "I", - Language_Type: "L", - Ref_Name: "SaintLucianCreoleFrench", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ach", - Part2b: "ach", - Part2t: "ach", - Scope: "I", - Language_Type: "L", - Ref_Name: "Acoli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aci", - Scope: "I", - Language_Type: "E", - Ref_Name: "Aka-Cari", - Comment: null, - }, - { - Id: "ack", - Scope: "I", - Language_Type: "E", - Ref_Name: "Aka-Kora", - Comment: null, - }, - { - Id: "acl", - Scope: "I", - Language_Type: "E", - Ref_Name: "Akar-Bale", - Comment: null, - }, - { - Id: "acm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MesopotamianArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "acn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Achang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "acp", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternAcipa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "acq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ta'izzi-AdeniArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "acr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Achi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "acs", - Scope: "I", - Language_Type: "E", - Ref_Name: "Acroá", - Comment: null, - }, - { - Id: "act", - Scope: "I", - Language_Type: "L", - Ref_Name: "Achterhoeks", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "acu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Achuar-Shiwiar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "acv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Achumawi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "acw", - Scope: "I", - Language_Type: "L", - Ref_Name: "HijaziArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "acx", - Scope: "I", - Language_Type: "L", - Ref_Name: "OmaniArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "acy", - Scope: "I", - Language_Type: "L", - Ref_Name: "CypriotArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "acz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Acheron", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ada", - Part2b: "ada", - Part2t: "ada", - Scope: "I", - Language_Type: "L", - Ref_Name: "Adangme", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "adb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Atauran", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "add", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lidzonka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ade", - Scope: "I", - Language_Type: "L", - Ref_Name: "Adele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "adf", - Scope: "I", - Language_Type: "L", - Ref_Name: "DhofariArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "adg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Andegerebinha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "adh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Adhola", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "adi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Adi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "adj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Adioukrou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "adl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Galo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "adn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Adang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ado", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "adq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Adangbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "adr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Adonara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ads", - Scope: "I", - Language_Type: "L", - Ref_Name: "AdamorobeSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "adt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Adnyamathanha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "adu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aduge", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "adw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amundava", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "adx", - Scope: "I", - Language_Type: "L", - Ref_Name: "AmdoTibetan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ady", - Part2b: "ady", - Part2t: "ady", - Scope: "I", - Language_Type: "L", - Ref_Name: "Adyghe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "adz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Adzera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aea", - Scope: "I", - Language_Type: "E", - Ref_Name: "Areba", - Comment: null, - }, - { - Id: "aeb", - Scope: "I", - Language_Type: "L", - Ref_Name: "TunisianArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "aec", - Scope: "I", - Language_Type: "L", - Ref_Name: "SaidiArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "aed", - Scope: "I", - Language_Type: "L", - Ref_Name: "ArgentineSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aee", - Scope: "I", - Language_Type: "L", - Ref_Name: "NortheastPashai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aek", - Scope: "I", - Language_Type: "L", - Ref_Name: "Haeke", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ael", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ambele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aem", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aen", - Scope: "I", - Language_Type: "L", - Ref_Name: "ArmenianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aeq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aer", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aer", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternArrernte", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aes", - Scope: "I", - Language_Type: "E", - Ref_Name: "Alsea", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aeu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akeu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aew", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ambakich", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aey", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aez", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aeka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "afb", - Scope: "I", - Language_Type: "L", - Ref_Name: "GulfArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "afd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Andai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "afe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Putukwam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "afg", - Scope: "I", - Language_Type: "L", - Ref_Name: "AfghanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "afh", - Part2b: "afh", - Part2t: "afh", - Scope: "I", - Language_Type: "C", - Ref_Name: "Afrihili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "afi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akrukay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "afk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nanubae", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "afn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Defaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "afo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eloyi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "afp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tapei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "afr", - Part2b: "afr", - Part2t: "afr", - Part1: "af", - Scope: "I", - Language_Type: "L", - Ref_Name: "Afrikaans", - Comment: null, - }, - { - Id: "afs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Afro-SeminoleCreole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aft", - Scope: "I", - Language_Type: "L", - Ref_Name: "Afitti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "afu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awutu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "afz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Obokuitai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aga", - Scope: "I", - Language_Type: "E", - Ref_Name: "Aguano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Legbo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Agatu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Agarabi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "age", - Scope: "I", - Language_Type: "L", - Ref_Name: "Angal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arguni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Angor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngelima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Agariya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Argobba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agk", - Scope: "I", - Language_Type: "L", - Ref_Name: "IsarogAgta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fembe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Angaataha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Agutaynen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ago", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tainae", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aghem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aguaruna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ags", - Scope: "I", - Language_Type: "L", - Ref_Name: "Esimbi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agt", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralCagayanAgta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aguacateco", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agv", - Scope: "I", - Language_Type: "L", - Ref_Name: "RemontadoDumagat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kahua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aghul", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agy", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernAlta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "agz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mt.IrigaAgta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aha", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ahanta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ahb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Axamb", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ahg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Qimant", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ahh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aghu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ahi", - Scope: "I", - Language_Type: "L", - Ref_Name: "TiagbamrinAizi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ahk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ahl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Igo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ahm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MobumrinAizi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ahn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Àhàn", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aho", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ahom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ahp", - Scope: "I", - Language_Type: "L", - Ref_Name: "AproumuAizi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ahr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ahirani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ahs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ashe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aht", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ahtena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aia", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arosi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aib", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ainu(China)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aic", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ainbai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aid", - Scope: "I", - Language_Type: "E", - Ref_Name: "Alngith", - Comment: null, - }, - { - Id: "aie", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aif", - Scope: "I", - Language_Type: "L", - Ref_Name: "Agi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aig", - Scope: "I", - Language_Type: "L", - Ref_Name: "AntiguaandBarbudaCreoleEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aih", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ai-Cham", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aii", - Scope: "I", - Language_Type: "L", - Ref_Name: "AssyrianNeo-Aramaic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aij", - Scope: "I", - Language_Type: "L", - Ref_Name: "LishanidNoshan", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "aik", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ake", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ail", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aimele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aim", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aimol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ain", - Part2b: "ain", - Part2t: "ain", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ainu(Japan)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aio", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aiton", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aip", - Scope: "I", - Language_Type: "L", - Ref_Name: "Burumakok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aiq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aimaq", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "air", - Scope: "I", - Language_Type: "L", - Ref_Name: "Airoran", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ait", - Scope: "I", - Language_Type: "E", - Ref_Name: "Arikem", - Comment: null, - }, - { - Id: "aiw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aix", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aighon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aiy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aja", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aja(SouthSudan)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ajg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aja(Benin)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aji", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ajië", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ajn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Andajin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ajs", - Scope: "I", - Language_Type: "L", - Ref_Name: "AlgerianJewishSignLanguage", - Comment: null, - }, - { - Id: "aju", - Scope: "I", - Language_Type: "L", - Ref_Name: "Judeo-MoroccanArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "ajw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ajawa", - Comment: null, - }, - { - Id: "ajz", - Scope: "I", - Language_Type: "L", - Ref_Name: "AmriKarbi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aka", - Part2b: "aka", - Part2t: "aka", - Part1: "ak", - Scope: "M", - Language_Type: "L", - Ref_Name: "Akan", - Comment: null, - }, - { - Id: "akb", - Scope: "I", - Language_Type: "L", - Ref_Name: "BatakAngkola", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "akc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mpur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "akd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ukpet-Ehom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ake", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akawaio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "akf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akpa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "akg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anakalangu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "akh", - Scope: "I", - Language_Type: "L", - Ref_Name: "AngalHeneng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aki", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aiome", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "akj", - Scope: "I", - Language_Type: "E", - Ref_Name: "Aka-Jeru", - Comment: null, - }, - { - Id: "akk", - Part2b: "akk", - Part2t: "akk", - Scope: "I", - Language_Type: "H", - Ref_Name: "Akkadian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "akl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aklanon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "akm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Aka-Bo", - Comment: null, - }, - { - Id: "ako", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akurio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "akp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Siwu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "akq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "akr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Araki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aks", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akaselem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "akt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akolet", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aku", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "akv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akhvakh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "akw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "akx", - Scope: "I", - Language_Type: "E", - Ref_Name: "Aka-Kede", - Comment: null, - }, - { - Id: "aky", - Scope: "I", - Language_Type: "E", - Ref_Name: "Aka-Kol", - Comment: null, - }, - { - Id: "akz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alabama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ala", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alago", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "alc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Qawasqar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ald", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alladian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ale", - Part2b: "ale", - Part2t: "ale", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aleut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "alf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alege", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "alh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ali", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amaimon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "alj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alangan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "alk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "all", - Scope: "I", - Language_Type: "L", - Ref_Name: "Allar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "alm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amblong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aln", - Scope: "I", - Language_Type: "L", - Ref_Name: "GhegAlbanian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "alo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Larike-Wakasihu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "alp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alune", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "alq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Algonquin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "alr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alutor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "als", - Scope: "I", - Language_Type: "L", - Ref_Name: "ToskAlbanian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "alt", - Part2b: "alt", - Part2t: "alt", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernAltai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "alu", - Scope: "I", - Language_Type: "L", - Ref_Name: "'Are'are", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "alw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alaba-K’abeena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "alx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aly", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alyawarr", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "alz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ama", - Scope: "I", - Language_Type: "E", - Ref_Name: "Amanayé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ambo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amahuaca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ame", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yanesha'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hamer-Banna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amurdak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amh", - Part2b: "amh", - Part2t: "amh", - Part1: "am", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amharic", - Comment: null, - }, - { - Id: "ami", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amis", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amdang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ambai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aml", - Scope: "I", - Language_Type: "L", - Ref_Name: "War-Jaintia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ama(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amanab", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alamblak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amahai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amarakaeri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ams", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernAmami-Oshima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amu", - Scope: "I", - Language_Type: "L", - Ref_Name: "GuerreroAmuzgo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ambelau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amw", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternNeo-Aramaic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anmatyerre", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "amz", - Scope: "I", - Language_Type: "E", - Ref_Name: "Atampaya", - Comment: null, - }, - { - Id: "ana", - Scope: "I", - Language_Type: "E", - Ref_Name: "Andaqui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "anb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Andoa", - Comment: null, - }, - { - Id: "anc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "and", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ansus", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ane", - Scope: "I", - Language_Type: "L", - Ref_Name: "Xârâcùù", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "anf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Animere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ang", - Part2b: "ang", - Part2t: "ang", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldEnglish(ca.450-1100)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "anh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nend", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ani", - Scope: "I", - Language_Type: "L", - Ref_Name: "Andi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "anj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ank", - Scope: "I", - Language_Type: "L", - Ref_Name: "Goemai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "anl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anu-HkongsoChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "anm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ann", - Scope: "I", - Language_Type: "L", - Ref_Name: "Obolo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ano", - Scope: "I", - Language_Type: "L", - Ref_Name: "Andoque", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "anp", - Part2b: "anp", - Part2t: "anp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Angika", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "anq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jarawa(India)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "anr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Andh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ans", - Scope: "I", - Language_Type: "E", - Ref_Name: "Anserma", - Comment: null, - }, - { - Id: "ant", - Scope: "I", - Language_Type: "L", - Ref_Name: "Antakarinya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "anu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anuak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "anv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Denya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "anw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anaang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "anx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Andra-Hus", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "any", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anyin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "anz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aoa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Angolar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aob", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aoc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pemon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aod", - Scope: "I", - Language_Type: "L", - Ref_Name: "Andarum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aoe", - Scope: "I", - Language_Type: "L", - Ref_Name: "AngalEnen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aof", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bragat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aog", - Scope: "I", - Language_Type: "L", - Ref_Name: "Angoram", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aoi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anindilyakwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aoj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mufian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aok", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arhö", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aol", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aom", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ömie", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aon", - Scope: "I", - Language_Type: "L", - Ref_Name: "BumbitaArapesh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aor", - Scope: "I", - Language_Type: "E", - Ref_Name: "Aore", - Comment: null, - }, - { - Id: "aos", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taikat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aot", - Scope: "I", - Language_Type: "L", - Ref_Name: "Atong(India)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aou", - Scope: "I", - Language_Type: "L", - Ref_Name: "A'ou", - Comment: null, - }, - { - Id: "aox", - Scope: "I", - Language_Type: "L", - Ref_Name: "Atorada", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aoz", - Scope: "I", - Language_Type: "L", - Ref_Name: "UabMeto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sa'a", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apc", - Scope: "I", - Language_Type: "L", - Ref_Name: "LevantineArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "apd", - Scope: "I", - Language_Type: "L", - Ref_Name: "SudaneseArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "ape", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bukiyip", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apf", - Scope: "I", - Language_Type: "L", - Ref_Name: "PahananAgta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ampanang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aph", - Scope: "I", - Language_Type: "L", - Ref_Name: "Athpariya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "api", - Scope: "I", - Language_Type: "L", - Ref_Name: "Apiaká", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apj", - Scope: "I", - Language_Type: "L", - Ref_Name: "JicarillaApache", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apk", - Scope: "I", - Language_Type: "L", - Ref_Name: "KiowaApache", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apl", - Scope: "I", - Language_Type: "L", - Ref_Name: "LipanApache", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mescalero-ChiricahuaApache", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Apinayé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ambul", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "app", - Scope: "I", - Language_Type: "L", - Ref_Name: "Apma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apq", - Scope: "I", - Language_Type: "L", - Ref_Name: "A-Pucikwar", - Comment: null, - }, - { - Id: "apr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arop-Lokep", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aps", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arop-Sissano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Apatani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Apurinã", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apv", - Scope: "I", - Language_Type: "E", - Ref_Name: "Alapmunte", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apw", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternApache", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aputai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Apalaí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "apz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Safeyoka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aqc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Archi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aqd", - Scope: "I", - Language_Type: "L", - Ref_Name: "AmpariDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aqg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arigidi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aqk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aninka", - Comment: null, - }, - { - Id: "aqm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Atohwaim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aqn", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernAlta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aqp", - Scope: "I", - Language_Type: "E", - Ref_Name: "Atakapa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aqr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arhâ", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aqt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Angaité", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aqz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akuntsu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ara", - Part2b: "ara", - Part2t: "ara", - Part1: "ar", - Scope: "M", - Language_Type: "L", - Ref_Name: "Arabic", - Comment: null, - }, - { - Id: "arb", - Scope: "I", - Language_Type: "L", - Ref_Name: "StandardArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "arc", - Part2b: "arc", - Part2t: "arc", - Scope: "I", - Language_Type: "H", - Ref_Name: "OfficialAramaic(700-300BCE)", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "ard", - Scope: "I", - Language_Type: "E", - Ref_Name: "Arabana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "are", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternArrarnta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "arg", - Part2b: "arg", - Part2t: "arg", - Part1: "an", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aragonese", - Comment: null, - }, - { - Id: "arh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arhuaco", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ari", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arikara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "arj", - Scope: "I", - Language_Type: "E", - Ref_Name: "Arapaso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ark", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arikapú", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "arl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arabela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "arn", - Part2b: "arn", - Part2t: "arn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mapudungun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aro", - Scope: "I", - Language_Type: "L", - Ref_Name: "Araona", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "arp", - Part2b: "arp", - Part2t: "arp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arapaho", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "arq", - Scope: "I", - Language_Type: "L", - Ref_Name: "AlgerianArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "arr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karo(Brazil)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ars", - Scope: "I", - Language_Type: "L", - Ref_Name: "NajdiArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "aru", - Scope: "I", - Language_Type: "E", - Ref_Name: "Aruá(AmazonasState)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "arv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arbore", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "arw", - Part2b: "arw", - Part2t: "arw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arawak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "arx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aruá(RodoniaState)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ary", - Scope: "I", - Language_Type: "L", - Ref_Name: "MoroccanArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "arz", - Scope: "I", - Language_Type: "L", - Ref_Name: "EgyptianArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "asa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Asu(Tanzania)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Assiniboine", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CasuarinaCoastAsmat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ase", - Scope: "I", - Language_Type: "L", - Ref_Name: "AmericanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Auslan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cishingini", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ash", - Scope: "I", - Language_Type: "E", - Ref_Name: "Abishira", - Comment: null, - }, - { - Id: "asi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buruwai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ask", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ashkun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Asilulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asm", - Part2b: "asm", - Part2t: "asm", - Part1: "as", - Scope: "I", - Language_Type: "L", - Ref_Name: "Assamese", - Comment: null, - }, - { - Id: "asn", - Scope: "I", - Language_Type: "L", - Ref_Name: "XingúAsuriní", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aso", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asp", - Scope: "I", - Language_Type: "L", - Ref_Name: "AlgerianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asq", - Scope: "I", - Language_Type: "L", - Ref_Name: "AustrianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Asuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ass", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ipulo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ast", - Part2b: "ast", - Part2t: "ast", - Scope: "I", - Language_Type: "L", - Ref_Name: "Asturian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asu", - Scope: "I", - Language_Type: "L", - Ref_Name: "TocantinsAsurini", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Asoa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asw", - Scope: "I", - Language_Type: "L", - Ref_Name: "AustralianAboriginesSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Muratayak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asy", - Scope: "I", - Language_Type: "L", - Ref_Name: "YaosakorAsmat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "asz", - Scope: "I", - Language_Type: "L", - Ref_Name: "As", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ata", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pele-Ata", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zaiwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Atsahuaca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atd", - Scope: "I", - Language_Type: "L", - Ref_Name: "AtaManobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ate", - Scope: "I", - Language_Type: "L", - Ref_Name: "Atemble", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atg", - Scope: "I", - Language_Type: "L", - Ref_Name: "IvbieNorth-Okpela-Arhe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ati", - Scope: "I", - Language_Type: "L", - Ref_Name: "Attié", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Atikamekw", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ati", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mt.IrayaAgta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ata", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ashtiani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ato", - Scope: "I", - Language_Type: "L", - Ref_Name: "Atong(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atp", - Scope: "I", - Language_Type: "L", - Ref_Name: "PudtolAtta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aralle-Tabulahan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waimiri-Atroari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ats", - Scope: "I", - Language_Type: "L", - Ref_Name: "GrosVentre", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "att", - Scope: "I", - Language_Type: "L", - Ref_Name: "PamplonaAtta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Reel", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atv", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernAltai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Atsugewi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arutani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aty", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aneityum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "atz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aua", - Scope: "I", - Language_Type: "L", - Ref_Name: "Asumboa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aub", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alugu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "auc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waorani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aud", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anuta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aug", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aguna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "auh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aushi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aui", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anuki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "auj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awjilah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "auk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Heyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aul", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aulua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Asu(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aun", - Scope: "I", - Language_Type: "L", - Ref_Name: "MolmoOne", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "auo", - Scope: "I", - Language_Type: "E", - Ref_Name: "Auyokawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aup", - Scope: "I", - Language_Type: "L", - Ref_Name: "Makayam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "auq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anus", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aur", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aruek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aut", - Scope: "I", - Language_Type: "L", - Ref_Name: "Austral", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "auu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Auye", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "auw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awyi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aux", - Scope: "I", - Language_Type: "E", - Ref_Name: "Aurá", - Comment: null, - }, - { - Id: "auy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awiyaana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "auz", - Scope: "I", - Language_Type: "L", - Ref_Name: "UzbekiArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "ava", - Part2b: "ava", - Part2t: "ava", - Part1: "av", - Scope: "I", - Language_Type: "L", - Ref_Name: "Avaric", - Comment: null, - }, - { - Id: "avb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Avau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "avd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alviri-Vidari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ave", - Part2b: "ave", - Part2t: "ave", - Part1: "ae", - Scope: "I", - Language_Type: "H", - Ref_Name: "Avestan", - Comment: null, - }, - { - Id: "avi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Avikam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "avk", - Scope: "I", - Language_Type: "C", - Ref_Name: "Kotava", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "avl", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternEgyptianBedawiArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "avm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Angkamuthi", - Comment: null, - }, - { - Id: "avn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Avatime", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "avo", - Scope: "I", - Language_Type: "E", - Ref_Name: "Agavotaguerra", - Comment: null, - }, - { - Id: "avs", - Scope: "I", - Language_Type: "E", - Ref_Name: "Aushiri", - Comment: null, - }, - { - Id: "avt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Au", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "avu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Avokaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "avv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Avá-Canoeiro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awa", - Part2b: "awa", - Part2t: "awa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awadhi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awa(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cicipu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awetí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Anguthimri", - Comment: null, - }, - { - Id: "awh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awbono", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aekyom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Awabakal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arawum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awngi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aws", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthAwyu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Araweté", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awu", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralAwyu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awv", - Scope: "I", - Language_Type: "L", - Ref_Name: "JairAwyu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aww", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "awy", - Scope: "I", - Language_Type: "L", - Ref_Name: "EderaAwyu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "axb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Abipon", - Comment: null, - }, - { - Id: "axe", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ayerrerenge", - Comment: null, - }, - { - Id: "axg", - Scope: "I", - Language_Type: "E", - Ref_Name: "MatoGrossoArára", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "axk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yaka(CentralAfricanRepublic)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "axl", - Scope: "I", - Language_Type: "E", - Ref_Name: "LowerSouthernAranda", - Comment: null, - }, - { - Id: "axm", - Scope: "I", - Language_Type: "H", - Ref_Name: "MiddleArmenian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "axx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Xârâgurè", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aya", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ayb", - Scope: "I", - Language_Type: "L", - Ref_Name: "AyizoGbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ayc", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernAymara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ayd", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ayabadhu", - Comment: null, - }, - { - Id: "aye", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ayere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ayg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ginyanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ayh", - Scope: "I", - Language_Type: "L", - Ref_Name: "HadramiArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "ayi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Leyigha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ayk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akuku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ayl", - Scope: "I", - Language_Type: "L", - Ref_Name: "LibyanArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "aym", - Part2b: "aym", - Part2t: "aym", - Part1: "ay", - Scope: "M", - Language_Type: "L", - Ref_Name: "Aymara", - Comment: null, - }, - { - Id: "ayn", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanaaniArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "ayo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ayoreo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ayp", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthMesopotamianArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "ayq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ayi(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ayr", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralAymara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ays", - Scope: "I", - Language_Type: "L", - Ref_Name: "SorsogonAyta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ayt", - Scope: "I", - Language_Type: "L", - Ref_Name: "MagbukunAyta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ayu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ayu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ayz", - Scope: "I", - Language_Type: "L", - Ref_Name: "MaiBrat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aza", - Scope: "I", - Language_Type: "L", - Ref_Name: "Azha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "azb", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthAzerbaijani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "azd", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternDurangoNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "aze", - Part2b: "aze", - Part2t: "aze", - Part1: "az", - Scope: "M", - Language_Type: "L", - Ref_Name: "Azerbaijani", - Comment: null, - }, - { - Id: "azg", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanPedroAmuzgosAmuzgo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "azj", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthAzerbaijani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "azm", - Scope: "I", - Language_Type: "L", - Ref_Name: "IpalapaAmuzgo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "azn", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternDurangoNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "azo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awing", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "azt", - Scope: "I", - Language_Type: "L", - Ref_Name: "FaireAtta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "azz", - Scope: "I", - Language_Type: "L", - Ref_Name: "HighlandPueblaNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "baa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Babatana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bab", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bainouk-Gunyuño", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bac", - Scope: "I", - Language_Type: "L", - Ref_Name: "Badui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bae", - Scope: "I", - Language_Type: "E", - Ref_Name: "Baré", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "baf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nubaca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tuki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bah", - Scope: "I", - Language_Type: "L", - Ref_Name: "BahamasCreoleEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "baj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Barakai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bak", - Part2b: "bak", - Part2t: "bak", - Part1: "ba", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bashkir", - Comment: null, - }, - { - Id: "bal", - Part2b: "bal", - Part2t: "bal", - Scope: "M", - Language_Type: "L", - Ref_Name: "Baluchi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bam", - Part2b: "bam", - Part2t: "bam", - Part1: "bm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bambara", - Comment: null, - }, - { - Id: "ban", - Part2b: "ban", - Part2t: "ban", - Scope: "I", - Language_Type: "L", - Ref_Name: "Balinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bao", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waimaha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bap", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bantawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bar", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bavarian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bas", - Part2b: "bas", - Part2t: "bas", - Scope: "I", - Language_Type: "L", - Ref_Name: "Basa(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bau", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bada(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bav", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vengo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "baw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bambili-Bambui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bax", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bamun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bay", - Scope: "I", - Language_Type: "L", - Ref_Name: "Batuley", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bba", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baatonum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Barai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbc", - Scope: "I", - Language_Type: "L", - Ref_Name: "BatakToba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bangba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baibai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Barama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bugan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Barombi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ghomálá'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Babanki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bats", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Babango", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uneapa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbo", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernBoboMadaré", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbp", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestCentralBanda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bamali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Girawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bakpinka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mburku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kulung(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karnai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bbx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bubia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bby", - Scope: "I", - Language_Type: "L", - Ref_Name: "Befang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bca", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralBai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bainouk-Samik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcc", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernBalochi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcd", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthBabar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bce", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bamenyam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bamu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcg", - Scope: "I", - Language_Type: "L", - Ref_Name: "BagaPokur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bch", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bariai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bci", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baoulé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bardi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bck", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bunuba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcl", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralBikol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bannoni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bali(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bco", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaluli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bali(DemocraticRepublicofCongo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bench", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Babine", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kohumono", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bct", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bendi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcu", - Scope: "I", - Language_Type: "L", - Ref_Name: "AwadBing", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shoo-Minda-Nye", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bacama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bcz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bainouk-Gunyaamolo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bda", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bayot", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Basap", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Emberá-Baudó", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bunama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bde", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bade", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Biage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bonggi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baka(SouthSudan)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Burun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bai(SouthSudan)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Budukh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdl", - Scope: "I", - Language_Type: "L", - Ref_Name: "IndonesianBajau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buduma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baldemu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Morom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bende", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bahnar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdr", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestCoastBajau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bds", - Scope: "I", - Language_Type: "L", - Ref_Name: "Burunge", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bokoto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oroko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdv", - Scope: "I", - Language_Type: "L", - Ref_Name: "BodoParja", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baham", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Budong-Budong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bandjalang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bdz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Badeshi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bea", - Scope: "I", - Language_Type: "L", - Ref_Name: "Beaver", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "beb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bebele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bec", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iceve-Maci", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bed", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bedoanas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bee", - Scope: "I", - Language_Type: "L", - Ref_Name: "Byangsi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bef", - Scope: "I", - Language_Type: "L", - Ref_Name: "Benabena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "beg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Belait", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "beh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Biali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bei", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bekati'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bej", - Part2b: "bej", - Part2t: "bej", - Scope: "I", - Language_Type: "L", - Ref_Name: "Beja", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bek", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bebeli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bel", - Part2b: "bel", - Part2t: "bel", - Part1: "be", - Scope: "I", - Language_Type: "L", - Ref_Name: "Belarusian", - Comment: null, - }, - { - Id: "bem", - Part2b: "bem", - Part2t: "bem", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bemba(Zambia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ben", - Part2b: "ben", - Part2t: "ben", - Part1: "bn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bengali", - Comment: null, - }, - { - Id: "beo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Beami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bep", - Scope: "I", - Language_Type: "L", - Ref_Name: "Besoa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "beq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Beembe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bes", - Scope: "I", - Language_Type: "L", - Ref_Name: "Besme", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bet", - Scope: "I", - Language_Type: "L", - Ref_Name: "GuiberouaBéte", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "beu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Blagar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bev", - Scope: "I", - Language_Type: "L", - Ref_Name: "DaloaBété", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bew", - Scope: "I", - Language_Type: "L", - Ref_Name: "Betawi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bex", - Scope: "I", - Language_Type: "L", - Ref_Name: "JurModo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bey", - Scope: "I", - Language_Type: "L", - Ref_Name: "Beli(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bez", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bena(Tanzania)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfb", - Scope: "I", - Language_Type: "L", - Ref_Name: "PauriBareli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfc", - Scope: "I", - Language_Type: "L", - Ref_Name: "PanyiBai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bafut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Betaf", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bff", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bofi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfg", - Scope: "I", - Language_Type: "L", - Ref_Name: "BusangKayan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Blafe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfi", - Scope: "I", - Language_Type: "L", - Ref_Name: "BritishSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bafanji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfk", - Scope: "I", - Language_Type: "L", - Ref_Name: "BanKhorSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Banda-Ndélé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mmen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bunak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfo", - Scope: "I", - Language_Type: "L", - Ref_Name: "MalbaBirifor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Beba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Badaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bazigar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfs", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernBai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bft", - Scope: "I", - Language_Type: "L", - Ref_Name: "Balti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gahri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bondo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bantayanon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bagheli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bfz", - Scope: "I", - Language_Type: "L", - Ref_Name: "MahasuPahari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bga", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gwamhi-Wuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bobongko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Haryanvi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgd", - Scope: "I", - Language_Type: "L", - Ref_Name: "RathwiBareli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bge", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bauria", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bangandu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bugun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Giangan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bangolan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bo(Laos)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgn", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternBalochi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgo", - Scope: "I", - Language_Type: "L", - Ref_Name: "BagaKoga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgp", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternBalochi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bagri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgr", - Scope: "I", - Language_Type: "L", - Ref_Name: "BawmChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tagabawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bughotu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbongno", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Warkay-Bipim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bhatri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgx", - Scope: "I", - Language_Type: "L", - Ref_Name: "BalkanGagauzTurkish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Benggoi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bgz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Banggai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bha", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bharia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bhili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Biga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bhadrawahi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bhaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Odiai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Binandere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bukharic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bhilali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bahing", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bimin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bathari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhn", - Scope: "I", - Language_Type: "L", - Ref_Name: "BohtanNeo-Aramaic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bho", - Part2b: "bho", - Part2t: "bho", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bhojpuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhq", - Scope: "I", - Language_Type: "L", - Ref_Name: "TukangBesiSouth", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhr", - Scope: "I", - Language_Type: "L", - Ref_Name: "BaraMalagasy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buwal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bht", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bhattiyali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bhunjia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bahau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Biak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bhalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bhele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bhz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bada(Indonesia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bia", - Scope: "I", - Language_Type: "L", - Ref_Name: "Badimaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bib", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bissa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bid", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bidiyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bie", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bepour", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bif", - Scope: "I", - Language_Type: "L", - Ref_Name: "Biafada", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "big", - Scope: "I", - Language_Type: "L", - Ref_Name: "Biangai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bik", - Part2b: "bik", - Part2t: "bik", - Scope: "M", - Language_Type: "L", - Ref_Name: "Bikol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bil", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bile", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bim", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bimoba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bin", - Part2b: "bin", - Part2t: "bin", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bini", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bio", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bip", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bila", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "biq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bipi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bir", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bisorio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bis", - Part2b: "bis", - Part2t: "bis", - Part1: "bi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bislama", - Comment: null, - }, - { - Id: "bit", - Scope: "I", - Language_Type: "L", - Ref_Name: "Berinomo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "biu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Biete", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "biv", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernBirifor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "biw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kol(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bix", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bijori", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "biy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Birhor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "biz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baloi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bja", - Scope: "I", - Language_Type: "L", - Ref_Name: "Budza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Banggarla", - Comment: null, - }, - { - Id: "bjc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bariji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bje", - Scope: "I", - Language_Type: "L", - Ref_Name: "Biao-JiaoMien", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjf", - Scope: "I", - Language_Type: "L", - Ref_Name: "BarzaniJewishNeo-Aramaic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bidyogo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bahinemo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bji", - Scope: "I", - Language_Type: "L", - Ref_Name: "Burji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanauji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Barok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bulu(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bajelani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Banjar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mid-SouthernBanda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fanamaket", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Binumarien", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bajan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Balanta-Ganja", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bju", - Scope: "I", - Language_Type: "L", - Ref_Name: "Busuu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bedjond", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bakwé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjx", - Scope: "I", - Language_Type: "L", - Ref_Name: "BanaoItneg", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bjy", - Scope: "I", - Language_Type: "E", - Ref_Name: "Bayali", - Comment: null, - }, - { - Id: "bjz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baruga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kyak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baka(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Binukid", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Beeke", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buraka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bakoko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bki", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pande", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Brokskat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Berik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kom(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bukitan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bko", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwa'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Boko(DemocraticRepublicofCongo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bakairí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bakumpai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bks", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernSorsoganon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Boloki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bku", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buhid", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bekwarra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bekwel", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baikeno", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bky", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bokyi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bkz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bungku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bla", - Part2b: "bla", - Part2t: "bla", - Scope: "I", - Language_Type: "L", - Ref_Name: "Siksika", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bilua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blc", - Scope: "I", - Language_Type: "L", - Ref_Name: "BellaCoola", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bld", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bolango", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ble", - Scope: "I", - Language_Type: "L", - Ref_Name: "Balanta-Kentohe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuwaa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bli", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bolia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bolongan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pa'oKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bll", - Scope: "I", - Language_Type: "E", - Ref_Name: "Biloxi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Beli(SouthSudan)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bln", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernCatanduanesBikol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anii", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Blablanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baluan-Pam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Blang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bls", - Scope: "I", - Language_Type: "L", - Ref_Name: "Balaesang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blt", - Scope: "I", - Language_Type: "L", - Ref_Name: "TaiDam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kibala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Balangao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mag-IndiAyta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bly", - Scope: "I", - Language_Type: "L", - Ref_Name: "Notre", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "blz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Balantak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bma", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lame", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bembe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Biem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmd", - Scope: "I", - Language_Type: "L", - Ref_Name: "BagaManduri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bme", - Scope: "I", - Language_Type: "L", - Ref_Name: "Limassa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bom-Kim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bamwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kein", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bagirmi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bote-Majhi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ghayavi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bml", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bomboli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmm", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernBetsimisarakaMalagasy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Bina(PapuaNewGuinea)", - Comment: null, - }, - { - Id: "bmo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bambalang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bulgebi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bomu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Muinane", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bms", - Scope: "I", - Language_Type: "L", - Ref_Name: "BilmaKanuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmt", - Scope: "I", - Language_Type: "L", - Ref_Name: "BiaoMon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Somba-Siawari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bomwali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baimak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bmz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baramu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bna", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bonerate", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bookan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnc", - Scope: "M", - Language_Type: "L", - Ref_Name: "Bontok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Banda(Indonesia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bne", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bintauna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Masiwang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bng", - Scope: "I", - Language_Type: "L", - Ref_Name: "Benga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bni", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bangi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnj", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternTawbuid", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bierebo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Boon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Batanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bunun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bno", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bantoanon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bola", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bantik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Butmas-Tur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bns", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bundeli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bentong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bonerif", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bisis", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bangubangu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bny", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bintulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bnz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Beezen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "boa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bob", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aweer", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bod", - Part2b: "tib", - Part2t: "bod", - Part1: "bo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tibetan", - Comment: null, - }, - { - Id: "boe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mundabli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bof", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bolon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bog", - Scope: "I", - Language_Type: "L", - Ref_Name: "BamakoSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "boh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Boma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "boi", - Scope: "I", - Language_Type: "E", - Ref_Name: "Barbareño", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "boj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anjam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bok", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bonjo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bol", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bom", - Scope: "I", - Language_Type: "L", - Ref_Name: "Berom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bon", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bine", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "boo", - Scope: "I", - Language_Type: "L", - Ref_Name: "TiemacèwèBozo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bop", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bonkiman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "boq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bogaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bor", - Scope: "I", - Language_Type: "L", - Ref_Name: "Borôro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bos", - Part2b: "bos", - Part2t: "bos", - Part1: "bs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bosnian", - Comment: null, - }, - { - Id: "bot", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bongo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bou", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bondei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bov", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tuwuli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bow", - Scope: "I", - Language_Type: "E", - Ref_Name: "Rema", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "box", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buamu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "boy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bodo(CentralAfricanRepublic)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "boz", - Scope: "I", - Language_Type: "L", - Ref_Name: "TiéyaxoBozo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Daakaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbuk", - Comment: null, - }, - { - Id: "bpd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Banda-Banda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bauni", - Comment: null, - }, - { - Id: "bpg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bonggo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bph", - Scope: "I", - Language_Type: "L", - Ref_Name: "Botlikh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bagupi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Binji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Orowe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpl", - Scope: "I", - Language_Type: "L", - Ref_Name: "BroomePearlingLuggerPidgin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Biyom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpn", - Scope: "I", - Language_Type: "L", - Ref_Name: "DzaoMin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anasi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaure", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpq", - Scope: "I", - Language_Type: "L", - Ref_Name: "BandaMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpr", - Scope: "I", - Language_Type: "L", - Ref_Name: "KoronadalBlaan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bps", - Scope: "I", - Language_Type: "L", - Ref_Name: "SaranganiBlaan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpt", - Scope: "I", - Language_Type: "E", - Ref_Name: "BarrowPoint", - Comment: null, - }, - { - Id: "bpu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bongu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpv", - Scope: "I", - Language_Type: "L", - Ref_Name: "BianMarind", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bo(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpx", - Scope: "I", - Language_Type: "L", - Ref_Name: "PalyaBareli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bishnupriya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bpz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bilba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tchumbuli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bagusa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Boko(Benin)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqf", - Scope: "I", - Language_Type: "E", - Ref_Name: "BagaKaloum", - Comment: null, - }, - { - Id: "bqg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bago-Kusuntu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bakhtiari", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "bqj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bandial", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Banda-Mbrès", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bql", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bilakura", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wumboko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqn", - Scope: "I", - Language_Type: "L", - Ref_Name: "BulgarianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Balo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Busa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Biritai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Burusu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bosngun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bamukumbit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Boguru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqv", - Scope: "I", - Language_Type: "L", - Ref_Name: "KoroWachi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buru(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baangi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqy", - Scope: "I", - Language_Type: "L", - Ref_Name: "BengkalaSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bqz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bakaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bra", - Part2b: "bra", - Part2t: "bra", - Scope: "I", - Language_Type: "L", - Ref_Name: "Braj", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Brao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brc", - Scope: "I", - Language_Type: "E", - Ref_Name: "BerbiceCreoleDutch", - Comment: null, - }, - { - Id: "brd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baraamu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bre", - Part2b: "bre", - Part2t: "bre", - Part1: "br", - Scope: "I", - Language_Type: "L", - Ref_Name: "Breton", - Comment: null, - }, - { - Id: "brf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bira", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baure", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Brahui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bri", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mokpwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bieria", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Birked", - Comment: null, - }, - { - Id: "brl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Birwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Barambu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Boruca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bro", - Scope: "I", - Language_Type: "L", - Ref_Name: "Brokkat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Barapasi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Breri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Birao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baras", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bitare", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bru", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternBru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brv", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternBru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bellari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bodo(India)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bry", - Scope: "I", - Language_Type: "L", - Ref_Name: "Burui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "brz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bilbil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abinomn", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsb", - Scope: "I", - Language_Type: "L", - Ref_Name: "BruneiBisaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bassari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bse", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wushi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bauchi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bashkardi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kati", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bassossi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bangwinji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Burushaski", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsl", - Scope: "I", - Language_Type: "E", - Ref_Name: "Basa-Gumna", - Comment: null, - }, - { - Id: "bsm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Busami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Barasana-Eduria", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bso", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsp", - Scope: "I", - Language_Type: "L", - Ref_Name: "BagaSitemu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bassa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bassa-Kontagora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bss", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akoose", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bst", - Scope: "I", - Language_Type: "L", - Ref_Name: "Basketo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bahonsuai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsv", - Scope: "I", - Language_Type: "E", - Ref_Name: "BagaSobané", - Comment: null, - }, - { - Id: "bsw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baiso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yangkam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bsy", - Scope: "I", - Language_Type: "L", - Ref_Name: "SabahBisaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bta", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bata", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bati(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btd", - Scope: "I", - Language_Type: "L", - Ref_Name: "BatakDairi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bte", - Scope: "I", - Language_Type: "E", - Ref_Name: "Gamo-Ningi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Birgit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btg", - Scope: "I", - Language_Type: "L", - Ref_Name: "GagnoaBété", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bth", - Scope: "I", - Language_Type: "L", - Ref_Name: "BiatahBidayuh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bti", - Scope: "I", - Language_Type: "L", - Ref_Name: "Burate", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btj", - Scope: "I", - Language_Type: "L", - Ref_Name: "BacaneseMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btm", - Scope: "I", - Language_Type: "L", - Ref_Name: "BatakMandailing", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ratagnon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bto", - Scope: "I", - Language_Type: "L", - Ref_Name: "RinconadaBikol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Budibud", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Batek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baetora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bts", - Scope: "I", - Language_Type: "L", - Ref_Name: "BatakSimalungun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bete-Bendi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Batu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bateri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Butuanon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btx", - Scope: "I", - Language_Type: "L", - Ref_Name: "BatakKaro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bty", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bobot", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "btz", - Scope: "I", - Language_Type: "L", - Ref_Name: "BatakAlas-Kluet", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bua", - Part2b: "bua", - Part2t: "bua", - Scope: "M", - Language_Type: "L", - Ref_Name: "Buriat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bub", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "buc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bushi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bud", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ntcham", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bue", - Scope: "I", - Language_Type: "E", - Ref_Name: "Beothuk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "buf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bushoong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bug", - Part2b: "bug", - Part2t: "bug", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buginese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "buh", - Scope: "I", - Language_Type: "L", - Ref_Name: "YounuoBunu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bui", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bongili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "buj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Basa-Gurmana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "buk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bugawac", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bul", - Part2b: "bul", - Part2t: "bul", - Part1: "bg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bulgarian", - Comment: null, - }, - { - Id: "bum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bulu(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bun", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sherbro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "buo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Terei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bup", - Scope: "I", - Language_Type: "L", - Ref_Name: "Busoa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "buq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Brem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bus", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bokobaru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "but", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bungain", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "buu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Budu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "buv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "buw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bubi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bux", - Scope: "I", - Language_Type: "L", - Ref_Name: "Boghom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "buy", - Scope: "I", - Language_Type: "L", - Ref_Name: "BullomSo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "buz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bukwen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bva", - Scope: "I", - Language_Type: "L", - Ref_Name: "Barein", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bube", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baelelea", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baeggu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bve", - Scope: "I", - Language_Type: "L", - Ref_Name: "BerauMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Boor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bonkeng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bure", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvi", - Scope: "I", - Language_Type: "L", - Ref_Name: "BelandaViri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bukat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvl", - Scope: "I", - Language_Type: "L", - Ref_Name: "BolivianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bamunka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bolgo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bumang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Birri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Burarra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bati(Indonesia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvu", - Scope: "I", - Language_Type: "L", - Ref_Name: "BukitMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvv", - Scope: "I", - Language_Type: "E", - Ref_Name: "Baniva", - Comment: null, - }, - { - Id: "bvw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Boga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dibole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baybayanon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bvz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bauzi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bwatoo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Namosi-Naitasiri-Serua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bwile", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bwaidoka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwe", - Scope: "I", - Language_Type: "L", - Ref_Name: "BweKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Boselewa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Barwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bishuo", - Comment: null, - }, - { - Id: "bwi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baniwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwj", - Scope: "I", - Language_Type: "L", - Ref_Name: "LááLááBwamu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bauwaki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bwela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Biwat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwn", - Scope: "I", - Language_Type: "L", - Ref_Name: "WunaiBunu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Boro(Ethiopia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwp", - Scope: "I", - Language_Type: "L", - Ref_Name: "MandoboBawah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwq", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernBoboMadaré", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bura-Pabir", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bws", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bomboma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bafaw-Balong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buli(Ghana)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bww", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bu-NaoBunu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwy", - Scope: "I", - Language_Type: "L", - Ref_Name: "CwiBwamu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bwz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bwisi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tairaha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxb", - Scope: "I", - Language_Type: "L", - Ref_Name: "BelandaBor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Molengue", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Birale", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bilur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bangala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buhutu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxi", - Scope: "I", - Language_Type: "E", - Ref_Name: "Pirlatapa", - Comment: null, - }, - { - Id: "bxj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bayungu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bukusu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jalkunan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MongoliaBuriat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Burduna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Barikanchi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bebil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Beele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxr", - Scope: "I", - Language_Type: "L", - Ref_Name: "RussiaBuriat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Busam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxu", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChinaBuriat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Berakou", - Comment: null, - }, - { - Id: "bxw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bankagooma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bxz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Binahari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bya", - Scope: "I", - Language_Type: "L", - Ref_Name: "Batak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bikya", - Comment: null, - }, - { - Id: "byc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ubaghara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Benyadu'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bye", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pouye", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bete", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Baygo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bhujel", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buyu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bina(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Biao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bayono", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bym", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bidjara", - Comment: null, - }, - { - Id: "byn", - Part2b: "byn", - Part2t: "byn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bilin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Biyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bumaji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byq", - Scope: "I", - Language_Type: "E", - Ref_Name: "Basay", - Comment: null, - }, - { - Id: "byr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Baruya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bys", - Scope: "I", - Language_Type: "L", - Ref_Name: "Burak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Berti", - Comment: null, - }, - { - Id: "byv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Medumba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Belhariya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Qaqet", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "byz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Banaro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bza", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bandi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Andio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzc", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernBetsimisarakaMalagasy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bribri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bze", - Scope: "I", - Language_Type: "L", - Ref_Name: "JenaamaBozo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Boikin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Babuza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzh", - Scope: "I", - Language_Type: "L", - Ref_Name: "MaposBuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bisu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzj", - Scope: "I", - Language_Type: "L", - Ref_Name: "BelizeKriolEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzk", - Scope: "I", - Language_Type: "L", - Ref_Name: "NicaraguaCreoleEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Boano(Sulawesi)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bolondo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Boano(Maluku)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bozaba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kemberano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buli(Indonesia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Biri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzs", - Scope: "I", - Language_Type: "L", - Ref_Name: "BrazilianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzt", - Scope: "I", - Language_Type: "C", - Ref_Name: "Brithenig", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Burmeso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Naami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Basa(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzx", - Scope: "I", - Language_Type: "L", - Ref_Name: "KɛlɛngaxoBozo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Obanliku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "bzz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Evant", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "caa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chortí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cab", - Scope: "I", - Language_Type: "L", - Ref_Name: "Garifuna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cac", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chuj", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cad", - Part2b: "cad", - Part2t: "cad", - Scope: "I", - Language_Type: "L", - Ref_Name: "Caddo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cae", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lehar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "caf", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernCarrier", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nivaclé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cah", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cahuarano", - Comment: null, - }, - { - Id: "caj", - Scope: "I", - Language_Type: "E", - Ref_Name: "Chané", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cak", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaqchikel", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cal", - Scope: "I", - Language_Type: "L", - Ref_Name: "Carolinian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cam", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cemuhî", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "can", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chambri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cao", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chácobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cap", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chipaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "caq", - Scope: "I", - Language_Type: "L", - Ref_Name: "CarNicobarese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "car", - Part2b: "car", - Part2t: "car", - Scope: "I", - Language_Type: "L", - Ref_Name: "GalibiCarib", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cas", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsimané", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cat", - Part2b: "cat", - Part2t: "cat", - Part1: "ca", - Scope: "I", - Language_Type: "L", - Ref_Name: "Catalan", - Comment: null, - }, - { - Id: "cav", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cavineña", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "caw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Callawalla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cax", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chiquitano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cay", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cayuga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "caz", - Scope: "I", - Language_Type: "E", - Ref_Name: "Canichana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cabiyarí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Carapana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Carijona", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chimila", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chachi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbj", - Scope: "I", - Language_Type: "L", - Ref_Name: "EdeCabe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chavacano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbl", - Scope: "I", - Language_Type: "L", - Ref_Name: "BualkhawChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyahkur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Izora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsucuba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cashibo-Cacataibo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cashinahua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chayahuita", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Candoshi-Shapra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cacua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cbw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kinabalian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cby", - Scope: "I", - Language_Type: "L", - Ref_Name: "Carabayo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ccc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chamicuro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ccd", - Scope: "I", - Language_Type: "L", - Ref_Name: "CafundoCreole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cce", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chopi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ccg", - Scope: "I", - Language_Type: "L", - Ref_Name: "SambaDaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cch", - Scope: "I", - Language_Type: "L", - Ref_Name: "Atsam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ccj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kasanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ccl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cutchi-Swahili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ccm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MalaccanCreoleMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cco", - Scope: "I", - Language_Type: "L", - Ref_Name: "ComaltepecChinantec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ccp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chakma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ccr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Cacaopera", - Comment: null, - }, - { - Id: "cda", - Scope: "I", - Language_Type: "L", - Ref_Name: "Choni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cde", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chenchu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cdf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chiru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cdh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chambeali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cdi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chodri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cdj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Churahi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cdm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chepang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cdn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chaudangsi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cdo", - Scope: "I", - Language_Type: "L", - Ref_Name: "MinDongChinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cdr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cinda-Regi-Tiyal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cds", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChadianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cdy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chadong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cdz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cea", - Scope: "I", - Language_Type: "E", - Ref_Name: "LowerChehalis", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ceb", - Part2b: "ceb", - Part2t: "ceb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cebuano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ceg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chamacoco", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cek", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternKhumiChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cen", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ces", - Part2b: "cze", - Part2t: "ces", - Part1: "cs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Czech", - Comment: null, - }, - { - Id: "cet", - Scope: "I", - Language_Type: "L", - Ref_Name: "Centúúm", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cey", - Scope: "I", - Language_Type: "L", - Ref_Name: "EkaiChin", - Comment: null, - }, - { - Id: "cfa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dijim-Bwilim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cfd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cfg", - Scope: "I", - Language_Type: "L", - Ref_Name: "ComoKarim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cfm", - Scope: "I", - Language_Type: "L", - Ref_Name: "FalamChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cga", - Scope: "I", - Language_Type: "L", - Ref_Name: "Changriwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cgc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kagayanen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cgg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chiga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cgk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chocangacakha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cha", - Part2b: "cha", - Part2t: "cha", - Part1: "ch", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chamorro", - Comment: null, - }, - { - Id: "chb", - Part2b: "chb", - Part2t: "chb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Chibcha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "chc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Catawba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "chd", - Scope: "I", - Language_Type: "L", - Ref_Name: "HighlandOaxacaChontal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "che", - Part2b: "che", - Part2t: "che", - Part1: "ce", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chechen", - Comment: null, - }, - { - Id: "chf", - Scope: "I", - Language_Type: "L", - Ref_Name: "TabascoChontal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "chg", - Part2b: "chg", - Part2t: "chg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Chagatai", - Comment: null, - }, - { - Id: "chh", - Scope: "I", - Language_Type: "E", - Ref_Name: "Chinook", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "chj", - Scope: "I", - Language_Type: "L", - Ref_Name: "OjitlánChinantec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "chk", - Part2b: "chk", - Part2t: "chk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chuukese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "chl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cahuilla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "chm", - Part2b: "chm", - Part2t: "chm", - Scope: "M", - Language_Type: "L", - Ref_Name: "Mari(Russia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "chn", - Part2b: "chn", - Part2t: "chn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chinookjargon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cho", - Part2b: "cho", - Part2t: "cho", - Scope: "I", - Language_Type: "L", - Ref_Name: "Choctaw", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "chp", - Part2b: "chp", - Part2t: "chp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chipewyan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "chq", - Scope: "I", - Language_Type: "L", - Ref_Name: "QuiotepecChinantec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "chr", - Part2b: "chr", - Part2t: "chr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cherokee", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cht", - Scope: "I", - Language_Type: "E", - Ref_Name: "Cholón", - Comment: null, - }, - { - Id: "chu", - Part2b: "chu", - Part2t: "chu", - Part1: "cu", - Scope: "I", - Language_Type: "H", - Ref_Name: "ChurchSlavic", - Comment: null, - }, - { - Id: "chv", - Part2b: "chv", - Part2t: "chv", - Part1: "cv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chuvash", - Comment: null, - }, - { - Id: "chw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chuwabu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "chx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chantyal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "chy", - Part2b: "chy", - Part2t: "chy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cheyenne", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "chz", - Scope: "I", - Language_Type: "L", - Ref_Name: "OzumacínChinantec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cia", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cia-Cia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cib", - Scope: "I", - Language_Type: "L", - Ref_Name: "CiGbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cic", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chickasaw", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cid", - Scope: "I", - Language_Type: "E", - Ref_Name: "Chimariko", - Comment: null, - }, - { - Id: "cie", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cineni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cih", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chinali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cik", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChitkuliKinnauri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cim", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cimbrian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cin", - Scope: "I", - Language_Type: "L", - Ref_Name: "CintaLarga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cip", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chiapanec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cir", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tiri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ciw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chippewa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ciy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chaima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cja", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternCham", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cje", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cjh", - Scope: "I", - Language_Type: "E", - Ref_Name: "UpperChehalis", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cji", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chamalal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cjk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chokwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cjm", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternCham", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cjn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chenapian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cjo", - Scope: "I", - Language_Type: "L", - Ref_Name: "AshéninkaPajonal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cjp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cabécar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cjs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cjv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chuave", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cjy", - Scope: "I", - Language_Type: "L", - Ref_Name: "JinyuChinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ckb", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralKurdish", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "ckh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ckl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cibak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ckm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chakavian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ckn", - Scope: "I", - Language_Type: "L", - Ref_Name: "KaangChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cko", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anufo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ckq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kajakse", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ckr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kairak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cks", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tayo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ckt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chukot", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cku", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koasati", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ckv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kavalan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ckx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Caka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cky", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cakfem-Mushere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ckz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cakchiquel-QuichéMixedLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cla", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ron", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "clc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chilcotin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cld", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChaldeanNeo-Aramaic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cle", - Scope: "I", - Language_Type: "L", - Ref_Name: "LealaoChinantec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "clh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chilisso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cli", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chakali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "clj", - Scope: "I", - Language_Type: "L", - Ref_Name: "LaituChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "clk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Idu-Mishmi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cll", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "clm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Clallam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "clo", - Scope: "I", - Language_Type: "L", - Ref_Name: "LowlandOaxacaChontal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cls", - Scope: "I", - Language_Type: "H", - Ref_Name: "ClassicalSanskrit", - Comment: null, - }, - { - Id: "clt", - Scope: "I", - Language_Type: "L", - Ref_Name: "LautuChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "clu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Caluyanun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "clw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chulym", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cly", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternHighlandChatino", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cma", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cme", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cerma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cmg", - Scope: "I", - Language_Type: "H", - Ref_Name: "ClassicalMongolian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cmi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Emberá-Chamí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cml", - Scope: "I", - Language_Type: "L", - Ref_Name: "Campalagian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cmm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Michigamea", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cmn", - Scope: "I", - Language_Type: "L", - Ref_Name: "MandarinChinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cmo", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralMnong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cmr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mro-KhimiChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cms", - Scope: "I", - Language_Type: "H", - Ref_Name: "Messapic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cmt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Camtho", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cna", - Scope: "I", - Language_Type: "L", - Ref_Name: "Changthang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cnb", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChinbonChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cnc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Côông", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cng", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernQiang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cnh", - Scope: "I", - Language_Type: "L", - Ref_Name: "HakhaChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cni", - Scope: "I", - Language_Type: "L", - Ref_Name: "Asháninka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cnk", - Scope: "I", - Language_Type: "L", - Ref_Name: "KhumiChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cnl", - Scope: "I", - Language_Type: "L", - Ref_Name: "LalanaChinantec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cno", - Scope: "I", - Language_Type: "L", - Ref_Name: "Con", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cnp", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernPingChinese", - Comment: null, - }, - { - Id: "cnq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chung", - Comment: null, - }, - { - Id: "cnr", - Part2b: "cnr", - Part2t: "cnr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Montenegrin", - Comment: null, - }, - { - Id: "cns", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralAsmat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cnt", - Scope: "I", - Language_Type: "L", - Ref_Name: "TepetotutlaChinantec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cnu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chenoua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cnw", - Scope: "I", - Language_Type: "L", - Ref_Name: "NgawnChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cnx", - Scope: "I", - Language_Type: "H", - Ref_Name: "MiddleCornish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "coa", - Scope: "I", - Language_Type: "L", - Ref_Name: "CocosIslandsMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cob", - Scope: "I", - Language_Type: "E", - Ref_Name: "Chicomuceltec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "coc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cocopa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cod", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cocama-Cocamilla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "coe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koreguaje", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cof", - Scope: "I", - Language_Type: "L", - Ref_Name: "Colorado", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cog", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "coh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chonyi-Dzihana-Kauma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "coj", - Scope: "I", - Language_Type: "E", - Ref_Name: "Cochimi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cok", - Scope: "I", - Language_Type: "L", - Ref_Name: "SantaTeresaCora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "col", - Scope: "I", - Language_Type: "L", - Ref_Name: "Columbia-Wenatchi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "com", - Scope: "I", - Language_Type: "L", - Ref_Name: "Comanche", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "con", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cofán", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "coo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Comox", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cop", - Part2b: "cop", - Part2t: "cop", - Scope: "I", - Language_Type: "E", - Ref_Name: "Coptic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "coq", - Scope: "I", - Language_Type: "E", - Ref_Name: "Coquille", - Comment: null, - }, - { - Id: "cor", - Part2b: "cor", - Part2t: "cor", - Part1: "kw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cornish", - Comment: null, - }, - { - Id: "cos", - Part2b: "cos", - Part2t: "cos", - Part1: "co", - Scope: "I", - Language_Type: "L", - Ref_Name: "Corsican", - Comment: null, - }, - { - Id: "cot", - Scope: "I", - Language_Type: "L", - Ref_Name: "Caquinte", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cou", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wamey", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cov", - Scope: "I", - Language_Type: "L", - Ref_Name: "CaoMiao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cow", - Scope: "I", - Language_Type: "E", - Ref_Name: "Cowlitz", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cox", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nanti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "coz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chochotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cpa", - Scope: "I", - Language_Type: "L", - Ref_Name: "PalantlaChinantec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cpb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ucayali-YurúaAshéninka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cpc", - Scope: "I", - Language_Type: "L", - Ref_Name: "AjyíninkaApurucayali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cpg", - Scope: "I", - Language_Type: "E", - Ref_Name: "CappadocianGreek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cpi", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChinesePidginEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cpn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cherepon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cpo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kpeego", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cps", - Scope: "I", - Language_Type: "L", - Ref_Name: "Capiznon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cpu", - Scope: "I", - Language_Type: "L", - Ref_Name: "PichisAshéninka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cpx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pu-XianChinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cpy", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthUcayaliAshéninka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cqd", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChuanqiandianClusterMiao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cra", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crb", - Scope: "I", - Language_Type: "E", - Ref_Name: "IslandCarib", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lonwolwol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Coeurd'Alene", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cre", - Part2b: "cre", - Part2t: "cre", - Part1: "cr", - Scope: "M", - Language_Type: "L", - Ref_Name: "Cree", - Comment: null, - }, - { - Id: "crf", - Scope: "I", - Language_Type: "E", - Ref_Name: "Caramanta", - Comment: null, - }, - { - Id: "crg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Michif", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crh", - Part2b: "crh", - Part2t: "crh", - Scope: "I", - Language_Type: "L", - Ref_Name: "CrimeanTatar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cri", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sãotomense", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crj", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernEastCree", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crk", - Scope: "I", - Language_Type: "L", - Ref_Name: "PlainsCree", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crl", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernEastCree", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MooseCree", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crn", - Scope: "I", - Language_Type: "L", - Ref_Name: "ElNayarCora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cro", - Scope: "I", - Language_Type: "L", - Ref_Name: "Crow", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iyo'wujwaChorote", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crr", - Scope: "I", - Language_Type: "E", - Ref_Name: "CarolinaAlgonquian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crs", - Scope: "I", - Language_Type: "L", - Ref_Name: "SeselwaCreoleFrench", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iyojwa'jaChorote", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chaura", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chrau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Carrier", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cry", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cori", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "crz", - Scope: "I", - Language_Type: "E", - Ref_Name: "Cruzeño", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csa", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChiltepecChinantec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csb", - Part2b: "csb", - Part2t: "csb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kashubian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CatalanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csd", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChiangmaiSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cse", - Scope: "I", - Language_Type: "L", - Ref_Name: "CzechSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csf", - Scope: "I", - Language_Type: "L", - Ref_Name: "CubaSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csg", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChileanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csh", - Scope: "I", - Language_Type: "L", - Ref_Name: "AshoChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csi", - Scope: "I", - Language_Type: "E", - Ref_Name: "CoastMiwok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csj", - Scope: "I", - Language_Type: "L", - Ref_Name: "SonglaiChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jola-Kasa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csl", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChineseSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csm", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralSierraMiwok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csn", - Scope: "I", - Language_Type: "L", - Ref_Name: "ColombianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cso", - Scope: "I", - Language_Type: "L", - Ref_Name: "SochiapamChinantec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csp", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernPingChinese", - Comment: null, - }, - { - Id: "csq", - Scope: "I", - Language_Type: "L", - Ref_Name: "CroatiaSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csr", - Scope: "I", - Language_Type: "L", - Ref_Name: "CostaRicanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "css", - Scope: "I", - Language_Type: "E", - Ref_Name: "SouthernOhlone", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cst", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernOhlone", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csv", - Scope: "I", - Language_Type: "L", - Ref_Name: "SumtuChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csw", - Scope: "I", - Language_Type: "L", - Ref_Name: "SwampyCree", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csx", - Scope: "I", - Language_Type: "L", - Ref_Name: "CambodianSignLanguage", - Comment: null, - }, - { - Id: "csy", - Scope: "I", - Language_Type: "L", - Ref_Name: "SiyinChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "csz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Coos", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cta", - Scope: "I", - Language_Type: "L", - Ref_Name: "TataltepecChatino", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ctc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Chetco", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ctd", - Scope: "I", - Language_Type: "L", - Ref_Name: "TedimChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cte", - Scope: "I", - Language_Type: "L", - Ref_Name: "TepinapaChinantec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ctg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chittagonian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cth", - Scope: "I", - Language_Type: "L", - Ref_Name: "ThaiphumChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ctl", - Scope: "I", - Language_Type: "L", - Ref_Name: "TlacoatzintepecChinantec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ctm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Chitimacha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ctn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chhintange", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cto", - Scope: "I", - Language_Type: "L", - Ref_Name: "Emberá-Catío", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ctp", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternHighlandChatino", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cts", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernCatanduanesBikol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ctt", - Scope: "I", - Language_Type: "L", - Ref_Name: "WayanadChetti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ctu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cty", - Scope: "I", - Language_Type: "L", - Ref_Name: "MoundadanChetty", - Comment: null, - }, - { - Id: "ctz", - Scope: "I", - Language_Type: "L", - Ref_Name: "ZacatepecChatino", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cua", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cub", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cubeo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cuc", - Scope: "I", - Language_Type: "L", - Ref_Name: "UsilaChinantec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cuh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chuka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cui", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cuiba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cuj", - Scope: "I", - Language_Type: "L", - Ref_Name: "MashcoPiro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cuk", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanBlasKuna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cul", - Scope: "I", - Language_Type: "L", - Ref_Name: "Culina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cuo", - Scope: "I", - Language_Type: "E", - Ref_Name: "Cumanagoto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cup", - Scope: "I", - Language_Type: "E", - Ref_Name: "Cupeño", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cuq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cur", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chhulung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cut", - Scope: "I", - Language_Type: "L", - Ref_Name: "TeutilaCuicatec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cuu", - Scope: "I", - Language_Type: "L", - Ref_Name: "TaiYa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cuv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cuvok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cuw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chukwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cux", - Scope: "I", - Language_Type: "L", - Ref_Name: "TepeuxilaCuicatec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cuy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cuitlatec", - Comment: null, - }, - { - Id: "cvg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chug", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cvn", - Scope: "I", - Language_Type: "L", - Ref_Name: "ValleNacionalChinantec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kabwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cwb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maindo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cwd", - Scope: "I", - Language_Type: "L", - Ref_Name: "WoodsCree", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cwe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cwg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chewong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cwt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuwaataay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cxh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cha'ari", - Comment: null, - }, - { - Id: "cya", - Scope: "I", - Language_Type: "L", - Ref_Name: "NopalaChatino", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cyb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Cayubaba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "cym", - Part2b: "wel", - Part2t: "cym", - Part1: "cy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Welsh", - Comment: null, - }, - { - Id: "cyo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cuyonon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "czh", - Scope: "I", - Language_Type: "L", - Ref_Name: "HuizhouChinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "czk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Knaanic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "czn", - Scope: "I", - Language_Type: "L", - Ref_Name: "ZenzontepecChatino", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "czo", - Scope: "I", - Language_Type: "L", - Ref_Name: "MinZhongChinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "czt", - Scope: "I", - Language_Type: "L", - Ref_Name: "ZotungChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "daa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dangaléat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dac", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dambi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dad", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dae", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duupa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dagbani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dah", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gwahatike", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dai", - Scope: "I", - Language_Type: "L", - Ref_Name: "Day", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "daj", - Scope: "I", - Language_Type: "L", - Ref_Name: "DarFurDaju", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dak", - Part2b: "dak", - Part2t: "dak", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dakota", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dal", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dahalo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dam", - Scope: "I", - Language_Type: "L", - Ref_Name: "Damakawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dan", - Part2b: "dan", - Part2t: "dan", - Part1: "da", - Scope: "I", - Language_Type: "L", - Ref_Name: "Danish", - Comment: null, - }, - { - Id: "dao", - Scope: "I", - Language_Type: "L", - Ref_Name: "DaaiChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "daq", - Scope: "I", - Language_Type: "L", - Ref_Name: "DandamiMaria", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dar", - Part2b: "dar", - Part2t: "dar", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dargwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "das", - Scope: "I", - Language_Type: "L", - Ref_Name: "Daho-Doo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dau", - Scope: "I", - Language_Type: "L", - Ref_Name: "DarSilaDaju", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dav", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taita", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "daw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Davawenyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dax", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dayi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "daz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dba", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bangime", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Deno", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dadiya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dabe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Edopi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbg", - Scope: "I", - Language_Type: "L", - Ref_Name: "DogulDomDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Doka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ida'an", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dyirbal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duguri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duriankere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dulbu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duwai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Daba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dabarre", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbt", - Scope: "I", - Language_Type: "L", - Ref_Name: "BenTeyDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbu", - Scope: "I", - Language_Type: "L", - Ref_Name: "BondumDomDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dungu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dbw", - Scope: "I", - Language_Type: "L", - Ref_Name: "BankanTeyDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dby", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dibiyaso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dcc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Deccan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dcr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Negerhollands", - Comment: null, - }, - { - Id: "dda", - Scope: "I", - Language_Type: "E", - Ref_Name: "DadiDadi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ddd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dongotono", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dde", - Scope: "I", - Language_Type: "L", - Ref_Name: "Doondo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ddg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fataluku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ddi", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestGoodenough", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ddj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jaru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ddn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dendi(Benin)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ddo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dido", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ddr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Dhudhuroa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dds", - Scope: "I", - Language_Type: "L", - Ref_Name: "DonnoSoDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ddw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dawera-Daweloor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dec", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dagik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ded", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dedua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dee", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dewoin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "def", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dezfuli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "deg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Degema", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "deh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dehwari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dei", - Scope: "I", - Language_Type: "L", - Ref_Name: "Demisa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dek", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "del", - Part2b: "del", - Part2t: "del", - Scope: "M", - Language_Type: "L", - Ref_Name: "Delaware", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dem", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "den", - Part2b: "den", - Part2t: "den", - Scope: "M", - Language_Type: "L", - Ref_Name: "Slave(Athapascan)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dep", - Scope: "I", - Language_Type: "E", - Ref_Name: "PidginDelaware", - Comment: null, - }, - { - Id: "deq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dendi(CentralAfricanRepublic)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "der", - Scope: "I", - Language_Type: "L", - Ref_Name: "Deori", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "des", - Scope: "I", - Language_Type: "L", - Ref_Name: "Desano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "deu", - Part2b: "ger", - Part2t: "deu", - Part1: "de", - Scope: "I", - Language_Type: "L", - Ref_Name: "German", - Comment: null, - }, - { - Id: "dev", - Scope: "I", - Language_Type: "L", - Ref_Name: "Domung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dez", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dengese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dga", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernDagaare", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dgb", - Scope: "I", - Language_Type: "L", - Ref_Name: "BunogeDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dgc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CasiguranDumagatAgta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dgd", - Scope: "I", - Language_Type: "L", - Ref_Name: "DagaariDioula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dge", - Scope: "I", - Language_Type: "L", - Ref_Name: "Degenan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dgg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Doga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dgh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dghwede", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dgi", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernDagara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dgk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dagba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dgl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Andaandi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dgn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Dagoman", - Comment: null, - }, - { - Id: "dgo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dogri(individuallanguage)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dgr", - Part2b: "dgr", - Part2t: "dgr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dogrib", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dgs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dogoso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dgt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ndra'ngith", - Comment: null, - }, - { - Id: "dgw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Daungwurrung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dgx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Doghoro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dgz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Daga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dhd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dhundari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dhg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dhangu-Djangu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dhi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dhimal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dhl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dhalandji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dhm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zemba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dhn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dhanki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dho", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dhodia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dhr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dhargari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dhs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dhaiso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dhu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Dhurga", - Comment: null, - }, - { - Id: "dhv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dehu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dhw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dhanwar(Nepal)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dhx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dhungaloo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dia", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dib", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthCentralDinka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dic", - Scope: "I", - Language_Type: "L", - Ref_Name: "LakotaDida", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "did", - Scope: "I", - Language_Type: "L", - Ref_Name: "Didinga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dif", - Scope: "I", - Language_Type: "E", - Ref_Name: "Dieri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dig", - Scope: "I", - Language_Type: "L", - Ref_Name: "Digo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dih", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kumiai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dii", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dimbong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dij", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dik", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthwesternDinka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dil", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dilling", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dim", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dime", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "din", - Part2b: "din", - Part2t: "din", - Scope: "M", - Language_Type: "L", - Ref_Name: "Dinka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dio", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dibo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dip", - Scope: "I", - Language_Type: "L", - Ref_Name: "NortheasternDinka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "diq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dimli(individuallanguage)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dir", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dirim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dis", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dimasa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "diu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Diriku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "div", - Part2b: "div", - Part2t: "div", - Part1: "dv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dhivehi", - Comment: null, - }, - { - Id: "diw", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthwesternDinka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dix", - Scope: "I", - Language_Type: "L", - Ref_Name: "DixonReef", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "diy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Diuwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "diz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ding", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dja", - Scope: "I", - Language_Type: "E", - Ref_Name: "Djadjawurrung", - Comment: null, - }, - { - Id: "djb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Djinba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "djc", - Scope: "I", - Language_Type: "L", - Ref_Name: "DarDajuDaju", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "djd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Djamindjung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dje", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zarma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "djf", - Scope: "I", - Language_Type: "E", - Ref_Name: "Djangun", - Comment: null, - }, - { - Id: "dji", - Scope: "I", - Language_Type: "L", - Ref_Name: "Djinang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "djj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Djeebbana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "djk", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternMaroonCreole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "djm", - Scope: "I", - Language_Type: "L", - Ref_Name: "JamsayDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "djn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jawoyn", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "djo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jangkang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "djr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Djambarrpuyngu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dju", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kapriman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "djw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Djawi", - Comment: null, - }, - { - Id: "dka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dakpakha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dkg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kadung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dkk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dakka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dkr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuijau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dks", - Scope: "I", - Language_Type: "L", - Ref_Name: "SoutheasternDinka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dkx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mazagway", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dlg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dolgan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dlk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dahalik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dlm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Dalmatian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dln", - Scope: "I", - Language_Type: "L", - Ref_Name: "Darlong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dma", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dmb", - Scope: "I", - Language_Type: "L", - Ref_Name: "MomboDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dmc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gavak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dmd", - Scope: "I", - Language_Type: "E", - Ref_Name: "MadhiMadhi", - Comment: null, - }, - { - Id: "dme", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dugwor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dmf", - Scope: "I", - Language_Type: "E", - Ref_Name: "Medefaidrin", - Comment: null, - }, - { - Id: "dmg", - Scope: "I", - Language_Type: "L", - Ref_Name: "UpperKinabatangan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dmk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Domaaki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dml", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dameli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dmm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dmo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kemedzung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dmr", - Scope: "I", - Language_Type: "L", - Ref_Name: "EastDamar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dms", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dampelas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dmu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dubu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dmv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dumpas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dmw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mudburra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dmx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dema", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dmy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Demta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dna", - Scope: "I", - Language_Type: "L", - Ref_Name: "UpperGrandValleyDani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dnd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Daonda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dne", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndendeule", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dng", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dungan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dni", - Scope: "I", - Language_Type: "L", - Ref_Name: "LowerGrandValleyDani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dnj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dnk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dengka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dnn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dzùùngoo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dno", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndrulo", - Comment: null, - }, - { - Id: "dnr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Danaru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dnt", - Scope: "I", - Language_Type: "L", - Ref_Name: "MidGrandValleyDani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dnu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Danau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dnv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Danu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dnw", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternDani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dny", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dení", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "doa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dob", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dobu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "doc", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernDong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "doe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Doe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dof", - Scope: "I", - Language_Type: "L", - Ref_Name: "Domu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "doh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "doi", - Part2b: "doi", - Part2t: "doi", - Scope: "M", - Language_Type: "L", - Ref_Name: "Dogri(macrolanguage)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dok", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dondo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dol", - Scope: "I", - Language_Type: "L", - Ref_Name: "Doso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "don", - Scope: "I", - Language_Type: "L", - Ref_Name: "Toura(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "doo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dongo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dop", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lukpa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "doq", - Scope: "I", - Language_Type: "L", - Ref_Name: "DominicanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dor", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dori'o", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dos", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dogosé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dot", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dass", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dov", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dombe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dow", - Scope: "I", - Language_Type: "L", - Ref_Name: "Doyayo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dox", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bussa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "doy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dompo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "doz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dorze", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dpp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Papar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "drb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dair", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "drc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Minderico", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "drd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Darmiya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dre", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dolpo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "drg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rungus", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dri", - Scope: "I", - Language_Type: "L", - Ref_Name: "C'Lela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "drl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paakantyi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "drn", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestDamar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dro", - Scope: "I", - Language_Type: "L", - Ref_Name: "Daro-MatuMelanau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "drq", - Scope: "I", - Language_Type: "E", - Ref_Name: "Dura", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "drs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gedeo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "drt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Drents", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dru", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rukai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dry", - Scope: "I", - Language_Type: "L", - Ref_Name: "Darai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dsb", - Part2b: "dsb", - Part2t: "dsb", - Scope: "I", - Language_Type: "L", - Ref_Name: "LowerSorbian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dse", - Scope: "I", - Language_Type: "L", - Ref_Name: "DutchSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dsh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Daasanach", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dsi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Disa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dsk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dokshi", - Comment: null, - }, - { - Id: "dsl", - Scope: "I", - Language_Type: "L", - Ref_Name: "DanishSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dsn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Dusner", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dso", - Scope: "I", - Language_Type: "L", - Ref_Name: "Desiya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dsq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tadaksahak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dsz", - Scope: "I", - Language_Type: "L", - Ref_Name: "MardinSignLanguage", - Comment: null, - }, - { - Id: "dta", - Scope: "I", - Language_Type: "L", - Ref_Name: "Daur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dtb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Labuk-KinabatanganKadazan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dtd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ditidaht", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dth", - Scope: "I", - Language_Type: "E", - Ref_Name: "Adithinngithigh", - Comment: null, - }, - { - Id: "dti", - Scope: "I", - Language_Type: "L", - Ref_Name: "AnaTingaDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dtk", - Scope: "I", - Language_Type: "L", - Ref_Name: "TeneKanDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dtm", - Scope: "I", - Language_Type: "L", - Ref_Name: "TomoKanDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dtn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Daatsʼíin", - Comment: null, - }, - { - Id: "dto", - Scope: "I", - Language_Type: "L", - Ref_Name: "TommoSoDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dtp", - Scope: "I", - Language_Type: "L", - Ref_Name: "KadazanDusun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dtr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lotud", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dts", - Scope: "I", - Language_Type: "L", - Ref_Name: "ToroSoDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dtt", - Scope: "I", - Language_Type: "L", - Ref_Name: "ToroTeguDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dtu", - Scope: "I", - Language_Type: "L", - Ref_Name: "TebulUreDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dty", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dotyali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dua", - Part2b: "dua", - Part2t: "dua", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dub", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dubli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "duc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "due", - Scope: "I", - Language_Type: "L", - Ref_Name: "UmirayDumagetAgta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "duf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dumbea", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dug", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duruma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "duh", - Scope: "I", - Language_Type: "L", - Ref_Name: "DungraBhil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dui", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dumun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "duk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uyajitaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dul", - Scope: "I", - Language_Type: "L", - Ref_Name: "AlabatIslandAgta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dum", - Part2b: "dum", - Part2t: "dum", - Scope: "I", - Language_Type: "H", - Ref_Name: "MiddleDutch(ca.1050-1350)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dun", - Scope: "I", - Language_Type: "L", - Ref_Name: "DusunDeyah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "duo", - Scope: "I", - Language_Type: "L", - Ref_Name: "DupaninanAgta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dup", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "duq", - Scope: "I", - Language_Type: "L", - Ref_Name: "DusunMalang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dur", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dii", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dus", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dumi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "duu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Drung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "duv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duvle", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "duw", - Scope: "I", - Language_Type: "L", - Ref_Name: "DusunWitu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dux", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duungooma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "duy", - Scope: "I", - Language_Type: "E", - Ref_Name: "DicamayAgta", - Comment: null, - }, - { - Id: "duz", - Scope: "I", - Language_Type: "E", - Ref_Name: "Duli-Gey", - Comment: null, - }, - { - Id: "dva", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Diri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dwk", - Scope: "I", - Language_Type: "L", - Ref_Name: "DawikKui", - Comment: null, - }, - { - Id: "dwr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dawro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dws", - Scope: "I", - Language_Type: "C", - Ref_Name: "DuttonWorldSpeedwords", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dwu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dhuwal", - Comment: null, - }, - { - Id: "dww", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dawawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dwy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dhuwaya", - Comment: null, - }, - { - Id: "dwz", - Scope: "I", - Language_Type: "L", - Ref_Name: "DewasRai", - Comment: null, - }, - { - Id: "dya", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dyan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dyb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Dyaberdyaber", - Comment: null, - }, - { - Id: "dyd", - Scope: "I", - Language_Type: "E", - Ref_Name: "Dyugun", - Comment: null, - }, - { - Id: "dyg", - Scope: "I", - Language_Type: "E", - Ref_Name: "VillaViciosaAgta", - Comment: null, - }, - { - Id: "dyi", - Scope: "I", - Language_Type: "L", - Ref_Name: "DjiminiSenoufo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dym", - Scope: "I", - Language_Type: "L", - Ref_Name: "YandaDomDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dyn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dyangadi", - Comment: null, - }, - { - Id: "dyo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jola-Fonyi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dyr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dyarim", - Comment: null, - }, - { - Id: "dyu", - Part2b: "dyu", - Part2t: "dyu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dyula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dyy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Djabugay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dza", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tunzu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dzd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Daza", - Comment: null, - }, - { - Id: "dze", - Scope: "I", - Language_Type: "E", - Ref_Name: "Djiwarli", - Comment: null, - }, - { - Id: "dzg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dazaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dzl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dzalakha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dzn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dzando", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "dzo", - Part2b: "dzo", - Part2t: "dzo", - Part1: "dz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dzongkha", - Comment: null, - }, - { - Id: "eaa", - Scope: "I", - Language_Type: "E", - Ref_Name: "Karenggapa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ebc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Beginci", - Comment: null, - }, - { - Id: "ebg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ebughu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ebk", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternBontok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ebo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Teke-Ebo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ebr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ebrié", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ebu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Embu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ecr", - Scope: "I", - Language_Type: "H", - Ref_Name: "Eteocretan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ecs", - Scope: "I", - Language_Type: "L", - Ref_Name: "EcuadorianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ecy", - Scope: "I", - Language_Type: "H", - Ref_Name: "Eteocypriot", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eee", - Scope: "I", - Language_Type: "L", - Ref_Name: "E", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "efa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Efai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "efe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Efe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "efi", - Part2b: "efi", - Part2t: "efi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Efik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ega", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ega", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "egl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Emilian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "egm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Benamanga", - Comment: null, - }, - { - Id: "ego", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eggon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "egy", - Part2b: "egy", - Part2t: "egy", - Scope: "I", - Language_Type: "H", - Ref_Name: "Egyptian(Ancient)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ehs", - Scope: "I", - Language_Type: "L", - Ref_Name: "MiyakuboSignLanguage", - Comment: null, - }, - { - Id: "ehu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ehueun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eip", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eipomek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eit", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eitiep", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eiv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Askopan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eja", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ejamat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eka", - Part2b: "eka", - Part2t: "eka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ekajuk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eke", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ekit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ekg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ekari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eki", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ekk", - Scope: "I", - Language_Type: "L", - Ref_Name: "StandardEstonian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ekl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kol(Bangladesh)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ekm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Elip", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eko", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ekp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ekpeye", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ekr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yace", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eky", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternKayah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ele", - Scope: "I", - Language_Type: "L", - Ref_Name: "Elepi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "elh", - Scope: "I", - Language_Type: "L", - Ref_Name: "ElHugeirat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eli", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nding", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "elk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Elkei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ell", - Part2b: "gre", - Part2t: "ell", - Part1: "el", - Scope: "I", - Language_Type: "L", - Ref_Name: "ModernGreek(1453-)", - Comment: null, - }, - { - Id: "elm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eleme", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "elo", - Scope: "I", - Language_Type: "L", - Ref_Name: "ElMolo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "elu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Elu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "elx", - Part2b: "elx", - Part2t: "elx", - Scope: "I", - Language_Type: "H", - Ref_Name: "Elamite", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ema", - Scope: "I", - Language_Type: "L", - Ref_Name: "Emai-Iuleha-Ora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "emb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Embaloh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eme", - Scope: "I", - Language_Type: "L", - Ref_Name: "Emerillon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "emg", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternMeohang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "emi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mussau-Emira", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "emk", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternManinkakan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "emm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mamulique", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "emn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "emp", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernEmberá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "emq", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternMinyag", - Comment: null, - }, - { - Id: "ems", - Scope: "I", - Language_Type: "L", - Ref_Name: "PacificGulfYupik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "emu", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternMuria", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "emw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Emplawas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "emx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Erromintxela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "emy", - Scope: "I", - Language_Type: "H", - Ref_Name: "EpigraphicMayan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "emz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbessa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ena", - Scope: "I", - Language_Type: "L", - Ref_Name: "Apali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "enb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Markweeta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "enc", - Scope: "I", - Language_Type: "L", - Ref_Name: "En", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "end", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ende", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "enf", - Scope: "I", - Language_Type: "L", - Ref_Name: "ForestEnets", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eng", - Part2b: "eng", - Part2t: "eng", - Part1: "en", - Scope: "I", - Language_Type: "L", - Ref_Name: "English", - Comment: null, - }, - { - Id: "enh", - Scope: "I", - Language_Type: "L", - Ref_Name: "TundraEnets", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "enl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Enlhet", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "enm", - Part2b: "enm", - Part2t: "enm", - Scope: "I", - Language_Type: "H", - Ref_Name: "MiddleEnglish(1100-1500)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "enn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Engenni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eno", - Scope: "I", - Language_Type: "L", - Ref_Name: "Enggano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "enq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Enga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "enr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Emumu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "enu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Enu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "env", - Scope: "I", - Language_Type: "L", - Ref_Name: "Enwan(EdoState)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "enw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Enwan(AkwaIbomState)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "enx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Enxet", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eot", - Scope: "I", - Language_Type: "L", - Ref_Name: "Beti(Côted'Ivoire)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "epi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Epie", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "epo", - Part2b: "epo", - Part2t: "epo", - Part1: "eo", - Scope: "I", - Language_Type: "C", - Ref_Name: "Esperanto", - Comment: null, - }, - { - Id: "era", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eravallan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "erg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sie", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "erh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eruwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eri", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ogea", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "erk", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthEfate", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ero", - Scope: "I", - Language_Type: "L", - Ref_Name: "Horpa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "err", - Scope: "I", - Language_Type: "E", - Ref_Name: "Erre", - Comment: null, - }, - { - Id: "ers", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ersu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ert", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eritai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "erw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Erokwanas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ese", - Scope: "I", - Language_Type: "L", - Ref_Name: "EseEjja", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "esg", - Scope: "I", - Language_Type: "L", - Ref_Name: "AheriGondi", - Comment: null, - }, - { - Id: "esh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eshtehardi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "esi", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthAlaskanInupiatun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "esk", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthwestAlaskaInupiatun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "esl", - Scope: "I", - Language_Type: "L", - Ref_Name: "EgyptSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "esm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Esuma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "esn", - Scope: "I", - Language_Type: "L", - Ref_Name: "SalvadoranSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eso", - Scope: "I", - Language_Type: "L", - Ref_Name: "EstonianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "esq", - Scope: "I", - Language_Type: "E", - Ref_Name: "Esselen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ess", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralSiberianYupik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "est", - Part2b: "est", - Part2t: "est", - Part1: "et", - Scope: "M", - Language_Type: "L", - Ref_Name: "Estonian", - Comment: null, - }, - { - Id: "esu", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralYupik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "esy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eskayan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "etb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Etebi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "etc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Etchemin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eth", - Scope: "I", - Language_Type: "L", - Ref_Name: "EthiopianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "etn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eton(Vanuatu)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eto", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eton(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "etr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Edolo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ets", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yekhee", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ett", - Scope: "I", - Language_Type: "H", - Ref_Name: "Etruscan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "etu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ejagham", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "etx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eten", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "etz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Semimi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eud", - Scope: "I", - Language_Type: "E", - Ref_Name: "Eudeve", - Comment: null, - }, - { - Id: "eus", - Part2b: "baq", - Part2t: "eus", - Part1: "eu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Basque", - Comment: null, - }, - { - Id: "eve", - Scope: "I", - Language_Type: "L", - Ref_Name: "Even", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "evh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uvbie", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "evn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Evenki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ewe", - Part2b: "ewe", - Part2t: "ewe", - Part1: "ee", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ewe", - Comment: null, - }, - { - Id: "ewo", - Part2b: "ewo", - Part2t: "ewo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ewondo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ext", - Scope: "I", - Language_Type: "L", - Ref_Name: "Extremaduran", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eya", - Scope: "I", - Language_Type: "E", - Ref_Name: "Eyak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eyo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Keiyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eza", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ezaa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "eze", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uzekwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "faa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fasu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fab", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fad'Ambu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fad", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wagi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "faf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fagani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Finongan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fah", - Scope: "I", - Language_Type: "L", - Ref_Name: "BaissaFali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fai", - Scope: "I", - Language_Type: "L", - Ref_Name: "Faiwol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "faj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Faita", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fak", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fang(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fal", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthFali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fam", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fan", - Part2b: "fan", - Part2t: "fan", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fang(EquatorialGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fao", - Part2b: "fao", - Part2t: "fao", - Part1: "fo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Faroese", - Comment: null, - }, - { - Id: "fap", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paloor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "far", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fataleka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fas", - Part2b: "per", - Part2t: "fas", - Part1: "fa", - Scope: "M", - Language_Type: "L", - Ref_Name: "Persian", - Comment: null, - }, - { - Id: "fat", - Part2b: "fat", - Part2t: "fat", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fanti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fau", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fayu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fax", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fay", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthwesternFars", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "faz", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthwesternFars", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fbl", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestAlbayBikol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fcs", - Scope: "I", - Language_Type: "L", - Ref_Name: "QuebecSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fer", - Scope: "I", - Language_Type: "L", - Ref_Name: "Feroge", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ffi", - Scope: "I", - Language_Type: "L", - Ref_Name: "FoiaFoia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ffm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MaasinaFulfulde", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fgr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fongoro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fia", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nobiin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fie", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fyer", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fif", - Scope: "I", - Language_Type: "L", - Ref_Name: "Faifi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fij", - Part2b: "fij", - Part2t: "fij", - Part1: "fj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fijian", - Comment: null, - }, - { - Id: "fil", - Part2b: "fil", - Part2t: "fil", - Scope: "I", - Language_Type: "L", - Ref_Name: "Filipino", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fin", - Part2b: "fin", - Part2t: "fin", - Part1: "fi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Finnish", - Comment: null, - }, - { - Id: "fip", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fipa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fir", - Scope: "I", - Language_Type: "L", - Ref_Name: "Firan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fit", - Scope: "I", - Language_Type: "L", - Ref_Name: "TornedalenFinnish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fiw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fiwaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fkk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kirya-Konzəl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fkv", - Scope: "I", - Language_Type: "L", - Ref_Name: "KvenFinnish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fla", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalispel-Pendd'Oreille", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "flh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Foau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fli", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fll", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthFali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fln", - Scope: "I", - Language_Type: "E", - Ref_Name: "FlindersIsland", - Comment: null, - }, - { - Id: "flr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fuliiru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fly", - Scope: "I", - Language_Type: "L", - Ref_Name: "Flaaitaal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fmp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fe'fe'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fmu", - Scope: "I", - Language_Type: "L", - Ref_Name: "FarWesternMuria", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fnb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fanbak", - Comment: null, - }, - { - Id: "fng", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fanagalo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fni", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fania", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fod", - Scope: "I", - Language_Type: "L", - Ref_Name: "Foodo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "foi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Foi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fom", - Scope: "I", - Language_Type: "L", - Ref_Name: "Foma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fon", - Part2b: "fon", - Part2t: "fon", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "for", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fore", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fos", - Scope: "I", - Language_Type: "E", - Ref_Name: "Siraya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fpe", - Scope: "I", - Language_Type: "L", - Ref_Name: "FernandoPoCreoleEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fqs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fra", - Part2b: "fre", - Part2t: "fra", - Part1: "fr", - Scope: "I", - Language_Type: "L", - Ref_Name: "French", - Comment: null, - }, - { - Id: "frc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CajunFrench", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "frd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fordata", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "frk", - Scope: "I", - Language_Type: "H", - Ref_Name: "Frankish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "frm", - Part2b: "frm", - Part2t: "frm", - Scope: "I", - Language_Type: "H", - Ref_Name: "MiddleFrench(ca.1400-1600)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fro", - Part2b: "fro", - Part2t: "fro", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldFrench(842-ca.1400)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "frp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arpitan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "frq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Forak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "frr", - Part2b: "frr", - Part2t: "frr", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernFrisian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "frs", - Part2b: "frs", - Part2t: "frs", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternFrisian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "frt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fortsenal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fry", - Part2b: "fry", - Part2t: "fry", - Part1: "fy", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternFrisian", - Comment: null, - }, - { - Id: "fse", - Scope: "I", - Language_Type: "L", - Ref_Name: "FinnishSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fsl", - Scope: "I", - Language_Type: "L", - Ref_Name: "FrenchSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fss", - Scope: "I", - Language_Type: "L", - Ref_Name: "Finland-SwedishSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fub", - Scope: "I", - Language_Type: "L", - Ref_Name: "AdamawaFulfulde", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fuc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pulaar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fud", - Scope: "I", - Language_Type: "L", - Ref_Name: "EastFutuna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fue", - Scope: "I", - Language_Type: "L", - Ref_Name: "BorguFulfulde", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fuf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pular", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fuh", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternNigerFulfulde", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fui", - Scope: "I", - Language_Type: "L", - Ref_Name: "BagirmiFulfulde", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fuj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ful", - Part2b: "ful", - Part2t: "ful", - Part1: "ff", - Scope: "M", - Language_Type: "L", - Ref_Name: "Fulah", - Comment: null, - }, - { - Id: "fum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fun", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fulniô", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fuq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Central-EasternNigerFulfulde", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fur", - Part2b: "fur", - Part2t: "fur", - Scope: "I", - Language_Type: "L", - Ref_Name: "Friulian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fut", - Scope: "I", - Language_Type: "L", - Ref_Name: "Futuna-Aniwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fuu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Furu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fuv", - Scope: "I", - Language_Type: "L", - Ref_Name: "NigerianFulfulde", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fuy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fuyug", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fvr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fwâi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "fwe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gaa", - Part2b: "gaa", - Part2t: "gaa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gab", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gabri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gac", - Scope: "I", - Language_Type: "L", - Ref_Name: "MixedGreatAndamanese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gad", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gaddang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gae", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guarequena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gaf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gende", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gagauz", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gah", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alekano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gai", - Scope: "I", - Language_Type: "L", - Ref_Name: "Borei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gaj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gadsup", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gak", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gamkonora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gal", - Scope: "I", - Language_Type: "L", - Ref_Name: "Galolen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gam", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kandawo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gan", - Scope: "I", - Language_Type: "L", - Ref_Name: "GanChinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gao", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gants", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gap", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gaq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gata'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gar", - Scope: "I", - Language_Type: "L", - Ref_Name: "Galeya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gas", - Scope: "I", - Language_Type: "L", - Ref_Name: "AdiwasiGarasia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gat", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kenati", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gau", - Scope: "I", - Language_Type: "L", - Ref_Name: "MudhiliGadaba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gaw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nobonob", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gax", - Scope: "I", - Language_Type: "L", - Ref_Name: "Borana-Arsi-GujiOromo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gay", - Part2b: "gay", - Part2t: "gay", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gayo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gaz", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestCentralOromo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gba", - Part2b: "gba", - Part2t: "gba", - Scope: "M", - Language_Type: "L", - Ref_Name: "Gbaya(CentralAfricanRepublic)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaytetye", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karajarri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Niksek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gaikundi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gbanziri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbh", - Scope: "I", - Language_Type: "L", - Ref_Name: "DefiGbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Galela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbj", - Scope: "I", - Language_Type: "L", - Ref_Name: "BodoGadaba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gaddi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gamit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Garhwali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mo'da", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbo", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernGrebo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gbaya-Bossangoa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gbaya-Bozoum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gbagyi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbs", - Scope: "I", - Language_Type: "L", - Ref_Name: "GbesiGbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gagadu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gbanu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gabi-Gabi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbx", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternXwlaGbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gby", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gbari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gbz", - Scope: "I", - Language_Type: "L", - Ref_Name: "ZoroastrianDari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gcc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gcd", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ganggalida", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gce", - Scope: "I", - Language_Type: "E", - Ref_Name: "Galice", - Comment: null, - }, - { - Id: "gcf", - Scope: "I", - Language_Type: "L", - Ref_Name: "GuadeloupeanCreoleFrench", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gcl", - Scope: "I", - Language_Type: "L", - Ref_Name: "GrenadianCreoleEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gcn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gaina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gcr", - Scope: "I", - Language_Type: "L", - Ref_Name: "GuianeseCreoleFrench", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gct", - Scope: "I", - Language_Type: "L", - Ref_Name: "ColoniaTovarGerman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gda", - Scope: "I", - Language_Type: "L", - Ref_Name: "GadeLohar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdb", - Scope: "I", - Language_Type: "L", - Ref_Name: "PottangiOllarGadaba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdc", - Scope: "I", - Language_Type: "E", - Ref_Name: "GuguBadhun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gedaged", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gde", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gude", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guduf-Gava", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ga'dang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gadjerawang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gundi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gurdjar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gadang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dirasha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Umanakaina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ghodoberi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mehri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wipi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gds", - Scope: "I", - Language_Type: "L", - Ref_Name: "GhandrukSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kungardutyi", - Comment: null, - }, - { - Id: "gdu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gudu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gdx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Godwari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gea", - Scope: "I", - Language_Type: "L", - Ref_Name: "Geruma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "geb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kire", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gec", - Scope: "I", - Language_Type: "L", - Ref_Name: "GbolooGrebo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ged", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gade", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gef", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gerai", - Comment: null, - }, - { - Id: "geg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gengle", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "geh", - Scope: "I", - Language_Type: "L", - Ref_Name: "HutteriteGerman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gei", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gebe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gej", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gek", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ywom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gel", - Scope: "I", - Language_Type: "L", - Ref_Name: "ut-Ma'in", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "geq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Geme", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ges", - Scope: "I", - Language_Type: "L", - Ref_Name: "Geser-Gorom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gev", - Scope: "I", - Language_Type: "L", - Ref_Name: "Eviya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gew", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gex", - Scope: "I", - Language_Type: "L", - Ref_Name: "Garre", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gey", - Scope: "I", - Language_Type: "L", - Ref_Name: "Enya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gez", - Part2b: "gez", - Part2t: "gez", - Scope: "I", - Language_Type: "H", - Ref_Name: "Geez", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gfk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Patpatar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gft", - Scope: "I", - Language_Type: "E", - Ref_Name: "Gafat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gga", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ggb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gbii", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ggd", - Scope: "I", - Language_Type: "E", - Ref_Name: "Gugadj", - Comment: null, - }, - { - Id: "gge", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gurr-goni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ggg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gurgula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ggk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kungarakany", - Comment: null, - }, - { - Id: "ggl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ganglau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ggt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gitua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ggu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gagu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ggw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gogodala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gha", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ghadamès", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ghc", - Scope: "I", - Language_Type: "H", - Ref_Name: "Hiberno-ScottishGaelic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ghe", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernGhale", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ghh", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernGhale", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ghk", - Scope: "I", - Language_Type: "L", - Ref_Name: "GekoKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ghl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ghulfan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ghn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ghanongga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gho", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ghomara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ghr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ghera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ghs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guhu-Samane", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ght", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuke", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gia", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kija", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gib", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gibanawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gic", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gail", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gid", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gidar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gie", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gaɓogbo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gig", - Scope: "I", - Language_Type: "L", - Ref_Name: "Goaria", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gih", - Scope: "I", - Language_Type: "L", - Ref_Name: "Githabul", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gii", - Scope: "I", - Language_Type: "L", - Ref_Name: "Girirra", - Comment: null, - }, - { - Id: "gil", - Part2b: "gil", - Part2t: "gil", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gilbertese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gim", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gimi(EasternHighlands)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gin", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hinukh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gip", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gimi(WestNewBritain)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "giq", - Scope: "I", - Language_Type: "L", - Ref_Name: "GreenGelao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gir", - Scope: "I", - Language_Type: "L", - Ref_Name: "RedGelao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gis", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthGiziga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "git", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gitxsan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "giu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mulao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "giw", - Scope: "I", - Language_Type: "L", - Ref_Name: "WhiteGelao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gix", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gilima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "giy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Giyug", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "giz", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthGiziga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gjk", - Scope: "I", - Language_Type: "L", - Ref_Name: "KachiKoli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gjm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Gunditjmara", - Comment: null, - }, - { - Id: "gjn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gonja", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gjr", - Scope: "I", - Language_Type: "L", - Ref_Name: "GurindjiKriol", - Comment: null, - }, - { - Id: "gju", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gujari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gkd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Magɨ(MadangProvince)", - Comment: null, - }, - { - Id: "gke", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gkn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gokana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gko", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kok-Nar", - Comment: null, - }, - { - Id: "gkp", - Scope: "I", - Language_Type: "L", - Ref_Name: "GuineaKpelle", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gku", - Scope: "I", - Language_Type: "E", - Ref_Name: "ǂUngkue", - Comment: null, - }, - { - Id: "gla", - Part2b: "gla", - Part2t: "gla", - Part1: "gd", - Scope: "I", - Language_Type: "L", - Ref_Name: "ScottishGaelic", - Comment: null, - }, - { - Id: "glb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Belning", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "glc", - Scope: "I", - Language_Type: "L", - Ref_Name: "BonGula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gld", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nanai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gle", - Part2b: "gle", - Part2t: "gle", - Part1: "ga", - Scope: "I", - Language_Type: "L", - Ref_Name: "Irish", - Comment: null, - }, - { - Id: "glg", - Part2b: "glg", - Part2t: "glg", - Part1: "gl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Galician", - Comment: null, - }, - { - Id: "glh", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthwestPashai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "glj", - Scope: "I", - Language_Type: "L", - Ref_Name: "GulaIro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "glk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gilaki", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "gll", - Scope: "I", - Language_Type: "E", - Ref_Name: "Garlali", - Comment: null, - }, - { - Id: "glo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Galambu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "glr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Glaro-Twabo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "glu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gula(Chad)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "glv", - Part2b: "glv", - Part2t: "glv", - Part1: "gv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manx", - Comment: null, - }, - { - Id: "glw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Glavda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gly", - Scope: "I", - Language_Type: "E", - Ref_Name: "Gule", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gma", - Scope: "I", - Language_Type: "E", - Ref_Name: "Gambera", - Comment: null, - }, - { - Id: "gmb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gula'alaa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gmd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mághdì", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gmg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Magɨyi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gmh", - Part2b: "gmh", - Part2t: "gmh", - Scope: "I", - Language_Type: "H", - Ref_Name: "MiddleHighGerman(ca.1050-1500)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gml", - Scope: "I", - Language_Type: "H", - Ref_Name: "MiddleLowGerman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gmm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gbaya-Mbodomo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gmn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gimnime", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gmr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mirning", - Comment: null, - }, - { - Id: "gmu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gumalu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gmv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gamo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gmx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Magoma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gmy", - Scope: "I", - Language_Type: "H", - Ref_Name: "MycenaeanGreek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gmz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mgbolizhia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gna", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaansa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gnb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gangte", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gnc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Guanche", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gnd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zulgo-Gemzek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gne", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ganang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gng", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngangam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gnh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gni", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gooniyandi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gnj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngen", - Comment: null, - }, - { - Id: "gnk", - Scope: "I", - Language_Type: "L", - Ref_Name: "ǁGana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gnl", - Scope: "I", - Language_Type: "E", - Ref_Name: "Gangulu", - Comment: null, - }, - { - Id: "gnm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ginuman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gnn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gumatj", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gno", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernGondi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gnq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gnr", - Scope: "I", - Language_Type: "E", - Ref_Name: "GurengGureng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gnt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guntai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gnu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gnau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gnw", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternBolivianGuaraní", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gnz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ganzi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "goa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gob", - Scope: "I", - Language_Type: "L", - Ref_Name: "Playero", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "goc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gorakor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "god", - Scope: "I", - Language_Type: "L", - Ref_Name: "Godié", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "goe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gongduk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gof", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gofa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gog", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gogo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "goh", - Part2b: "goh", - Part2t: "goh", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldHighGerman(ca.750-1050)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "goi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gobasi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "goj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gowlan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gok", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gowli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gol", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gola", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gom", - Scope: "I", - Language_Type: "L", - Ref_Name: "GoanKonkani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gon", - Part2b: "gon", - Part2t: "gon", - Scope: "M", - Language_Type: "L", - Ref_Name: "Gondi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "goo", - Scope: "I", - Language_Type: "L", - Ref_Name: "GoneDau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gop", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yeretuar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "goq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gorap", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gor", - Part2b: "gor", - Part2t: "gor", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gorontalo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gos", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gronings", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "got", - Part2b: "got", - Part2t: "got", - Scope: "I", - Language_Type: "H", - Ref_Name: "Gothic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gou", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gavar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gov", - Scope: "I", - Language_Type: "L", - Ref_Name: "Goo", - Comment: null, - }, - { - Id: "gow", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gorowa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gox", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gobu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "goy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Goundo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "goz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gozarkhani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gpa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gupa-Abawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gpe", - Scope: "I", - Language_Type: "L", - Ref_Name: "GhanaianPidginEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gpn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taiap", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gqa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ga'anda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gqi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guiqiong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gqn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Guana(Brazil)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gqr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gqu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Qau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gra", - Scope: "I", - Language_Type: "L", - Ref_Name: "RajputGarasia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "grb", - Part2b: "grb", - Part2t: "grb", - Scope: "M", - Language_Type: "L", - Ref_Name: "Grebo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "grc", - Part2b: "grc", - Part2t: "grc", - Scope: "I", - Language_Type: "H", - Ref_Name: "AncientGreek(to1453)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "grd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guruntum-Mbaaru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "grg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Madi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "grh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gbiri-Niragu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gri", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ghari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "grj", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernGrebo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "grm", - Scope: "I", - Language_Type: "L", - Ref_Name: "KotaMaruduTalantang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "grn", - Part2b: "grn", - Part2t: "grn", - Part1: "gn", - Scope: "M", - Language_Type: "L", - Ref_Name: "Guarani", - Comment: null, - }, - { - Id: "gro", - Scope: "I", - Language_Type: "L", - Ref_Name: "Groma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "grq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gorovu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "grr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taznatit", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "grs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gresi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "grt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Garo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gru", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kistane", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "grv", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralGrebo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "grw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gweda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "grx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guriaso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gry", - Scope: "I", - Language_Type: "L", - Ref_Name: "BarclayvilleGrebo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "grz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guramalum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gse", - Scope: "I", - Language_Type: "L", - Ref_Name: "GhanaianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gsg", - Scope: "I", - Language_Type: "L", - Ref_Name: "GermanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gsl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gusilay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gsm", - Scope: "I", - Language_Type: "L", - Ref_Name: "GuatemalanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gsn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nema", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gso", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthwestGbaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gsp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wasembo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gss", - Scope: "I", - Language_Type: "L", - Ref_Name: "GreekSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gsw", - Part2b: "gsw", - Part2t: "gsw", - Scope: "I", - Language_Type: "L", - Ref_Name: "SwissGerman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gta", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guató", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gtu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Aghu-Tharnggala", - Comment: null, - }, - { - Id: "gua", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shiki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gub", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guajajára", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "guc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wayuu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gud", - Scope: "I", - Language_Type: "L", - Ref_Name: "YocobouéDida", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gue", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gurindji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "guf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gupapuyngu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gug", - Scope: "I", - Language_Type: "L", - Ref_Name: "ParaguayanGuaraní", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "guh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guahibo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gui", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternBolivianGuaraní", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "guj", - Part2b: "guj", - Part2t: "guj", - Part1: "gu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gujarati", - Comment: null, - }, - { - Id: "guk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gumuz", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gul", - Scope: "I", - Language_Type: "L", - Ref_Name: "SeaIslandCreoleEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guambiano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gun", - Scope: "I", - Language_Type: "L", - Ref_Name: "MbyáGuaraní", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "guo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guayabero", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gup", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gunwinggu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "guq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aché", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gur", - Scope: "I", - Language_Type: "L", - Ref_Name: "Farefare", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gus", - Scope: "I", - Language_Type: "L", - Ref_Name: "GuineanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gut", - Scope: "I", - Language_Type: "L", - Ref_Name: "MalékuJaíka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "guu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yanomamö", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "guw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gux", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gourmanchéma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "guz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gusii", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gva", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guana(Paraguay)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gvc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guanano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gve", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duwet", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gvf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Golin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gvj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guajá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gvl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gulay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gvm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gurmana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gvn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuku-Yalanji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gvo", - Scope: "I", - Language_Type: "L", - Ref_Name: "GaviãoDoJiparaná", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gvp", - Scope: "I", - Language_Type: "L", - Ref_Name: "ParáGavião", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gvr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gurung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gvs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gumawana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gvy", - Scope: "I", - Language_Type: "E", - Ref_Name: "Guyani", - Comment: null, - }, - { - Id: "gwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbato", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gwb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gwc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gawri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gwd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gawwada", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gwe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gweno", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gwf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gowro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gwg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gwi", - Part2b: "gwi", - Part2t: "gwi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gwichʼin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gwj", - Scope: "I", - Language_Type: "L", - Ref_Name: "ǀGwi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gwm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Awngthim", - Comment: null, - }, - { - Id: "gwn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gwandara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gwr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gwere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gwt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gawar-Bati", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gwu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Guwamu", - Comment: null, - }, - { - Id: "gww", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwini", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gwx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gxx", - Scope: "I", - Language_Type: "L", - Ref_Name: "WèSouthern", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gya", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthwestGbaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gyb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Garus", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gyd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kayardild", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gye", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gyem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gyf", - Scope: "I", - Language_Type: "E", - Ref_Name: "Gungabula", - Comment: null, - }, - { - Id: "gyg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gbayi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gyi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gyele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gyl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gayil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gym", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngäbere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gyn", - Scope: "I", - Language_Type: "L", - Ref_Name: "GuyaneseCreoleEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gyo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gyalsumdo", - Comment: null, - }, - { - Id: "gyr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guarayu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gyy", - Scope: "I", - Language_Type: "E", - Ref_Name: "Gunya", - Comment: null, - }, - { - Id: "gyz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Geji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gza", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ganza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gzi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gazi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "gzn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gane", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "haa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Han", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hab", - Scope: "I", - Language_Type: "L", - Ref_Name: "HanoiSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hac", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gurani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "had", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hatam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hae", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternOromo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "haf", - Scope: "I", - Language_Type: "L", - Ref_Name: "HaiphongSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hah", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hahon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hai", - Part2b: "hai", - Part2t: "hai", - Scope: "M", - Language_Type: "L", - Ref_Name: "Haida", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "haj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hajong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hak", - Scope: "I", - Language_Type: "L", - Ref_Name: "HakkaChinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hal", - Scope: "I", - Language_Type: "L", - Ref_Name: "Halang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ham", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hewa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "han", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hangaza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hao", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hakö", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hap", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hupla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "haq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "har", - Scope: "I", - Language_Type: "L", - Ref_Name: "Harari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "has", - Scope: "I", - Language_Type: "L", - Ref_Name: "Haisla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hat", - Part2b: "hat", - Part2t: "hat", - Part1: "ht", - Scope: "I", - Language_Type: "L", - Ref_Name: "Haitian", - Comment: null, - }, - { - Id: "hau", - Part2b: "hau", - Part2t: "hau", - Part1: "ha", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hausa", - Comment: null, - }, - { - Id: "hav", - Scope: "I", - Language_Type: "L", - Ref_Name: "Havu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "haw", - Part2b: "haw", - Part2t: "haw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hawaiian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hax", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernHaida", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hay", - Scope: "I", - Language_Type: "L", - Ref_Name: "Haya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "haz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hazaragi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hba", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hamba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hbb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Huba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hbn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Heiban", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hbo", - Scope: "I", - Language_Type: "H", - Ref_Name: "AncientHebrew", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "hbs", - Part1: "sh", - Scope: "M", - Language_Type: "L", - Ref_Name: "Serbo-Croatian", - Comment: "Codeelementfor639-1hasbeendeprecated", - ScriptDirection: "ltr", - }, - { - Id: "hbu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Habu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hca", - Scope: "I", - Language_Type: "L", - Ref_Name: "AndamanCreoleHindi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hch", - Scope: "I", - Language_Type: "L", - Ref_Name: "Huichol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hdn", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernHaida", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hds", - Scope: "I", - Language_Type: "L", - Ref_Name: "HondurasSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hdy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hadiyya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hea", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernQiandongMiao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "heb", - Part2b: "heb", - Part2t: "heb", - Part1: "he", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hebrew", - Comment: null, - }, - { - Id: "hed", - Scope: "I", - Language_Type: "L", - Ref_Name: "Herdé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "heg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Helong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "heh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hehe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hei", - Scope: "I", - Language_Type: "L", - Ref_Name: "Heiltsuk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hem", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hemba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "her", - Part2b: "her", - Part2t: "her", - Part1: "hz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Herero", - Comment: null, - }, - { - Id: "hgm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Haiǁom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hgw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Haigwai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hhi", - Scope: "I", - Language_Type: "L", - Ref_Name: "HoiaHoia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hhr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kerak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hhy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hoyahoya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hia", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lamang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hib", - Scope: "I", - Language_Type: "E", - Ref_Name: "Hibito", - Comment: null, - }, - { - Id: "hid", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hidatsa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hif", - Scope: "I", - Language_Type: "L", - Ref_Name: "FijiHindi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hig", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hih", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pamosu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hii", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hinduri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hij", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hijuk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hik", - Scope: "I", - Language_Type: "L", - Ref_Name: "Seit-Kaitetu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hil", - Part2b: "hil", - Part2t: "hil", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hiligaynon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hin", - Part2b: "hin", - Part2t: "hin", - Part1: "hi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hindi", - Comment: null, - }, - { - Id: "hio", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsoa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hir", - Scope: "I", - Language_Type: "L", - Ref_Name: "Himarimã", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hit", - Part2b: "hit", - Part2t: "hit", - Scope: "I", - Language_Type: "H", - Ref_Name: "Hittite", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hiw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hiw", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hix", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hixkaryána", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hji", - Scope: "I", - Language_Type: "L", - Ref_Name: "Haji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kahe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hke", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hunde", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hkh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khah", - Comment: null, - }, - { - Id: "hkk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hunjara-KainaKe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hkn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mel-Khaonh", - Comment: null, - }, - { - Id: "hks", - Scope: "I", - Language_Type: "L", - Ref_Name: "HongKongSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hla", - Scope: "I", - Language_Type: "L", - Ref_Name: "Halia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hlb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Halbi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hld", - Scope: "I", - Language_Type: "L", - Ref_Name: "HalangDoan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hle", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hlersu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hlt", - Scope: "I", - Language_Type: "L", - Ref_Name: "MatuChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hlu", - Scope: "I", - Language_Type: "H", - Ref_Name: "HieroglyphicLuwian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hma", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernMashanHmong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmb", - Scope: "I", - Language_Type: "L", - Ref_Name: "HumburiSenniSonghay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralHuishuiHmong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmd", - Scope: "I", - Language_Type: "L", - Ref_Name: "LargeFloweryMiao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hme", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternHuishuiHmong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmf", - Scope: "I", - Language_Type: "L", - Ref_Name: "HmongDon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmg", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthwesternGuiyangHmong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmh", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthwesternHuishuiHmong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmi", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernHuishuiHmong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ge", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmk", - Scope: "I", - Language_Type: "H", - Ref_Name: "Maek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hml", - Scope: "I", - Language_Type: "L", - Ref_Name: "LuopoheHmong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmm", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralMashanHmong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmn", - Part2b: "hmn", - Part2t: "hmn", - Scope: "M", - Language_Type: "L", - Ref_Name: "Hmong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmo", - Part2b: "hmo", - Part2t: "hmo", - Part1: "ho", - Scope: "I", - Language_Type: "L", - Ref_Name: "HiriMotu", - Comment: null, - }, - { - Id: "hmp", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernMashanHmong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmq", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternQiandongMiao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hmar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hms", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernQiandongMiao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hamtai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hamap", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmv", - Scope: "I", - Language_Type: "L", - Ref_Name: "HmongDô", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmw", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternMashanHmong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmy", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernGuiyangHmong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hmz", - Scope: "I", - Language_Type: "L", - Ref_Name: "HmongShua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hna", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mina(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hnd", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernHindko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hne", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chhattisgarhi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hng", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hungu", - Comment: null, - }, - { - Id: "hnh", - Scope: "I", - Language_Type: "L", - Ref_Name: "ǁAni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hni", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hnj", - Scope: "I", - Language_Type: "L", - Ref_Name: "HmongNjua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hnn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hanunoo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hno", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernHindko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hns", - Scope: "I", - Language_Type: "L", - Ref_Name: "CaribbeanHindustani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hnu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hoa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hoava", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hob", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mari(MadangProvince)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hoc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ho", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hod", - Scope: "I", - Language_Type: "E", - Ref_Name: "Holma", - Comment: null, - }, - { - Id: "hoe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Horom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hoh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hobyót", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hoi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Holikachuk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hoj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hadothi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hol", - Scope: "I", - Language_Type: "L", - Ref_Name: "Holu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hom", - Scope: "I", - Language_Type: "E", - Ref_Name: "Homa", - Comment: null, - }, - { - Id: "hoo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Holoholo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hop", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hopi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hor", - Scope: "I", - Language_Type: "E", - Ref_Name: "Horo", - Comment: null, - }, - { - Id: "hos", - Scope: "I", - Language_Type: "L", - Ref_Name: "HoChiMinhCitySignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hot", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hote", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hov", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hovongan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "how", - Scope: "I", - Language_Type: "L", - Ref_Name: "Honi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hoy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Holiya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hoz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hozo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hpo", - Scope: "I", - Language_Type: "E", - Ref_Name: "Hpon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hps", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hawai'iSignLanguage(HSL)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hra", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hrangkhol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hrc", - Scope: "I", - Language_Type: "L", - Ref_Name: "NiwerMil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hre", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hre", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hrk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Haruku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hrm", - Scope: "I", - Language_Type: "L", - Ref_Name: "HornedMiao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hro", - Scope: "I", - Language_Type: "L", - Ref_Name: "Haroi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hrp", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nhirrpi", - Comment: null, - }, - { - Id: "hrt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hértevin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hru", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hruso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hrv", - Part2b: "hrv", - Part2t: "hrv", - Part1: "hr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Croatian", - Comment: null, - }, - { - Id: "hrw", - Scope: "I", - Language_Type: "L", - Ref_Name: "WarwarFeni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hrx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hunsrik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hrz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Harzani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hsb", - Part2b: "hsb", - Part2t: "hsb", - Scope: "I", - Language_Type: "L", - Ref_Name: "UpperSorbian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hsh", - Scope: "I", - Language_Type: "L", - Ref_Name: "HungarianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hsl", - Scope: "I", - Language_Type: "L", - Ref_Name: "HausaSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hsn", - Scope: "I", - Language_Type: "L", - Ref_Name: "XiangChinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hss", - Scope: "I", - Language_Type: "L", - Ref_Name: "Harsusi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hti", - Scope: "I", - Language_Type: "E", - Ref_Name: "Hoti", - Comment: null, - }, - { - Id: "hto", - Scope: "I", - Language_Type: "L", - Ref_Name: "MinicaHuitoto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hts", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hadza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "htu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hitu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "htx", - Scope: "I", - Language_Type: "H", - Ref_Name: "MiddleHittite", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hub", - Scope: "I", - Language_Type: "L", - Ref_Name: "Huambisa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "huc", - Scope: "I", - Language_Type: "L", - Ref_Name: "ǂHua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hud", - Scope: "I", - Language_Type: "L", - Ref_Name: "Huaulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hue", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanFranciscoDelMarHuave", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "huf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Humene", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hug", - Scope: "I", - Language_Type: "L", - Ref_Name: "Huachipaeri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "huh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Huilliche", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hui", - Scope: "I", - Language_Type: "L", - Ref_Name: "Huli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "huj", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernGuiyangHmong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "huk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Hulung", - Comment: null, - }, - { - Id: "hul", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hungana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hun", - Part2b: "hun", - Part2t: "hun", - Part1: "hu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hungarian", - Comment: null, - }, - { - Id: "huo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hup", - Part2b: "hup", - Part2t: "hup", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hupa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "huq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hur", - Scope: "I", - Language_Type: "L", - Ref_Name: "Halkomelem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hus", - Scope: "I", - Language_Type: "L", - Ref_Name: "Huastec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hut", - Scope: "I", - Language_Type: "L", - Ref_Name: "Humla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "huu", - Scope: "I", - Language_Type: "L", - Ref_Name: "MuruiHuitoto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "huv", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanMateoDelMarHuave", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "huw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Hukumina", - Comment: null, - }, - { - Id: "hux", - Scope: "I", - Language_Type: "L", - Ref_Name: "NüpodeHuitoto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "huy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hulaulá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "huz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hunzib", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hvc", - Scope: "I", - Language_Type: "L", - Ref_Name: "HaitianVodounCultureLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hve", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanDionisioDelMarHuave", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hvk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Haveke", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hvn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sabu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hvv", - Scope: "I", - Language_Type: "L", - Ref_Name: "SantaMaríaDelMarHuave", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wané", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hwc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hawai'iCreoleEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hwo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hwana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hya", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "hye", - Part2b: "arm", - Part2t: "hye", - Part1: "hy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Armenian", - Comment: null, - }, - { - Id: "hyw", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternArmenian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iai", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iaai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ian", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iatmul", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iar", - Scope: "I", - Language_Type: "L", - Ref_Name: "Purari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iba", - Part2b: "iba", - Part2t: "iba", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iban", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ibb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ibibio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ibd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iwaidja", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ibe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akpes", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ibg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ibanag", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ibh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bih", - Comment: null, - }, - { - Id: "ibl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ibaloi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ibm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Agoi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ibn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ibino", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ibo", - Part2b: "ibo", - Part2t: "ibo", - Part1: "ig", - Scope: "I", - Language_Type: "L", - Ref_Name: "Igbo", - Comment: null, - }, - { - Id: "ibr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ibuoro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ibu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ibu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iby", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ibani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ica", - Scope: "I", - Language_Type: "L", - Ref_Name: "EdeIca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ich", - Scope: "I", - Language_Type: "L", - Ref_Name: "Etkywan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "icl", - Scope: "I", - Language_Type: "L", - Ref_Name: "IcelandicSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "icr", - Scope: "I", - Language_Type: "L", - Ref_Name: "IslanderCreoleEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ida", - Scope: "I", - Language_Type: "L", - Ref_Name: "Idakho-Isukha-Tiriki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "idb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Indo-Portuguese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "idc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Idon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "idd", - Scope: "I", - Language_Type: "L", - Ref_Name: "EdeIdaca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ide", - Scope: "I", - Language_Type: "L", - Ref_Name: "Idere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "idi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Idi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ido", - Part2b: "ido", - Part2t: "ido", - Part1: "io", - Scope: "I", - Language_Type: "C", - Ref_Name: "Ido", - Comment: null, - }, - { - Id: "idr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Indri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ids", - Scope: "I", - Language_Type: "L", - Ref_Name: "Idesa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "idt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Idaté", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "idu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Idoma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ifa", - Scope: "I", - Language_Type: "L", - Ref_Name: "AmganadIfugao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ifb", - Scope: "I", - Language_Type: "L", - Ref_Name: "BatadIfugao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ife", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ifè", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iff", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ifo", - Comment: null, - }, - { - Id: "ifk", - Scope: "I", - Language_Type: "L", - Ref_Name: "TuwaliIfugao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ifm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Teke-Fuumu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ifu", - Scope: "I", - Language_Type: "L", - Ref_Name: "MayoyaoIfugao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ify", - Scope: "I", - Language_Type: "L", - Ref_Name: "Keley-IKallahan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "igb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ebira", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ige", - Scope: "I", - Language_Type: "L", - Ref_Name: "Igede", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "igg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Igana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "igl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Igala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "igm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanggape", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ign", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ignaciano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "igo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Isebe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "igs", - Scope: "I", - Language_Type: "C", - Ref_Name: "Interglossa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "igw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Igwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ihb", - Scope: "I", - Language_Type: "L", - Ref_Name: "IhaBasedPidgin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ihi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ihievbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ihp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ihw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Bidhawal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iii", - Part2b: "iii", - Part2t: "iii", - Part1: "ii", - Scope: "I", - Language_Type: "L", - Ref_Name: "SichuanYi", - Comment: null, - }, - { - Id: "iin", - Scope: "I", - Language_Type: "E", - Ref_Name: "Thiin", - Comment: null, - }, - { - Id: "ijc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Izon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ije", - Scope: "I", - Language_Type: "L", - Ref_Name: "Biseni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ijj", - Scope: "I", - Language_Type: "L", - Ref_Name: "EdeIje", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ijn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalabari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ijs", - Scope: "I", - Language_Type: "L", - Ref_Name: "SoutheastIjo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ike", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternCanadianInuktitut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ikh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ikhin-Arokho", - Comment: null, - }, - { - Id: "iki", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ikk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ika", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ikl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ikulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iko", - Scope: "I", - Language_Type: "L", - Ref_Name: "Olulumo-Ikom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ikp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ikpeshi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ikr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ikaranggal", - Comment: null, - }, - { - Id: "iks", - Scope: "I", - Language_Type: "L", - Ref_Name: "InuitSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ikt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Inuinnaqtun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iku", - Part2b: "iku", - Part2t: "iku", - Part1: "iu", - Scope: "M", - Language_Type: "L", - Ref_Name: "Inuktitut", - Comment: null, - }, - { - Id: "ikv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iku-Gora-Ankwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ikw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ikwere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ikx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ikz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ikizu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ila", - Scope: "I", - Language_Type: "L", - Ref_Name: "IleApe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ilb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ila", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ile", - Part2b: "ile", - Part2t: "ile", - Part1: "ie", - Scope: "I", - Language_Type: "C", - Ref_Name: "Interlingue", - Comment: null, - }, - { - Id: "ilg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Garig-Ilgar", - Comment: null, - }, - { - Id: "ili", - Scope: "I", - Language_Type: "L", - Ref_Name: "IliTurki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ilk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ilongot", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ilm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iranun(Malaysia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ilo", - Part2b: "ilo", - Part2t: "ilo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iloko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ilp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iranun(Philippines)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ils", - Scope: "I", - Language_Type: "L", - Ref_Name: "InternationalSign", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ilu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ili'uun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ilv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ilue", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ima", - Scope: "I", - Language_Type: "L", - Ref_Name: "MalaMalasar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "imi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anamgura", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iml", - Scope: "I", - Language_Type: "E", - Ref_Name: "Miluk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "imn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Imonda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "imo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Imbongu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "imr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Imroing", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ims", - Scope: "I", - Language_Type: "H", - Ref_Name: "Marsian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "imt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Imotong", - Comment: null, - }, - { - Id: "imy", - Scope: "I", - Language_Type: "H", - Ref_Name: "Milyan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ina", - Part2b: "ina", - Part2t: "ina", - Part1: "ia", - Scope: "I", - Language_Type: "C", - Ref_Name: "Interlingua(InternationalAuxiliaryLanguageAssociation)", - Comment: null, - }, - { - Id: "inb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Inga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ind", - Part2b: "ind", - Part2t: "ind", - Part1: "id", - Scope: "I", - Language_Type: "L", - Ref_Name: "Indonesian", - Comment: null, - }, - { - Id: "ing", - Scope: "I", - Language_Type: "L", - Ref_Name: "Degexit'an", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "inh", - Part2b: "inh", - Part2t: "inh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ingush", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "inj", - Scope: "I", - Language_Type: "L", - Ref_Name: "JungleInga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "inl", - Scope: "I", - Language_Type: "L", - Ref_Name: "IndonesianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "inm", - Scope: "I", - Language_Type: "H", - Ref_Name: "Minaean", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "inn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Isinai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ino", - Scope: "I", - Language_Type: "L", - Ref_Name: "Inoke-Yate", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "inp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iñapari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ins", - Scope: "I", - Language_Type: "L", - Ref_Name: "IndianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "int", - Scope: "I", - Language_Type: "L", - Ref_Name: "Intha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "inz", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ineseño", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ior", - Scope: "I", - Language_Type: "L", - Ref_Name: "Inor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iou", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tuma-Irumu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iow", - Scope: "I", - Language_Type: "E", - Ref_Name: "Iowa-Oto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ipi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ipili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ipk", - Part2b: "ipk", - Part2t: "ipk", - Part1: "ik", - Scope: "M", - Language_Type: "L", - Ref_Name: "Inupiaq", - Comment: null, - }, - { - Id: "ipo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ipiko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iqu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iquito", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iqw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ikwo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ire", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iresim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "irh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Irarutu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iri", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rigwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "irk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iraqw", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "irn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Irántxe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "irr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ir", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iru", - Scope: "I", - Language_Type: "L", - Ref_Name: "Irula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "irx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamberau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iry", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iraya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "isa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Isabi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "isc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Isconahua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "isd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Isnag", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ise", - Scope: "I", - Language_Type: "L", - Ref_Name: "ItalianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "isg", - Scope: "I", - Language_Type: "L", - Ref_Name: "IrishSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ish", - Scope: "I", - Language_Type: "L", - Ref_Name: "Esan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "isi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nkem-Nkum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "isk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ishkashimi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "isl", - Part2b: "ice", - Part2t: "isl", - Part1: "is", - Scope: "I", - Language_Type: "L", - Ref_Name: "Icelandic", - Comment: null, - }, - { - Id: "ism", - Scope: "I", - Language_Type: "L", - Ref_Name: "Masimasi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "isn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Isanzu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iso", - Scope: "I", - Language_Type: "L", - Ref_Name: "Isoko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "isr", - Scope: "I", - Language_Type: "L", - Ref_Name: "IsraeliSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ist", - Scope: "I", - Language_Type: "L", - Ref_Name: "Istriot", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "isu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Isu(MenchumDivision)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ita", - Part2b: "ita", - Part2t: "ita", - Part1: "it", - Scope: "I", - Language_Type: "L", - Ref_Name: "Italian", - Comment: null, - }, - { - Id: "itb", - Scope: "I", - Language_Type: "L", - Ref_Name: "BinonganItneg", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "itd", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernTidung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ite", - Scope: "I", - Language_Type: "E", - Ref_Name: "Itene", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iti", - Scope: "I", - Language_Type: "L", - Ref_Name: "InlaodItneg", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "itk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Judeo-Italian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "itl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Itelmen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "itm", - Scope: "I", - Language_Type: "L", - Ref_Name: "ItuMbonUzo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ito", - Scope: "I", - Language_Type: "L", - Ref_Name: "Itonama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "itr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iteri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "its", - Scope: "I", - Language_Type: "L", - Ref_Name: "Isekiri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "itt", - Scope: "I", - Language_Type: "L", - Ref_Name: "MaengItneg", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "itv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Itawit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "itw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ito", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "itx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Itik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ity", - Scope: "I", - Language_Type: "L", - Ref_Name: "MoyadanItneg", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "itz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Itzá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ium", - Scope: "I", - Language_Type: "L", - Ref_Name: "IuMien", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ivb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ibatan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ivv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ivatan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iwk", - Scope: "I", - Language_Type: "L", - Ref_Name: "I-Wak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iwm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iwam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iwo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iwur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iws", - Scope: "I", - Language_Type: "L", - Ref_Name: "SepikIwam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ixc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ixcatec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ixl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ixil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iya", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iyayu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iyo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mesaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "iyx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yaka(Congo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "izh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ingrian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "izm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kizamani", - Comment: null, - }, - { - Id: "izr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Izere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "izz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Izii", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jaa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jamamadí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jab", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hyam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jac", - Scope: "I", - Language_Type: "L", - Ref_Name: "Popti'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jad", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jahanka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jae", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yabem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jaf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jah", - Scope: "I", - Language_Type: "L", - Ref_Name: "JahHut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jaj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zazao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jak", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jakun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jal", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yalahatan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jam", - Scope: "I", - Language_Type: "L", - Ref_Name: "JamaicanCreoleEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jan", - Scope: "I", - Language_Type: "E", - Ref_Name: "Jandai", - Comment: null, - }, - { - Id: "jao", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yanyuwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jaq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yaqay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jas", - Scope: "I", - Language_Type: "L", - Ref_Name: "NewCaledonianJavanese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jat", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jakati", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jau", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yaur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jav", - Part2b: "jav", - Part2t: "jav", - Part1: "jv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Javanese", - Comment: null, - }, - { - Id: "jax", - Scope: "I", - Language_Type: "L", - Ref_Name: "JambiMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jay", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yan-nhangu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jaz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jawe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jbe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Judeo-Berber", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jbi", - Scope: "I", - Language_Type: "E", - Ref_Name: "Badjiri", - Comment: null, - }, - { - Id: "jbj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arandai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jbk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Barikewa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jbm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bijim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jbn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nafusi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jbo", - Part2b: "jbo", - Part2t: "jbo", - Scope: "I", - Language_Type: "C", - Ref_Name: "Lojban", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jbr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jofotek-Bromnya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jbt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jabutí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jbu", - Scope: "I", - Language_Type: "L", - Ref_Name: "JukunTakum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jbw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yawijibaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jcs", - Scope: "I", - Language_Type: "L", - Ref_Name: "JamaicanCountrySignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jct", - Scope: "I", - Language_Type: "L", - Ref_Name: "Krymchak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jda", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jad", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jdg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jadgali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jdt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Judeo-Tat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jeb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jebero", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jee", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jerung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jeh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jeh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jei", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jek", - Scope: "I", - Language_Type: "L", - Ref_Name: "JeriKuo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jel", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yelmek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jen", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jer", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jet", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jeu", - Scope: "I", - Language_Type: "L", - Ref_Name: "JonkorBourmataguil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jgb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ngbee", - Comment: null, - }, - { - Id: "jge", - Scope: "I", - Language_Type: "L", - Ref_Name: "Judeo-Georgian", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "jgk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gwak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jgo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngomba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jhi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jehai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jhs", - Scope: "I", - Language_Type: "L", - Ref_Name: "JhankotSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jia", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jib", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jibu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jic", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jid", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bu(KadunaState)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jie", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jilbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jig", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jingulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jih", - Scope: "I", - Language_Type: "L", - Ref_Name: "sTodsde", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jii", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jiiddu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jil", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jilim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jim", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jimi(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jio", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jiamao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jiq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guanyinqiao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jit", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jita", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jiu", - Scope: "I", - Language_Type: "L", - Ref_Name: "YouleJinuo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jiv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shuar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jiy", - Scope: "I", - Language_Type: "L", - Ref_Name: "BuyuanJinuo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jje", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jejueo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jjr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bankal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaera", - Comment: null, - }, - { - Id: "jkm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MobwaKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jko", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kubo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jkp", - Scope: "I", - Language_Type: "L", - Ref_Name: "PakuKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jkr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koro(India)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jks", - Scope: "I", - Language_Type: "L", - Ref_Name: "AmamiKoniyaSignLanguage", - Comment: null, - }, - { - Id: "jku", - Scope: "I", - Language_Type: "L", - Ref_Name: "Labir", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jle", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngile", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jls", - Scope: "I", - Language_Type: "L", - Ref_Name: "JamaicanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jma", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jmb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zumbun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jmc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Machame", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jmd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yamdena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jmi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jimi(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jml", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jumli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jmn", - Scope: "I", - Language_Type: "L", - Ref_Name: "MakuriNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jmr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jms", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mashi(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jmw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mouwase", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jmx", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternJuxtlahuacaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jna", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jangshung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jnd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jandavra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jng", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yangman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jni", - Scope: "I", - Language_Type: "L", - Ref_Name: "Janji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jnj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yemsa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jnl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rawat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jns", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jaunsari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "job", - Scope: "I", - Language_Type: "L", - Ref_Name: "Joba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jod", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wojenaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jog", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jogi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jor", - Scope: "I", - Language_Type: "E", - Ref_Name: "Jorá", - Comment: null, - }, - { - Id: "jos", - Scope: "I", - Language_Type: "L", - Ref_Name: "JordanianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jow", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jowulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jpa", - Scope: "I", - Language_Type: "H", - Ref_Name: "JewishPalestinianAramaic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jpn", - Part2b: "jpn", - Part2t: "jpn", - Part1: "ja", - Scope: "I", - Language_Type: "L", - Ref_Name: "Japanese", - Comment: null, - }, - { - Id: "jpr", - Part2b: "jpr", - Part2t: "jpr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Judeo-Persian", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "jqr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jaqaru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jra", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jarai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jrb", - Part2b: "jrb", - Part2t: "jrb", - Scope: "M", - Language_Type: "L", - Ref_Name: "Judeo-Arabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "jrr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jiru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jrt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jakattoe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jru", - Scope: "I", - Language_Type: "L", - Ref_Name: "Japrería", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jsl", - Scope: "I", - Language_Type: "L", - Ref_Name: "JapaneseSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jua", - Scope: "I", - Language_Type: "L", - Ref_Name: "Júma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jub", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wannu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "juc", - Scope: "I", - Language_Type: "H", - Ref_Name: "Jurchen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jud", - Scope: "I", - Language_Type: "L", - Ref_Name: "Worodougou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "juh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hõne", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jui", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ngadjuri", - Comment: null, - }, - { - Id: "juk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wapan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jul", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jirel", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jumjum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jun", - Scope: "I", - Language_Type: "L", - Ref_Name: "Juang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "juo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jiba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jup", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hupdë", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jur", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jurúna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jus", - Scope: "I", - Language_Type: "L", - Ref_Name: "JumlaSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jut", - Scope: "I", - Language_Type: "H", - Ref_Name: "Jutish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "juu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ju", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "juw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wãpha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "juy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Juray", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jvd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Javindo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jvn", - Scope: "I", - Language_Type: "L", - Ref_Name: "CaribbeanJavanese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jwi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jwira-Pepesa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jya", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jiarong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "jye", - Scope: "I", - Language_Type: "L", - Ref_Name: "Judeo-YemeniArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "jyy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kaa", - Part2b: "kaa", - Part2t: "kaa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kara-Kalpak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kab", - Part2b: "kab", - Part2t: "kab", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kabyle", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kac", - Part2b: "kac", - Part2t: "kac", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kachin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kad", - Scope: "I", - Language_Type: "L", - Ref_Name: "Adara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kae", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ketangalan", - Comment: null, - }, - { - Id: "kaf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Katso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kajaman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kah", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kara(CentralAfricanRepublic)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kai", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karekare", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kaj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jju", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kak", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalanguya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kal", - Part2b: "kal", - Part2t: "kal", - Part1: "kl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalaallisut", - Comment: null, - }, - { - Id: "kam", - Part2b: "kam", - Part2t: "kam", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamba(Kenya)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kan", - Part2b: "kan", - Part2t: "kan", - Part1: "kn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kannada", - Comment: null, - }, - { - Id: "kao", - Scope: "I", - Language_Type: "L", - Ref_Name: "Xaasongaxango", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kap", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bezhta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kaq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Capanahua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kas", - Part2b: "kas", - Part2t: "kas", - Part1: "ks", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kashmiri", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "kat", - Part2b: "geo", - Part2t: "kat", - Part1: "ka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Georgian", - Comment: null, - }, - { - Id: "kau", - Part2b: "kau", - Part2t: "kau", - Part1: "kr", - Scope: "M", - Language_Type: "L", - Ref_Name: "Kanuri", - Comment: null, - }, - { - Id: "kav", - Scope: "I", - Language_Type: "L", - Ref_Name: "Katukína", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kaw", - Part2b: "kaw", - Part2t: "kaw", - Scope: "I", - Language_Type: "H", - Ref_Name: "Kawi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kax", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kay", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamayurá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kaz", - Part2b: "kaz", - Part2t: "kaz", - Part1: "kk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kazakh", - Comment: null, - }, - { - Id: "kba", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kalarko", - Comment: null, - }, - { - Id: "kbb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kaxuiâna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kadiwéu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbd", - Part2b: "kbd", - Part2t: "kbd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kabardian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanju", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khamba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Camsá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaptiau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbk", - Scope: "I", - Language_Type: "L", - Ref_Name: "GrassKoiari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanembu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iwal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kare(CentralAfricanRepublic)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Keliko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kabiyè", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kafa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kande", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abadi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kabutra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dera(Indonesia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaiep", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbx", - Scope: "I", - Language_Type: "L", - Ref_Name: "ApMa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kby", - Scope: "I", - Language_Type: "L", - Ref_Name: "MangaKanuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kbz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duhwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kca", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khanty", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kawacha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lubila", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcd", - Scope: "I", - Language_Type: "L", - Ref_Name: "NgkâlmpwKanum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kce", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaivi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ukaan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tyap", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kch", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vono", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kci", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamantan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kobiana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kck", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kela(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gula(CentralAfricanRepublic)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nubi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kco", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kinalakna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Katla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koenoem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kct", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kami(Tanzania)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kete", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kabwari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kachama-Ganjule", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Korandje", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kcz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Konongo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kda", - Scope: "I", - Language_Type: "E", - Ref_Name: "Worimi", - Comment: null, - }, - { - Id: "kdc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kutu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yankunytjatjara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kde", - Scope: "I", - Language_Type: "L", - Ref_Name: "Makonde", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mamusi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Seba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kumam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karamojong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Numèè", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsikimba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kagoma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kunda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaningdon-Nindem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koch", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karaim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kadaru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koneraw", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Keder", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kdz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwaja", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kea", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kabuverdianu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "keb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kélé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kec", - Scope: "I", - Language_Type: "L", - Ref_Name: "Keiga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ked", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kerewe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kee", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternKeres", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kef", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kpessi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "keg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "keh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Keak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kei", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kej", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kadar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kek", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kekchí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kel", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kela(DemocraticRepublicofCongo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kem", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kemak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ken", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kenyang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "keo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kakwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kep", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaikadi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "keq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ker", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kes", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kugbo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ket", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ket", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "keu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akebu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kev", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanikkaran", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kew", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestKewa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kex", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kukna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "key", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kupia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kez", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kukele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kodava", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfb", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthwesternKolami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Konda-Dora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfd", - Scope: "I", - Language_Type: "L", - Ref_Name: "KorraKoraga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kota(India)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kff", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kudiya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kurichiya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfi", - Scope: "I", - Language_Type: "L", - Ref_Name: "KannadaKurumba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kemiehua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kinnauri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khunsari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koro(Côted'Ivoire)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Korwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Korku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kachhi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bilaspuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kft", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanjari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Katkari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kurmukar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfw", - Scope: "I", - Language_Type: "L", - Ref_Name: "KharamNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfx", - Scope: "I", - Language_Type: "L", - Ref_Name: "KulluPahari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kumaoni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kfz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koromfé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kga", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koyaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kawe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kge", - Scope: "I", - Language_Type: "L", - Ref_Name: "Komering", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kube", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kusunda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgi", - Scope: "I", - Language_Type: "L", - Ref_Name: "SelangorSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgj", - Scope: "I", - Language_Type: "L", - Ref_Name: "GamaleKham", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaiwá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgl", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kunggari", - Comment: null, - }, - { - Id: "kgn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karingani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Krongo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaingang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamoro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kumbainggar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Somyev", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kobol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgw", - Scope: "I", - Language_Type: "L", - Ref_Name: "KaronDori", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamaru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kgy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kyerung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kha", - Part2b: "kha", - Part2t: "kha", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khasi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lü", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khc", - Scope: "I", - Language_Type: "L", - Ref_Name: "TukangBesiNorth", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khd", - Scope: "I", - Language_Type: "L", - Ref_Name: "BädiKanum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Korowai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khuen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khg", - Scope: "I", - Language_Type: "L", - Ref_Name: "KhamsTibetan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kehu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuturmi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khk", - Scope: "I", - Language_Type: "L", - Ref_Name: "HalhMongolian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lusi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khm", - Part2b: "khm", - Part2t: "khm", - Part1: "km", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khmer", - Comment: null, - }, - { - Id: "khn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khandesi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kho", - Part2b: "kho", - Part2t: "kho", - Scope: "I", - Language_Type: "H", - Ref_Name: "Khotanese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kapori", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khq", - Scope: "I", - Language_Type: "L", - Ref_Name: "KoyraChiiniSonghay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kharia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kasua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kht", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khamti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nkhumbi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khvarshi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khowar", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "khx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kele(DemocraticRepublicofCongo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "khz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Keapara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kia", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kib", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koalib", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kic", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kickapoo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kid", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koshin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kie", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kibet", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kif", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternParbateKham", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kig", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kimaama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kih", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kilmeri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kii", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kitsai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kij", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kilivila", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kik", - Part2b: "kik", - Part2t: "kik", - Part1: "ki", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kikuyu", - Comment: null, - }, - { - Id: "kil", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kariya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kim", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karagas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kin", - Part2b: "kin", - Part2t: "kin", - Part1: "rw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kinyarwanda", - Comment: null, - }, - { - Id: "kio", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kiowa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kip", - Scope: "I", - Language_Type: "L", - Ref_Name: "SheshiKham", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kiq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kosadle", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kir", - Part2b: "kir", - Part2t: "kir", - Part1: "ky", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kirghiz", - Comment: null, - }, - { - Id: "kis", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kis", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kit", - Scope: "I", - Language_Type: "L", - Ref_Name: "Agob", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kiu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kirmanjki(individuallanguage)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kiv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kimbu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kiw", - Scope: "I", - Language_Type: "L", - Ref_Name: "NortheastKiwai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kix", - Scope: "I", - Language_Type: "L", - Ref_Name: "KhiamniunganNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kiy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kirikiri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kiz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kisi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kja", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mlap", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Q'anjob'al", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CoastalKonjo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjd", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernKiwai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kje", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kisar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khmu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khakas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kji", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zabana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khinalugh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjk", - Scope: "I", - Language_Type: "L", - Ref_Name: "HighlandKonjo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjl", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternParbateKham", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kháng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kunjen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjo", - Scope: "I", - Language_Type: "L", - Ref_Name: "HarijanKinnauri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjp", - Scope: "I", - Language_Type: "L", - Ref_Name: "PwoEasternKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjq", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternKeres", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kurudu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjs", - Scope: "I", - Language_Type: "L", - Ref_Name: "EastKewa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjt", - Scope: "I", - Language_Type: "L", - Ref_Name: "PhraePwoKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kju", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kashaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjv", - Scope: "I", - Language_Type: "H", - Ref_Name: "KaikavianLiteraryLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ramopa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Erave", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kjz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bumthangkha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kakanda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwerisa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Odoodee", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kinuku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kke", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kakabe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkf", - Scope: "I", - Language_Type: "L", - Ref_Name: "KalaktangMonpa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkg", - Scope: "I", - Language_Type: "L", - Ref_Name: "MabakaValleyKalinga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khün", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kki", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kagulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kako", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kokota", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkl", - Scope: "I", - Language_Type: "L", - Ref_Name: "KosarekYale", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kiong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkn", - Scope: "I", - Language_Type: "L", - Ref_Name: "KonKeu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kko", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gugubera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaeku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kir-Balar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kks", - Scope: "I", - Language_Type: "L", - Ref_Name: "Giiwo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kku", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tumi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kangean", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Teke-Kukuya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kohin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kky", - Scope: "I", - Language_Type: "L", - Ref_Name: "GuuguYimidhirr", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kkz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaska", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kla", - Scope: "I", - Language_Type: "E", - Ref_Name: "Klamath-Modoc", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kiliwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kolbila", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kld", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gamilaraay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kle", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kulung(Nepal)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kendeje", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tagakaulo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Weliki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kli", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalumpang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khalaj", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kono(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kll", - Scope: "I", - Language_Type: "L", - Ref_Name: "KaganKalagan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Migum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kln", - Scope: "M", - Language_Type: "L", - Ref_Name: "Kalenjin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kapya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamasa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rumu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khaling", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kls", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalasha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nukna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Klao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maskelynes", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tado", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koluwawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kly", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "klz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kabola", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kma", - Scope: "I", - Language_Type: "L", - Ref_Name: "Konni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmb", - Part2b: "kmb", - Part2t: "kmb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kimbundu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmc", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernDong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmd", - Scope: "I", - Language_Type: "L", - Ref_Name: "MajukayangKalinga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kme", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bakole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kare(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kâte", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kami(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmj", - Scope: "I", - Language_Type: "L", - Ref_Name: "KumarbhagPaharia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmk", - Scope: "I", - Language_Type: "L", - Ref_Name: "LimosKalinga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kml", - Scope: "I", - Language_Type: "L", - Ref_Name: "TanudanKalinga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kom(India)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awtuw", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwoma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gimme", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmr", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernKurdish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kms", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamasau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kemtuik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanite", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmv", - Scope: "I", - Language_Type: "L", - Ref_Name: "KaripúnaCreoleFrench", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Komo(DemocraticRepublicofCongo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waboda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kmz", - Scope: "I", - Language_Type: "L", - Ref_Name: "KhorasaniTurkish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kna", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dera(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knb", - Scope: "I", - Language_Type: "L", - Ref_Name: "LubuaganKalinga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralKanuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Konda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kne", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kankanaey", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mankanya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kng", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koongo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kni", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanufi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knj", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternKanjobal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuranko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Keninjal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanamarí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Konkani(individuallanguage)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kno", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kono(SierraLeone)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwanja", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kintaq", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaningra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kns", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kensiu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knt", - Scope: "I", - Language_Type: "L", - Ref_Name: "PanoanKatukína", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kono(Guinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tabo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kung-Ekoka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kendayan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kny", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanyok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "knz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalamsé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "koa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Konomala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "koc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kpati", - Comment: null, - }, - { - Id: "kod", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kodi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "koe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kacipo-BaleSuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kof", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kubi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kog", - Scope: "I", - Language_Type: "L", - Ref_Name: "Cogui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "koh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "koi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Komi-Permyak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kok", - Part2b: "kok", - Part2t: "kok", - Scope: "M", - Language_Type: "L", - Ref_Name: "Konkani(macrolanguage)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kol", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kol(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kom", - Part2b: "kom", - Part2t: "kom", - Part1: "kv", - Scope: "M", - Language_Type: "L", - Ref_Name: "Komi", - Comment: null, - }, - { - Id: "kon", - Part2b: "kon", - Part2t: "kon", - Part1: "kg", - Scope: "M", - Language_Type: "L", - Ref_Name: "Kongo", - Comment: null, - }, - { - Id: "koo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Konzo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kop", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waube", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "koq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kota(Gabon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kor", - Part2b: "kor", - Part2t: "kor", - Part1: "ko", - Scope: "I", - Language_Type: "L", - Ref_Name: "Korean", - Comment: null, - }, - { - Id: "kos", - Part2b: "kos", - Part2t: "kos", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kosraean", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kot", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lagwan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kou", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koke", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kov", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kudu-Camo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kow", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kugama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "koy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koyukon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "koz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Korak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kutto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpb", - Scope: "I", - Language_Type: "L", - Ref_Name: "MulluKurumba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Curripaco", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpe", - Part2b: "kpe", - Part2t: "kpe", - Scope: "M", - Language_Type: "L", - Ref_Name: "Kpelle", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Komba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kapingamarangi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kph", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kplang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kofei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karajá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kpan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kpala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koho", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kepkiriwát", - Comment: null, - }, - { - Id: "kpo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ikposo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Korupun-Sela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Korafe-Yegha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kps", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tehit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karata", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kafoa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Komi-Zyrian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kobon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpx", - Scope: "I", - Language_Type: "L", - Ref_Name: "MountainKoiali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koryak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kpz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kupsabiny", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kovai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Doromu-Koki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqd", - Scope: "I", - Language_Type: "L", - Ref_Name: "KoySanjaqSurat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalagan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kakabai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kisankasa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koitabu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koromira", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqk", - Scope: "I", - Language_Type: "L", - Ref_Name: "KotafonGbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kql", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kyenele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khisa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaonde", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqo", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternKrahn", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kimré", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Krenak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kimaragang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqs", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernKissi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqt", - Scope: "I", - Language_Type: "L", - Ref_Name: "KliasRiverKadazan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Seroa", - Comment: null, - }, - { - Id: "kqv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Okolod", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kandas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mser", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koorete", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kqz", - Scope: "I", - Language_Type: "E", - Ref_Name: "Korana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kra", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kumhali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Karkin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krc", - Part2b: "krc", - Part2t: "krc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karachay-Balkar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kairui-Midiki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kre", - Scope: "I", - Language_Type: "L", - Ref_Name: "Panará", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koro(Vanuatu)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kurama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kri", - Scope: "I", - Language_Type: "L", - Ref_Name: "Krio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kinaray-A", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kerek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krl", - Part2b: "krl", - Part2t: "krl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karelian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sapo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Durop", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Krung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gbaya(Sudan)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krt", - Scope: "I", - Language_Type: "L", - Ref_Name: "TumariKanuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kru", - Part2b: "kru", - Part2t: "kru", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kurukh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kavet", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krw", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternKrahn", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kry", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kryts", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "krz", - Scope: "I", - Language_Type: "L", - Ref_Name: "SotaKanum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shambala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksc", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernKalinga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuanua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kse", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bafia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kusaghe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kölsch", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Krisa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uare", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kansa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kumalu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kumba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kasiguranin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kso", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kofa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwaami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Borong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kss", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernKisi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kst", - Scope: "I", - Language_Type: "L", - Ref_Name: "Winyé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khamyang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kusu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksw", - Scope: "I", - Language_Type: "L", - Ref_Name: "S'gawKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kedang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksy", - Scope: "I", - Language_Type: "L", - Ref_Name: "KhariaThar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ksz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kodaku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kta", - Scope: "I", - Language_Type: "L", - Ref_Name: "Katua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kambaata", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kholok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kokata", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kte", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nubri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kalkutung", - Comment: null, - }, - { - Id: "kth", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kti", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthMuyu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktj", - Scope: "I", - Language_Type: "L", - Ref_Name: "PlapoKrumen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kaniet", - Comment: null, - }, - { - Id: "ktl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koroshi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kurti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karitiâna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kto", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuot", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaduo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktq", - Scope: "I", - Language_Type: "E", - Ref_Name: "Katabaga", - Comment: null, - }, - { - Id: "kts", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthMuyu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ketum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kituba(DemocraticRepublicofCongo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktv", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternKatu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kato", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaxararí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kty", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kango(Bas-UéléDistrict)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ktz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Juǀʼhoan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kua", - Part2b: "kua", - Part2t: "kua", - Part1: "kj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuanyama", - Comment: null, - }, - { - Id: "kub", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kutep", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kuc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwinsu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kud", - Scope: "I", - Language_Type: "L", - Ref_Name: "'Auhelawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kue", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuman(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kuf", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternKatu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kug", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kupa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kuh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kushi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kui", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuikúro-Kalapálo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kuj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuria", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kuk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kepo'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kul", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kulere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kum", - Part2b: "kum", - Part2t: "kum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kumyk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kun", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kunama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kuo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kumukio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kup", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kunimaipa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kuq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karipuna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kur", - Part2b: "kur", - Part2t: "kur", - Part1: "ku", - Scope: "M", - Language_Type: "L", - Ref_Name: "Kurdish", - Comment: null, - }, - { - Id: "kus", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kusaal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kut", - Part2b: "kut", - Part2t: "kut", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kutenai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kuu", - Scope: "I", - Language_Type: "L", - Ref_Name: "UpperKuskokwim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kuv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kuw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kpagua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kux", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kukatja", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kuy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuuku-Ya'u", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kuz", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kunza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kva", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bagvalal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kubu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kove", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kui(Indonesia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kve", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalabakan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kabalai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuni-Boazi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Komodo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Psikye", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvk", - Scope: "I", - Language_Type: "L", - Ref_Name: "KoreanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kayaw", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kendem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvn", - Scope: "I", - Language_Type: "L", - Ref_Name: "BorderKuna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dobel", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kompane", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvq", - Scope: "I", - Language_Type: "L", - Ref_Name: "GebaKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kerinci", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvt", - Scope: "I", - Language_Type: "L", - Ref_Name: "LahtaKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvu", - Scope: "I", - Language_Type: "L", - Ref_Name: "YinbawKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kola", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wersing", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvx", - Scope: "I", - Language_Type: "L", - Ref_Name: "ParkariKoli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvy", - Scope: "I", - Language_Type: "L", - Ref_Name: "YintaleKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kvz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsakwambo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dâw", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Likwala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwaio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwerba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwara'ae", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwg", - Scope: "I", - Language_Type: "L", - Ref_Name: "SaraKabaDeme", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kowiai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awa-Cuaiquer", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwakiutl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kofyar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwambi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwangali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwomtari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kodia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwer", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kws", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwesten", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwakum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwv", - Scope: "I", - Language_Type: "L", - Ref_Name: "SaraKabaNáà", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kww", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwinti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khirwar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwy", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanSalvadorKongo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kwz", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kwadi", - Comment: null, - }, - { - Id: "kxa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kairiru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Krobu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Konso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Brunei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxf", - Scope: "I", - Language_Type: "L", - Ref_Name: "ManumanawKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karo(Ethiopia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxi", - Scope: "I", - Language_Type: "L", - Ref_Name: "KeningauMurut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kulfa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxk", - Scope: "I", - Language_Type: "L", - Ref_Name: "ZayeinKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxm", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernKhmer", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanowit-TanjongMelanau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxo", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kanoé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxp", - Scope: "I", - Language_Type: "L", - Ref_Name: "WadiyaraKoli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxq", - Scope: "I", - Language_Type: "L", - Ref_Name: "SmärkyKanum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koro(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kangjia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koiwat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuvi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Konai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Likuba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kayong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kxz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kerewo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kya", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyb", - Scope: "I", - Language_Type: "L", - Ref_Name: "ButbutKalinga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kyaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karey", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kye", - Scope: "I", - Language_Type: "L", - Ref_Name: "Krache", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kouya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Keyagana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kiput", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamayo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalapuya", - Comment: null, - }, - { - Id: "kym", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kpatili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyn", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernBinukidnon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kelon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kenga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuruáya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kys", - Scope: "I", - Language_Type: "L", - Ref_Name: "BaramKayan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kayagar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyu", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternKayah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kayort", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kudmali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rapoisi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kambaira", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kyz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kayabí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kza", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternKaraboro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaibobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzc", - Scope: "I", - Language_Type: "L", - Ref_Name: "BondoukouKulango", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kadai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kze", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kosena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Da'aKaili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kikai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kelabit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kazukuru", - Comment: null, - }, - { - Id: "kzl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kayeli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kais", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kokola", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaningi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaidipang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaike", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzs", - Scope: "I", - Language_Type: "L", - Ref_Name: "SugutDusun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kayupulau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Komyandaret", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Karirí-Xocó", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzx", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kamarian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kango(TshopoDistrict)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "kzz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalabra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "laa", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernSubanen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lab", - Scope: "I", - Language_Type: "H", - Ref_Name: "LinearA", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lac", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lacandon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lad", - Part2b: "lad", - Part2t: "lad", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ladino", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lae", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pattani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "laf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lafofa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rangi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lah", - Part2b: "lah", - Part2t: "lah", - Scope: "M", - Language_Type: "L", - Ref_Name: "Lahnda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lai", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lambya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "laj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lango(Uganda)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lal", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lalia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lam", - Part2b: "lam", - Part2t: "lam", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lamba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lan", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lao", - Part2b: "lao", - Part2t: "lao", - Part1: "lo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lao", - Comment: null, - }, - { - Id: "lap", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laka(Chad)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "laq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Qabiao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lar", - Scope: "I", - Language_Type: "L", - Ref_Name: "Larteh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "las", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lama(Togo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lat", - Part2b: "lat", - Part2t: "lat", - Part1: "la", - Scope: "I", - Language_Type: "H", - Ref_Name: "Latin", - Comment: null, - }, - { - Id: "lau", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lav", - Part2b: "lav", - Part2t: "lav", - Part1: "lv", - Scope: "M", - Language_Type: "L", - Ref_Name: "Latvian", - Comment: null, - }, - { - Id: "law", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lauje", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lax", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tiwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lay", - Scope: "I", - Language_Type: "L", - Ref_Name: "LamaBai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "laz", - Scope: "I", - Language_Type: "E", - Ref_Name: "Aribwatsa", - Comment: null, - }, - { - Id: "lbb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Label", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lakkia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tinani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laopang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbi", - Scope: "I", - Language_Type: "L", - Ref_Name: "La'bi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ladakhi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbk", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralBontok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbl", - Scope: "I", - Language_Type: "L", - Ref_Name: "LibonBikol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lodhi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rmeet", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laven", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wampar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lohorung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbs", - Scope: "I", - Language_Type: "L", - Ref_Name: "LibyanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lachi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Labu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lavatbura-Lamusong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tolaki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lawangan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lby", - Scope: "I", - Language_Type: "E", - Ref_Name: "Lamalama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lbz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lardil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lcc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Legenyem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lcd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lola", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lce", - Scope: "I", - Language_Type: "L", - Ref_Name: "Loncong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lcf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lubu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lch", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luchazi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lcl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lisela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lcm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tungag", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lcp", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternLawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lcq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luhu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lcs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lisabata-Nuniali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lda", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kla-Dan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ldb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dũya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ldd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luri", - Comment: null, - }, - { - Id: "ldg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lenyima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ldh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lamja-Dengsa-Tola", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ldi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ldj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lemoro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ldk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Leelau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ldl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ldm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Landoma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ldn", - Scope: "I", - Language_Type: "C", - Ref_Name: "Láadan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ldo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Loo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ldp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ldq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lufu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lea", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lega-Shabunda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "leb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lala-Bisa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lec", - Scope: "I", - Language_Type: "L", - Ref_Name: "Leco", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "led", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lendu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lee", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lyélé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lef", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lelemi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "leh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lenje", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lei", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lemio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lej", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lengola", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lek", - Scope: "I", - Language_Type: "L", - Ref_Name: "Leipon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lel", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lele(DemocraticRepublicofCongo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lem", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nomaande", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "len", - Scope: "I", - Language_Type: "E", - Ref_Name: "Lenca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "leo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Leti(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lep", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lepcha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "leq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lembena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ler", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lenkau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "les", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "let", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lesing-Gelimi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "leu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kara(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lev", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lamma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lew", - Scope: "I", - Language_Type: "L", - Ref_Name: "LedoKaili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lex", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ley", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lemolang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lez", - Part2b: "lez", - Part2t: "lez", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lezghian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lfa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lefa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lfn", - Scope: "I", - Language_Type: "C", - Ref_Name: "LinguaFrancaNova", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lga", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lungga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lgb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laghu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lgg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lugbara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lgh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laghuu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lgi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lengilu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lgk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lingarak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lgl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lgm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lega-Mwenga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lgn", - Scope: "I", - Language_Type: "L", - Ref_Name: "T'apo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lgo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lango(SouthSudan)", - Comment: null, - }, - { - Id: "lgq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Logba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lgr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lengo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lgs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Guinea-BissauSignLanguage", - Comment: null, - }, - { - Id: "lgt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pahi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lgu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Longgu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lgz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ligenza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lha", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laha(VietNam)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lhh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laha(Indonesia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lhi", - Scope: "I", - Language_Type: "L", - Ref_Name: "LahuShi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lhl", - Scope: "I", - Language_Type: "L", - Ref_Name: "LahulLohar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lhm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lhomi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lhn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lahanan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lhp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lhokpu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lhs", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mlahsö", - Comment: null, - }, - { - Id: "lht", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lo-Toga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lhu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lahu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lia", - Scope: "I", - Language_Type: "L", - Ref_Name: "West-CentralLimba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lib", - Scope: "I", - Language_Type: "L", - Ref_Name: "Likum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lic", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hlai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lid", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyindrou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lie", - Scope: "I", - Language_Type: "L", - Ref_Name: "Likila", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lif", - Scope: "I", - Language_Type: "L", - Ref_Name: "Limbu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lig", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ligbi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lih", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lihir", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lij", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ligurian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lik", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lika", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lil", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lillooet", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lim", - Part2b: "lim", - Part2t: "lim", - Part1: "li", - Scope: "I", - Language_Type: "L", - Ref_Name: "Limburgan", - Comment: null, - }, - { - Id: "lin", - Part2b: "lin", - Part2t: "lin", - Part1: "ln", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lingala", - Comment: null, - }, - { - Id: "lio", - Scope: "I", - Language_Type: "L", - Ref_Name: "Liki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lip", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sekpele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "liq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Libido", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lir", - Scope: "I", - Language_Type: "L", - Ref_Name: "LiberianEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lis", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lisu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lit", - Part2b: "lit", - Part2t: "lit", - Part1: "lt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lithuanian", - Comment: null, - }, - { - Id: "liu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Logorik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "liv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Liv", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "liw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Col", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lix", - Scope: "I", - Language_Type: "L", - Ref_Name: "Liabuku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "liy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Banda-Bambari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "liz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Libinza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lja", - Scope: "I", - Language_Type: "E", - Ref_Name: "Golpa", - Comment: null, - }, - { - Id: "lje", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rampi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lji", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laiyolo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ljl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Li'o", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ljp", - Scope: "I", - Language_Type: "L", - Ref_Name: "LampungApi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ljw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yirandali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ljx", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yuru", - Comment: null, - }, - { - Id: "lka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lakalei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lkb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kabras", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lkc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kucong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lkd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lakondê", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lke", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kenyi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lkh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lakha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lki", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laki", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "lkj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Remun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lkl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laeko-Libuat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lkm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kalaamaya", - Comment: null, - }, - { - Id: "lkn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lakon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lko", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khayo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lkr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Päri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lks", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kisa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lkt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lakota", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lku", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kungkari", - Comment: null, - }, - { - Id: "lky", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lokoya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lla", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lala-Roba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "llb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lolo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "llc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lele(Guinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lld", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ladin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lle", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lele(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "llf", - Scope: "I", - Language_Type: "E", - Ref_Name: "Hermit", - Comment: null, - }, - { - Id: "llg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "llh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lamu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lli", - Scope: "I", - Language_Type: "L", - Ref_Name: "Teke-Laali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "llj", - Scope: "I", - Language_Type: "E", - Ref_Name: "LadjiLadji", - Comment: null, - }, - { - Id: "llk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Lelak", - Comment: null, - }, - { - Id: "lll", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lilau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "llm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lasalimu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lln", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lele(Chad)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "llp", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthEfate", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "llq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lolak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lls", - Scope: "I", - Language_Type: "L", - Ref_Name: "LithuanianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "llu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "llx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lauan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lma", - Scope: "I", - Language_Type: "L", - Ref_Name: "EastLimba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Merei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Limilngan", - Comment: null, - }, - { - Id: "lmd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lumun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lme", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pévé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmf", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthLembata", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lamogai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lambichhong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lombi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmj", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestLembata", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lamkang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lml", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lambadi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lombard", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Limbum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lamatuka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lamalera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lamenu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lomaiviti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmw", - Scope: "I", - Language_Type: "L", - Ref_Name: "LakeMiwok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laimbue", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lmy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lamboya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lna", - Scope: "I", - Language_Type: "L", - Ref_Name: "Langbashe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lnb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbalanhu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lnd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lundayeh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lng", - Scope: "I", - Language_Type: "H", - Ref_Name: "Langobardic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lnh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lanoh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lni", - Scope: "I", - Language_Type: "L", - Ref_Name: "Daantanai'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lnj", - Scope: "I", - Language_Type: "E", - Ref_Name: "Leningitij", - Comment: null, - }, - { - Id: "lnl", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthCentralBanda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lnm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Langam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lnn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lorediakarkar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lns", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lamnso'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lnu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Longuda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lnw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Lanima", - Comment: null, - }, - { - Id: "lnz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lonzo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "loa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Loloda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lob", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lobi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "loc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Inonhan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "loe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saluan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lof", - Scope: "I", - Language_Type: "L", - Ref_Name: "Logol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "log", - Scope: "I", - Language_Type: "L", - Ref_Name: "Logo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "loh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laarim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "loi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Loma(Côted'Ivoire)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "loj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lok", - Scope: "I", - Language_Type: "L", - Ref_Name: "Loko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lol", - Part2b: "lol", - Part2t: "lol", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mongo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lom", - Scope: "I", - Language_Type: "L", - Ref_Name: "Loma(Liberia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lon", - Scope: "I", - Language_Type: "L", - Ref_Name: "MalawiLomwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "loo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lombo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lop", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lopa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "loq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lobala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lor", - Scope: "I", - Language_Type: "L", - Ref_Name: "Téén", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "los", - Scope: "I", - Language_Type: "L", - Ref_Name: "Loniu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lot", - Scope: "I", - Language_Type: "L", - Ref_Name: "Otuho", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lou", - Scope: "I", - Language_Type: "L", - Ref_Name: "LouisianaCreole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lov", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lopi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "low", - Scope: "I", - Language_Type: "L", - Ref_Name: "TampiasLobu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lox", - Scope: "I", - Language_Type: "L", - Ref_Name: "Loun", - Comment: null, - }, - { - Id: "loy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Loke", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "loz", - Part2b: "loz", - Part2t: "loz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lozi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lpa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lelepa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lpe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lepki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lpn", - Scope: "I", - Language_Type: "L", - Ref_Name: "LongPhuriNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lpo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lipo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lpx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lopit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lqr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Logir", - Comment: null, - }, - { - Id: "lra", - Scope: "I", - Language_Type: "L", - Ref_Name: "RaraBakati'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lrc", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernLuri", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "lre", - Scope: "I", - Language_Type: "E", - Ref_Name: "Laurentian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lrg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Laragia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lri", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marachi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lrk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Loarki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lrl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lari", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "lrm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lrn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lorang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lro", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lrr", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernYamphu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lrt", - Scope: "I", - Language_Type: "L", - Ref_Name: "LarantukaMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lrv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Larevat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lrz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lemerig", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lsa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lasgerdi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lsb", - Scope: "I", - Language_Type: "L", - Ref_Name: "BurundianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lsc", - Scope: "I", - Language_Type: "L", - Ref_Name: "AlbarradasSignLanguage", - Comment: null, - }, - { - Id: "lsd", - Scope: "I", - Language_Type: "L", - Ref_Name: "LishanaDeni", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "lse", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lusengo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lsh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lsi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lashi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lsl", - Scope: "I", - Language_Type: "L", - Ref_Name: "LatvianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lsm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saamia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lsn", - Scope: "I", - Language_Type: "L", - Ref_Name: "TibetanSignLanguage", - Comment: null, - }, - { - Id: "lso", - Scope: "I", - Language_Type: "L", - Ref_Name: "LaosSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lsp", - Scope: "I", - Language_Type: "L", - Ref_Name: "PanamanianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lsr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aruop", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lss", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lasi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lst", - Scope: "I", - Language_Type: "L", - Ref_Name: "TrinidadandTobagoSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lsv", - Scope: "I", - Language_Type: "L", - Ref_Name: "SiviaSignLanguage", - Comment: null, - }, - { - Id: "lsw", - Scope: "I", - Language_Type: "L", - Ref_Name: "SeychellesSignLanguage", - Comment: null, - }, - { - Id: "lsy", - Scope: "I", - Language_Type: "L", - Ref_Name: "MauritianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ltc", - Scope: "I", - Language_Type: "H", - Ref_Name: "LateMiddleChinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ltg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Latgalian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lth", - Scope: "I", - Language_Type: "L", - Ref_Name: "Thur", - Comment: null, - }, - { - Id: "lti", - Scope: "I", - Language_Type: "L", - Ref_Name: "Leti(Indonesia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ltn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Latundê", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lto", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsotso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lts", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tachoni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ltu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Latu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ltz", - Part2b: "ltz", - Part2t: "ltz", - Part1: "lb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luxembourgish", - Comment: null, - }, - { - Id: "lua", - Part2b: "lua", - Part2t: "lua", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luba-Lulua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lub", - Part2b: "lub", - Part2t: "lub", - Part1: "lu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luba-Katanga", - Comment: null, - }, - { - Id: "luc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aringa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lud", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ludian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lue", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luvale", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "luf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laua", - Comment: null, - }, - { - Id: "lug", - Part2b: "lug", - Part2t: "lug", - Part1: "lg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ganda", - Comment: null, - }, - { - Id: "lui", - Part2b: "lui", - Part2t: "lui", - Scope: "I", - Language_Type: "E", - Ref_Name: "Luiseno", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "luj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "luk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lunanakha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lul", - Scope: "I", - Language_Type: "L", - Ref_Name: "Olu'bo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luimbi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lun", - Part2b: "lun", - Part2t: "lun", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lunda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "luo", - Part2b: "luo", - Part2t: "luo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luo(KenyaandTanzania)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lup", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lumbu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "luq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lucumi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lur", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laura", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lus", - Part2b: "lus", - Part2t: "lus", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lushai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lut", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lushootseed", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "luu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lumba-Yakkha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "luv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luwati", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "luw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luo(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "luy", - Scope: "M", - Language_Type: "L", - Ref_Name: "Luyia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "luz", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernLuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lva", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maku'a", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lvi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lavi", - Comment: null, - }, - { - Id: "lvk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lavukaleve", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lvl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lwel", - Comment: null, - }, - { - Id: "lvs", - Scope: "I", - Language_Type: "L", - Ref_Name: "StandardLatvian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lvu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Levuka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lwalu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lwe", - Scope: "I", - Language_Type: "L", - Ref_Name: "LewoEleng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lwg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lwh", - Scope: "I", - Language_Type: "L", - Ref_Name: "WhiteLachi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lwl", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternLawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lwm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laomian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lwo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luwo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lws", - Scope: "I", - Language_Type: "L", - Ref_Name: "MalawianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lwt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lewotobi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lwu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lawu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lww", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lewo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lxm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lakurumau", - Comment: null, - }, - { - Id: "lya", - Scope: "I", - Language_Type: "L", - Ref_Name: "Layakha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lyg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lyngngam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lyn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luyana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lzh", - Scope: "I", - Language_Type: "H", - Ref_Name: "LiteraryChinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lzl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Litzlitz", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lzn", - Scope: "I", - Language_Type: "L", - Ref_Name: "LeinongNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "lzz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Laz", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "maa", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanJerónimoTecóatlMazatec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mab", - Scope: "I", - Language_Type: "L", - Ref_Name: "YutanduchiMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mad", - Part2b: "mad", - Part2t: "mad", - Scope: "I", - Language_Type: "L", - Ref_Name: "Madurese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mae", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bo-Rukul", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "maf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mafa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mag", - Part2b: "mag", - Part2t: "mag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Magahi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mah", - Part2b: "mah", - Part2t: "mah", - Part1: "mh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marshallese", - Comment: null, - }, - { - Id: "mai", - Part2b: "mai", - Part2t: "mai", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maithili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "maj", - Scope: "I", - Language_Type: "L", - Ref_Name: "JalapaDeDíazMazatec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mak", - Part2b: "mak", - Part2t: "mak", - Scope: "I", - Language_Type: "L", - Ref_Name: "Makasar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mal", - Part2b: "mal", - Part2t: "mal", - Part1: "ml", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malayalam", - Comment: null, - }, - { - Id: "mam", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "man", - Part2b: "man", - Part2t: "man", - Scope: "M", - Language_Type: "L", - Ref_Name: "Mandingo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "maq", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChiquihuitlánMazatec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mar", - Part2b: "mar", - Part2t: "mar", - Part1: "mr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marathi", - Comment: null, - }, - { - Id: "mas", - Part2b: "mas", - Part2t: "mas", - Scope: "I", - Language_Type: "L", - Ref_Name: "Masai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mat", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanFranciscoMatlatzinca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mau", - Scope: "I", - Language_Type: "L", - Ref_Name: "HuautlaMazatec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mav", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sateré-Mawé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "maw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mampruli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "max", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthMoluccanMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "maz", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralMazahua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mba", - Scope: "I", - Language_Type: "L", - Ref_Name: "Higaonon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbb", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternBukidnonManobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Macushi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbd", - Scope: "I", - Language_Type: "L", - Ref_Name: "DibabawonManobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbe", - Scope: "I", - Language_Type: "E", - Ref_Name: "Molale", - Comment: null, - }, - { - Id: "mbf", - Scope: "I", - Language_Type: "L", - Ref_Name: "BabaMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mangseng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbi", - Scope: "I", - Language_Type: "L", - Ref_Name: "IlianenManobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nadëb", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maxakalí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ombamba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Macaguán", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbo(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malayo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maisin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbr", - Scope: "I", - Language_Type: "L", - Ref_Name: "NukakMakú", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbs", - Scope: "I", - Language_Type: "L", - Ref_Name: "SaranganiManobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbt", - Scope: "I", - Language_Type: "L", - Ref_Name: "MatigsalugManobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbula-Bwazza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbulungish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maring", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mari(EastSepikProvince)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mby", - Scope: "I", - Language_Type: "L", - Ref_Name: "Memoni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mbz", - Scope: "I", - Language_Type: "L", - Ref_Name: "AmoltepecMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mca", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Machiguenga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bitur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sharanahua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mce", - Scope: "I", - Language_Type: "L", - Ref_Name: "ItundujiaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Matsés", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mapoyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mch", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maquiritari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mci", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mvanip", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mck", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbunda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcl", - Scope: "I", - Language_Type: "E", - Ref_Name: "Macaguaje", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MalaccanCreolePortuguese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Masana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mco", - Scope: "I", - Language_Type: "L", - Ref_Name: "CoatlánMixe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Makaa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Menya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mambai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mct", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mengisa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcu", - Scope: "I", - Language_Type: "L", - Ref_Name: "CameroonMambila", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Minanibai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mawa(Chad)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mpiemo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcy", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthWatut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mcz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mawan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mda", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mada(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Morigi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Male(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mde", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maba(Chad)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdf", - Part2b: "mdf", - Part2t: "mdf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moksha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Massalat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maguindanaon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mamvu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mangbetu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mangbutu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdl", - Scope: "I", - Language_Type: "L", - Ref_Name: "MalteseSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mayogo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbati", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdr", - Part2b: "mdr", - Part2t: "mdr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mandar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mds", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maria(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mboko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdv", - Scope: "I", - Language_Type: "L", - Ref_Name: "SantaLucíaMonteverdeMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbosi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dizin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Male(Ethiopia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mdz", - Scope: "I", - Language_Type: "L", - Ref_Name: "SuruíDoPará", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mea", - Scope: "I", - Language_Type: "L", - Ref_Name: "Menka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "meb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ikobi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mec", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "med", - Scope: "I", - Language_Type: "L", - Ref_Name: "Melpa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mee", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mengen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mef", - Scope: "I", - Language_Type: "L", - Ref_Name: "Megam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "meh", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthwesternTlaxiacoMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mei", - Scope: "I", - Language_Type: "L", - Ref_Name: "Midob", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mej", - Scope: "I", - Language_Type: "L", - Ref_Name: "Meyah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mek", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mekeo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mel", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralMelanau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mem", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mangala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "men", - Part2b: "men", - Part2t: "men", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mende(SierraLeone)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "meo", - Scope: "I", - Language_Type: "L", - Ref_Name: "KedahMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mep", - Scope: "I", - Language_Type: "L", - Ref_Name: "Miriwoong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "meq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Merey", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mer", - Scope: "I", - Language_Type: "L", - Ref_Name: "Meru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mes", - Scope: "I", - Language_Type: "L", - Ref_Name: "Masmaje", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "met", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mato", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "meu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Motu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mev", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mew", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mey", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hassaniyya", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "mez", - Scope: "I", - Language_Type: "L", - Ref_Name: "Menominee", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfa", - Scope: "I", - Language_Type: "L", - Ref_Name: "PattaniMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bangka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mendankwe-Nkwen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Morisyen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mff", - Scope: "I", - Language_Type: "L", - Ref_Name: "Naki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mogofin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Matal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wandala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mefele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfk", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthMofu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Putai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MarghiSouth", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfn", - Scope: "I", - Language_Type: "L", - Ref_Name: "CrossRiverMbembe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfp", - Scope: "I", - Language_Type: "L", - Ref_Name: "MakassarMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marrithiyel", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfs", - Scope: "I", - Language_Type: "L", - Ref_Name: "MexicanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mft", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mokerang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbwela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mandjak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mulaha", - Comment: null, - }, - { - Id: "mfx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Melo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mayo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mfz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mabaan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mga", - Part2b: "mga", - Part2t: "mga", - Scope: "I", - Language_Type: "H", - Ref_Name: "MiddleIrish(900-1200)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mararit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Morokodo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mge", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mango", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maklew", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mpumpong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Makhuwa-Meetto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lijili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abureni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mawes", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maleu-Kilenge", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mambae", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbangi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Meta'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgp", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternMagar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malila", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mambwe-Lungu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manda(Tanzania)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mongol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mailu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Matengo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Matumbi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbunga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mgz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbugwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mha", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manda(India)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mahongwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mocho", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbugu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Besisi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mamaa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Margu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ma'di", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mogholi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mungaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mauwake", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Makhuwa-Moniga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mócheno", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mho", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mashi(Zambia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhp", - Scope: "I", - Language_Type: "L", - Ref_Name: "BalineseMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mandan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhr", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternMari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buru(Indonesia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mht", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mandahuaca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Digaro-Mishmi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbukushu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ma'anyan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mhz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mor(MorIslands)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mia", - Scope: "I", - Language_Type: "L", - Ref_Name: "Miami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mib", - Scope: "I", - Language_Type: "L", - Ref_Name: "AtatláhucaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mic", - Part2b: "mic", - Part2t: "mic", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mi'kmaq", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mid", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mandaic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mie", - Scope: "I", - Language_Type: "L", - Ref_Name: "OcotepecMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mif", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mofu-Gudur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mig", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanMiguelElGrandeMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mih", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChayucoMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mii", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChigmecatitlánMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mij", - Scope: "I", - Language_Type: "L", - Ref_Name: "Abar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mik", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mikasuki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mil", - Scope: "I", - Language_Type: "L", - Ref_Name: "PeñolesMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mim", - Scope: "I", - Language_Type: "L", - Ref_Name: "AlacatlatzalaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "min", - Part2b: "min", - Part2t: "min", - Scope: "I", - Language_Type: "L", - Ref_Name: "Minangkabau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mio", - Scope: "I", - Language_Type: "L", - Ref_Name: "PinotepaNacionalMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mip", - Scope: "I", - Language_Type: "L", - Ref_Name: "Apasco-ApoalaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "miq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mískito", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mir", - Scope: "I", - Language_Type: "L", - Ref_Name: "IsthmusMixe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mis", - Part2b: "mis", - Part2t: "mis", - Scope: "S", - Language_Type: "S", - Ref_Name: "Uncodedlanguages", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mit", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernPueblaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "miu", - Scope: "I", - Language_Type: "L", - Ref_Name: "CacaloxtepecMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "miw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akoye", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mix", - Scope: "I", - Language_Type: "L", - Ref_Name: "MixtepecMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "miy", - Scope: "I", - Language_Type: "L", - Ref_Name: "AyutlaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "miz", - Scope: "I", - Language_Type: "L", - Ref_Name: "CoatzospanMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Makalero", - Comment: null, - }, - { - Id: "mjc", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanJuanColoradoMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjd", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthwestMaidu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mje", - Scope: "I", - Language_Type: "E", - Ref_Name: "Muskum", - Comment: null, - }, - { - Id: "mjg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mwera(Nyasa)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mji", - Scope: "I", - Language_Type: "L", - Ref_Name: "KimMun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mawak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Matukar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mandeali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Medebur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ma(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malankuravan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malapandaram", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjq", - Scope: "I", - Language_Type: "E", - Ref_Name: "Malaryan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malavedan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Miship", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjt", - Scope: "I", - Language_Type: "L", - Ref_Name: "SauriaPaharia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mju", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manna-Dora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mannan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karbi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mahali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjy", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mahican", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mjz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Majhi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbre", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkb", - Scope: "I", - Language_Type: "L", - Ref_Name: "MalPaharia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Siliput", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkd", - Part2b: "mac", - Part2t: "mkd", - Part1: "mk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Macedonian", - Comment: null, - }, - { - Id: "mke", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mawchi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Miya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mak(China)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mki", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dhatki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mokilese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Byep", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mokole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moklen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkn", - Scope: "I", - Language_Type: "L", - Ref_Name: "KupangMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mko", - Scope: "I", - Language_Type: "L", - Ref_Name: "MingangDoso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moikodi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkq", - Scope: "I", - Language_Type: "E", - Ref_Name: "BayMiwok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mks", - Scope: "I", - Language_Type: "L", - Ref_Name: "SilacayoapanMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vamale", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mku", - Scope: "I", - Language_Type: "L", - Ref_Name: "KonyankaManinka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mafea", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kituba(Congo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkx", - Scope: "I", - Language_Type: "L", - Ref_Name: "KinamigingManobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mky", - Scope: "I", - Language_Type: "L", - Ref_Name: "EastMakian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mkz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Makasae", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mla", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbule", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CaoLan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mle", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manambu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlg", - Part2b: "mlg", - Part2t: "mlg", - Part1: "mg", - Scope: "M", - Language_Type: "L", - Ref_Name: "Malagasy", - Comment: null, - }, - { - Id: "mlh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mape", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mli", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malimpung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Miltu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ilwana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mll", - Scope: "I", - Language_Type: "L", - Ref_Name: "MaluaBay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mulam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mln", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malango", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mlomp", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bargam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlq", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternManinkakan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vame", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mls", - Scope: "I", - Language_Type: "L", - Ref_Name: "Masalit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlt", - Part2b: "mlt", - Part2t: "mlt", - Part1: "mt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maltese", - Comment: null, - }, - { - Id: "mlu", - Scope: "I", - Language_Type: "L", - Ref_Name: "To'abaita", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Motlav", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moloko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malfaxal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mlz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malaynon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mma", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Momina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmc", - Scope: "I", - Language_Type: "L", - Ref_Name: "MichoacánMazahua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maonan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mme", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mae", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mundat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmg", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthAmbrym", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mehináku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Musar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Majhwar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mukha-Dora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mml", - Scope: "I", - Language_Type: "L", - Ref_Name: "ManMet", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maii", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mamanwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmo", - Scope: "I", - Language_Type: "L", - Ref_Name: "ManggaBuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Siawi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Musak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmr", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternXiangxiMiao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malalamai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mmaala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmv", - Scope: "I", - Language_Type: "E", - Ref_Name: "Miriti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Emae", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Madak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Migaama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mmz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mabaale", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mna", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Muna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnc", - Part2b: "mnc", - Part2t: "mnc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manchu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mondé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mne", - Scope: "I", - Language_Type: "L", - Ref_Name: "Naba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mundani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mng", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternMnong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mono(DemocraticRepublicofCongo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mni", - Part2b: "mni", - Part2t: "mni", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manipuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Munji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mandinka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tiale", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mapena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnn", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernMnong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnp", - Scope: "I", - Language_Type: "L", - Ref_Name: "MinBeiChinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Minriq", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mono(USA)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mns", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mansi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mer", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rennell-Bellona", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manikion", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mny", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manyawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mnz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "moa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mwan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "moc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mocoví", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mod", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mobilian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "moe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Innu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mog", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mongondow", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "moh", - Part2b: "moh", - Part2t: "moh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mohawk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "moi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mboi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "moj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Monzombo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mok", - Scope: "I", - Language_Type: "L", - Ref_Name: "Morori", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mom", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mangue", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mon", - Part2b: "mon", - Part2t: "mon", - Part1: "mn", - Scope: "M", - Language_Type: "L", - Ref_Name: "Mongolian", - Comment: null, - }, - { - Id: "moo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Monom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mop", - Scope: "I", - Language_Type: "L", - Ref_Name: "MopánMaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "moq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mor(BomberaiPeninsula)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mor", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mos", - Part2b: "mos", - Part2t: "mos", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mossi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mot", - Scope: "I", - Language_Type: "L", - Ref_Name: "Barí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mou", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mogum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mov", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mohave", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mow", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moi(Congo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mox", - Scope: "I", - Language_Type: "L", - Ref_Name: "Molima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "moy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shekkacho", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "moz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mukulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mpoto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpb", - Scope: "I", - Language_Type: "L", - Ref_Name: "MalakMalak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mangarrayi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Machinere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Majang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mph", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mpade", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpj", - Scope: "I", - Language_Type: "L", - Ref_Name: "MartuWangka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbara(Chad)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpl", - Scope: "I", - Language_Type: "L", - Ref_Name: "MiddleWatut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpm", - Scope: "I", - Language_Type: "L", - Ref_Name: "YosondúaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mindiri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Miu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Migabac", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Matís", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vangunu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mps", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dadibi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Makuráp", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mungkip", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mapidian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Misima-Panaeati", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mpy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mapia", - Comment: null, - }, - { - Id: "mpz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mpi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maba(Indonesia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbuko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mangole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Matepi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Momuna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqg", - Scope: "I", - Language_Type: "L", - Ref_Name: "KotaBangunKutaiMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqh", - Scope: "I", - Language_Type: "L", - Ref_Name: "TlazoyaltepecMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mariri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mamasa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqk", - Scope: "I", - Language_Type: "L", - Ref_Name: "RajahKabunsuwanManobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mql", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbelime", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqm", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthMarquesan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moronene", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Modole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manipa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Minokok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mander", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqs", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestMakian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mandari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mosimo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Murupi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mamuju", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manggarai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mqz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mra", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mlabri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marino", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maricopa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrd", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternMagar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mre", - Scope: "I", - Language_Type: "E", - Ref_Name: "Martha'sVineyardSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Elseng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mising", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrh", - Scope: "I", - Language_Type: "L", - Ref_Name: "MaraChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mri", - Part2b: "mao", - Part2t: "mri", - Part1: "mi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maori", - Comment: null, - }, - { - Id: "mrj", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternMari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hmwaveke", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mortlockese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Merlav", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrn", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChekeHolo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mro", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Morouas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrq", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthMarquesan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maria(India)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maragus", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrt", - Scope: "I", - Language_Type: "L", - Ref_Name: "MarghiCentral", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mru", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mono(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mangareva", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maranao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maremgi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mry", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mandaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mrz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marind", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msa", - Part2b: "may", - Part2t: "msa", - Part1: "ms", - Scope: "M", - Language_Type: "L", - Ref_Name: "Malay(macrolanguage)", - Comment: null, - }, - { - Id: "msb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Masbatenyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msc", - Scope: "I", - Language_Type: "L", - Ref_Name: "SankaranManinka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msd", - Scope: "I", - Language_Type: "L", - Ref_Name: "YucatecMayaSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mse", - Scope: "I", - Language_Type: "L", - Ref_Name: "Musey", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mekwei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moraid", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msh", - Scope: "I", - Language_Type: "L", - Ref_Name: "MasikoroMalagasy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msi", - Scope: "I", - Language_Type: "L", - Ref_Name: "SabahMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ma(DemocraticRepublicofCongo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mansaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Molof", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msm", - Scope: "I", - Language_Type: "L", - Ref_Name: "AgusanManobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vurës", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mso", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mombum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msp", - Scope: "I", - Language_Type: "E", - Ref_Name: "Maritsauá", - Comment: null, - }, - { - Id: "msq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Caac", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msr", - Scope: "I", - Language_Type: "L", - Ref_Name: "MongolianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mss", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestMasela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Musom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maslam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mansoanka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moresada", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aruamu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "msz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Momare", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mta", - Scope: "I", - Language_Type: "L", - Ref_Name: "CotabatoManobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtb", - Scope: "I", - Language_Type: "L", - Ref_Name: "AnyinMorofo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Munit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mualang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mte", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mono(SolomonIslands)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Murik(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Una", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mth", - Scope: "I", - Language_Type: "L", - Ref_Name: "Munggui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mti", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maiwa(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moskona", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbe'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Montol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mator", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Matagalpa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mto", - Scope: "I", - Language_Type: "L", - Ref_Name: "TotontepecMixe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtp", - Scope: "I", - Language_Type: "L", - Ref_Name: "WichíLhamtésNocten", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Muong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mewari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mts", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mota", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtu", - Scope: "I", - Language_Type: "L", - Ref_Name: "TututepecMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Asaro'o", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtw", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernBinukidnon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mtx", - Scope: "I", - Language_Type: "L", - Ref_Name: "TidaáMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mty", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nabi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mua", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mundang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mub", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mubi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "muc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ajumbu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mud", - Scope: "I", - Language_Type: "L", - Ref_Name: "MednyjAleut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mue", - Scope: "I", - Language_Type: "L", - Ref_Name: "MediaLengua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mug", - Scope: "I", - Language_Type: "L", - Ref_Name: "Musgu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "muh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mündü", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mui", - Scope: "I", - Language_Type: "L", - Ref_Name: "Musi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "muj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mabire", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "muk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mugom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mul", - Part2b: "mul", - Part2t: "mul", - Scope: "S", - Language_Type: "S", - Ref_Name: "Multiplelanguages", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maiwala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "muo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mup", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malvi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "muq", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternXiangxiMiao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mur", - Scope: "I", - Language_Type: "L", - Ref_Name: "Murle", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mus", - Part2b: "mus", - Part2t: "mus", - Scope: "I", - Language_Type: "L", - Ref_Name: "Creek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mut", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternMuria", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "muu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yaaku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "muv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Muthuvan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mux", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bo-Ung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "muy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Muyang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "muz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mursi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mva", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mattole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mamboru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mve", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marwari(Pakistan)", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "mvf", - Scope: "I", - Language_Type: "L", - Ref_Name: "PeripheralMongolian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvg", - Scope: "I", - Language_Type: "L", - Ref_Name: "YucuañeMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mulgi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Miyako", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mekmek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvl", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mbara(Australia)", - Comment: null, - }, - { - Id: "mvn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Minaveha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marovo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Massep", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mpotovoro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marfa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvv", - Scope: "I", - Language_Type: "L", - Ref_Name: "TagalMurut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Machinga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Meoswar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvy", - Scope: "I", - Language_Type: "L", - Ref_Name: "IndusKohistani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mvz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mesqan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mwatebu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Juwal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Are", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mwera(Chimwera)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Murrinh-Patha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aiklep", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mouk-Aria", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Labo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwk", - Scope: "I", - Language_Type: "L", - Ref_Name: "KitaManinkakan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwl", - Part2b: "mwl", - Part2t: "mwl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mirandese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyamwanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwo", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralMaewo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwp", - Scope: "I", - Language_Type: "L", - Ref_Name: "KalaLagawYa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwq", - Scope: "I", - Language_Type: "L", - Ref_Name: "MünChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwr", - Part2b: "mwr", - Part2t: "mwr", - Scope: "M", - Language_Type: "L", - Ref_Name: "Marwari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mws", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mwimbi-Muthambi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moken", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mittu", - Comment: null, - }, - { - Id: "mwv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mentawai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mww", - Scope: "I", - Language_Type: "L", - Ref_Name: "HmongDaw", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mwz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moingi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxa", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthwestOaxacaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxb", - Scope: "I", - Language_Type: "L", - Ref_Name: "TezoatlánMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manyika", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Modang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mele-Fila", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malgbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbangala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mvuba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxi", - Scope: "I", - Language_Type: "H", - Ref_Name: "Mozarabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "mxj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Miju-Mishmi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Monumbo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxl", - Scope: "I", - Language_Type: "L", - Ref_Name: "MaxiGbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Meramera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moi(Indonesia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbowe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxp", - Scope: "I", - Language_Type: "L", - Ref_Name: "TlahuitoltepecMixe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxq", - Scope: "I", - Language_Type: "L", - Ref_Name: "JuquilaMixe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Murik(Malaysia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxs", - Scope: "I", - Language_Type: "L", - Ref_Name: "HuitepecMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxt", - Scope: "I", - Language_Type: "L", - Ref_Name: "JamiltepecMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mada(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxv", - Scope: "I", - Language_Type: "L", - Ref_Name: "MetlatónocMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Namo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mahou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxy", - Scope: "I", - Language_Type: "L", - Ref_Name: "SoutheasternNochixtlánMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mxz", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralMasela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mya", - Part2b: "bur", - Part2t: "mya", - Part1: "my", - Scope: "I", - Language_Type: "L", - Ref_Name: "Burmese", - Comment: null, - }, - { - Id: "myb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "myc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mayeka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mye", - Scope: "I", - Language_Type: "L", - Ref_Name: "Myene", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "myf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bambassi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "myg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "myh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Makah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "myj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mangayat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "myk", - Scope: "I", - Language_Type: "L", - Ref_Name: "MamaraSenoufo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "myl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mym", - Scope: "I", - Language_Type: "L", - Ref_Name: "Me'en", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "myo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anfillo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "myp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pirahã", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "myr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Muniche", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mys", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mesmes", - Comment: null, - }, - { - Id: "myu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mundurukú", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "myv", - Part2b: "myv", - Part2t: "myv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Erzya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "myw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Muyuw", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "myx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Masaaba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "myy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Macuna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "myz", - Scope: "I", - Language_Type: "H", - Ref_Name: "ClassicalMandaic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mza", - Scope: "I", - Language_Type: "L", - Ref_Name: "SantaMaríaZacatepecMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tumzabt", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "mzc", - Scope: "I", - Language_Type: "L", - Ref_Name: "MadagascarSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malimba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mze", - Scope: "I", - Language_Type: "L", - Ref_Name: "Morawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzg", - Scope: "I", - Language_Type: "L", - Ref_Name: "MonasticSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzh", - Scope: "I", - Language_Type: "L", - Ref_Name: "WichíLhamtésGüisnay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzi", - Scope: "I", - Language_Type: "L", - Ref_Name: "IxcatlánMazatec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzk", - Scope: "I", - Language_Type: "L", - Ref_Name: "NigeriaMambila", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzl", - Scope: "I", - Language_Type: "L", - Ref_Name: "MazatlánMixe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mumuye", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mazanderani", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "mzo", - Scope: "I", - Language_Type: "E", - Ref_Name: "Matipuhy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Movima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzq", - Scope: "I", - Language_Type: "L", - Ref_Name: "MoriAtas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marúbo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Macanese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mintil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Inapang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Deg", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mawayana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzy", - Scope: "I", - Language_Type: "L", - Ref_Name: "MozambicanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "mzz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maiadomu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "naa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Namla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nab", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernNambikuára", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nac", - Scope: "I", - Language_Type: "L", - Ref_Name: "Narak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nae", - Scope: "I", - Language_Type: "E", - Ref_Name: "Naka'ela", - Comment: null, - }, - { - Id: "naf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nabak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nag", - Scope: "I", - Language_Type: "L", - Ref_Name: "NagaPidgin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "naj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nalu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nak", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nakanai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nal", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nalik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nam", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngan'gityemerri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Scope: "I", - Language_Type: "L", - Ref_Name: "MinNanChinese", - Comment: null, - }, - { - Id: "nao", - Scope: "I", - Language_Type: "L", - Ref_Name: "Naaba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nap", - Part2b: "nap", - Part2t: "nap", - Scope: "I", - Language_Type: "L", - Ref_Name: "Neapolitan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "naq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khoekhoe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nar", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iguta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nas", - Scope: "I", - Language_Type: "L", - Ref_Name: "Naasioi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nat", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ca̱hungwa̱rya̱", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nau", - Part2b: "nau", - Part2t: "nau", - Part1: "na", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nauru", - Comment: null, - }, - { - Id: "nav", - Part2b: "nav", - Part2t: "nav", - Part1: "nv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Navajo", - Comment: null, - }, - { - Id: "naw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nawuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nax", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nakwi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nay", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ngarrindjeri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "naz", - Scope: "I", - Language_Type: "L", - Ref_Name: "CoatepecNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nba", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyemba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndoe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbc", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChangNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngbinda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbe", - Scope: "I", - Language_Type: "L", - Ref_Name: "KonyakNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nagarchal", - Comment: null, - }, - { - Id: "nbh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngamo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbi", - Scope: "I", - Language_Type: "L", - Ref_Name: "MaoNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngarinyman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nake", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbl", - Part2b: "nbl", - Part2t: "nbl", - Part1: "nr", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthNdebele", - Comment: null, - }, - { - Id: "nbm", - Scope: "I", - Language_Type: "L", - Ref_Name: "NgbakaMa'bo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nkukoli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nnam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nggem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Numana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbs", - Scope: "I", - Language_Type: "L", - Ref_Name: "NamibianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Na", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbu", - Scope: "I", - Language_Type: "L", - Ref_Name: "RongmeiNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngamambo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nbw", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernNgbandi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nby", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ningera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nca", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ncb", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralNicobarese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ncc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ponam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ncd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nachering", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nce", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yale", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ncf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Notsi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ncg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nisga'a", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nch", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralHuastecaNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nci", - Scope: "I", - Language_Type: "H", - Ref_Name: "ClassicalNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ncj", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernPueblaNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nck", - Scope: "I", - Language_Type: "L", - Ref_Name: "Na-kara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ncl", - Scope: "I", - Language_Type: "L", - Ref_Name: "MichoacánNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ncm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nambo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ncn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nauna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nco", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sibe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ncq", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernKatang", - Comment: null, - }, - { - Id: "ncr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ncane", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ncs", - Scope: "I", - Language_Type: "L", - Ref_Name: "NicaraguanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nct", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChotheNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ncu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chumburung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ncx", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralPueblaNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ncz", - Scope: "I", - Language_Type: "E", - Ref_Name: "Natchez", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nda", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndasa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndb", - Scope: "I", - Language_Type: "L", - Ref_Name: "KensweiNsei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nde-Nsele-Nta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nde", - Part2b: "nde", - Part2t: "nde", - Part1: "nd", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthNdebele", - Comment: null, - }, - { - Id: "ndf", - Scope: "I", - Language_Type: "H", - Ref_Name: "Nadruvian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndengereko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndi", - Scope: "I", - Language_Type: "L", - Ref_Name: "SambaLeko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndamba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndolo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngundi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndo", - Part2b: "ndo", - Part2t: "ndo", - Part1: "ng", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndonga", - Comment: null, - }, - { - Id: "ndp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndombe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndoola", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nds", - Part2b: "nds", - Part2t: "nds", - Scope: "I", - Language_Type: "L", - Ref_Name: "LowGerman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndunga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dugun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nduga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lutos", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ndz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndogo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nea", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternNgad'a", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "neb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Toura(Côted'Ivoire)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nec", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nedebang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ned", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nde-Gbite", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nee", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nêlêmwa-Nixumwak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nef", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nefamese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "neg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Negidal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "neh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyenkha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nei", - Scope: "I", - Language_Type: "H", - Ref_Name: "Neo-Hittite", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nej", - Scope: "I", - Language_Type: "L", - Ref_Name: "Neko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nek", - Scope: "I", - Language_Type: "L", - Ref_Name: "Neku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nem", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nemi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nen", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nengone", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "neo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ná-Meo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nep", - Part2b: "nep", - Part2t: "nep", - Part1: "ne", - Scope: "M", - Language_Type: "L", - Ref_Name: "Nepali(macrolanguage)", - Comment: null, - }, - { - Id: "neq", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthCentralMixe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ner", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yahadian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nes", - Scope: "I", - Language_Type: "L", - Ref_Name: "BhotiKinnauri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "net", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nete", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "neu", - Scope: "I", - Language_Type: "C", - Ref_Name: "Neo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nev", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyaheun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "new", - Part2b: "new", - Part2t: "new", - Scope: "I", - Language_Type: "L", - Ref_Name: "Newari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nex", - Scope: "I", - Language_Type: "L", - Ref_Name: "Neme", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ney", - Scope: "I", - Language_Type: "L", - Ref_Name: "Neyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nez", - Scope: "I", - Language_Type: "L", - Ref_Name: "NezPerce", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nfa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dhao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nfd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ahwai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nfl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ayiwo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nfr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nafaanra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nfu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mfumte", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nga", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngbaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngb", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernNgbandi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngombe(DemocraticRepublicofCongo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngando(CentralAfricanRepublic)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nge", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngemba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngg", - Scope: "I", - Language_Type: "L", - Ref_Name: "NgbakaManza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nǁng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngizim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngie", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dalabon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lomwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngm", - Scope: "I", - Language_Type: "L", - Ref_Name: "NgatikMen'sCreole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngwo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngurimi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Engdewu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gvoko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kriang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngu", - Scope: "I", - Language_Type: "L", - Ref_Name: "GuerreroNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngv", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nagumi", - Comment: null, - }, - { - Id: "ngw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngwaba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nggwahyi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tibea", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ngz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngungwel", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nha", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nhanda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Beng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhc", - Scope: "I", - Language_Type: "E", - Ref_Name: "TabascoNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chiripá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhe", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternHuastecaNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nhuwala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhg", - Scope: "I", - Language_Type: "L", - Ref_Name: "TetelcingoNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nahari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zacatlán-Ahuacatlán-TepetzintlaNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Isthmus-CosoleacaqueNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MorelosNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhn", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nho", - Scope: "I", - Language_Type: "L", - Ref_Name: "Takuu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Isthmus-PajapanNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhq", - Scope: "I", - Language_Type: "L", - Ref_Name: "HuaxcalecaNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Naro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nht", - Scope: "I", - Language_Type: "L", - Ref_Name: "OmetepecNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Noone", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhv", - Scope: "I", - Language_Type: "L", - Ref_Name: "TemascaltepecNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhw", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternHuastecaNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Isthmus-MecayapanNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhy", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernOaxacaNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nhz", - Scope: "I", - Language_Type: "L", - Ref_Name: "SantaMaríaLaAltaNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nia", - Part2b: "nia", - Part2t: "nia", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nias", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nib", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nakame", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nid", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ngandi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nie", - Scope: "I", - Language_Type: "L", - Ref_Name: "Niellim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nif", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nig", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ngalakgan", - Comment: null, - }, - { - Id: "nih", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyiha(Tanzania)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nii", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nii", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nij", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngaju", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nik", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernNicobarese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nil", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nila", - Comment: null, - }, - { - Id: "nim", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nilamba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nin", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ninzo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nio", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nganasan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "niq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nandi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nir", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nimboran", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nis", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nimi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nit", - Scope: "I", - Language_Type: "L", - Ref_Name: "SoutheasternKolami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "niu", - Part2b: "niu", - Part2t: "niu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Niuean", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "niv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gilyak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "niw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nimo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nix", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hema", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "niy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngiti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "niz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ningil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nja", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nzanyi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "njb", - Scope: "I", - Language_Type: "L", - Ref_Name: "NocteNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "njd", - Scope: "I", - Language_Type: "L", - Ref_Name: "NdondeHamba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "njh", - Scope: "I", - Language_Type: "L", - Ref_Name: "LothaNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nji", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gudanji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "njj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Njen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "njl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Njalgulgule", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "njm", - Scope: "I", - Language_Type: "L", - Ref_Name: "AngamiNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "njn", - Scope: "I", - Language_Type: "L", - Ref_Name: "LiangmaiNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "njo", - Scope: "I", - Language_Type: "L", - Ref_Name: "AoNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "njr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Njerep", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "njs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nisa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "njt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndyuka-TrioPidgin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nju", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngadjunmaya", - Comment: null, - }, - { - Id: "njx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kunyi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "njy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Njyem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "njz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyishi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nkoya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkb", - Scope: "I", - Language_Type: "L", - Ref_Name: "KhoibuNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nkongho", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koireng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nke", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duke", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkf", - Scope: "I", - Language_Type: "L", - Ref_Name: "InpuiNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nekgini", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkh", - Scope: "I", - Language_Type: "L", - Ref_Name: "KhezhaNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nki", - Scope: "I", - Language_Type: "L", - Ref_Name: "ThangalNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nakai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nokuku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Namat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nkangala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nko", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nkonya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkp", - Scope: "I", - Language_Type: "E", - Ref_Name: "Niuatoputapu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nkami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nukuoro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nks", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthAsmat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyika(Tanzania)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nku", - Scope: "I", - Language_Type: "L", - Ref_Name: "BounaKulango", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyika(MalawiandZambia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nkutu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nkoroo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nkz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nkari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nla", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngombale", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nlc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nalca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nld", - Part2b: "dut", - Part2t: "nld", - Part1: "nl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dutch", - Comment: null, - }, - { - Id: "nle", - Scope: "I", - Language_Type: "L", - Ref_Name: "EastNyala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nlg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nli", - Scope: "I", - Language_Type: "L", - Ref_Name: "Grangali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nlj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nlk", - Scope: "I", - Language_Type: "L", - Ref_Name: "NiniaYali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nll", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nihali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nlm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mankiyali", - Comment: null, - }, - { - Id: "nlo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngul", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nlq", - Scope: "I", - Language_Type: "L", - Ref_Name: "LaoNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nlu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nchumbulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nlv", - Scope: "I", - Language_Type: "L", - Ref_Name: "OrizabaNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nlw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Walangama", - Comment: null, - }, - { - Id: "nlx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nahali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nly", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyamal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nlz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nalögo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nma", - Scope: "I", - Language_Type: "L", - Ref_Name: "MaramNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmb", - Scope: "I", - Language_Type: "L", - Ref_Name: "BigNambas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndumu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nme", - Scope: "I", - Language_Type: "L", - Ref_Name: "MziemeNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmf", - Scope: "I", - Language_Type: "L", - Ref_Name: "TangkhulNaga(India)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwasio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmh", - Scope: "I", - Language_Type: "L", - Ref_Name: "MonsangNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngombe(CentralAfricanRepublic)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Namakura", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nml", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndemli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manangba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmn", - Scope: "I", - Language_Type: "L", - Ref_Name: "ǃXóõ", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmo", - Scope: "I", - Language_Type: "L", - Ref_Name: "MoyonNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmp", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nimanbur", - Comment: null, - }, - { - Id: "nmq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nambya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nimbari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nms", - Scope: "I", - Language_Type: "L", - Ref_Name: "Letemboi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Namonuito", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmu", - Scope: "I", - Language_Type: "L", - Ref_Name: "NortheastMaidu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmv", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ngamini", - Comment: null, - }, - { - Id: "nmw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nimoa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nama(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Namuyi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nmz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nawdm", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nna", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyangumarta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nnb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nande", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nnc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nancere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nnd", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestAmbae", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nne", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngandyera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nnf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngaing", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nng", - Scope: "I", - Language_Type: "L", - Ref_Name: "MaringNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nnh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngiemboon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nni", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthNuaulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nnj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyangatom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nnk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nankina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nnl", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernRengmaNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nnm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Namia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nnn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngete", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nno", - Part2b: "nno", - Part2t: "nno", - Part1: "nn", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorwegianNynorsk", - Comment: null, - }, - { - Id: "nnp", - Scope: "I", - Language_Type: "L", - Ref_Name: "WanchoNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nnq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngindo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nnr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Narungga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nnt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nanticoke", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nnu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dwang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nnv", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nugunu(Australia)", - Comment: null, - }, - { - Id: "nnw", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernNuni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nny", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nyangga", - Comment: null, - }, - { - Id: "nnz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nda'nda'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "noa", - Scope: "I", - Language_Type: "L", - Ref_Name: "WounMeu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nob", - Part2b: "nob", - Part2t: "nob", - Part1: "nb", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorwegianBokmål", - Comment: null, - }, - { - Id: "noc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nuk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nod", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernThai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "noe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nimadi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nof", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nomane", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nog", - Part2b: "nog", - Part2t: "nog", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nogai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "noh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nomu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "noi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Noiri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "noj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nonuya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nok", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nooksack", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nol", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nomlaki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "non", - Part2b: "non", - Part2t: "non", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldNorse", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nop", - Scope: "I", - Language_Type: "L", - Ref_Name: "Numanggang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "noq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngongo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nor", - Part2b: "nor", - Part2t: "nor", - Part1: "no", - Scope: "M", - Language_Type: "L", - Ref_Name: "Norwegian", - Comment: null, - }, - { - Id: "nos", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternNisu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "not", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nomatsiguenga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nou", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ewage-Notu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nov", - Scope: "I", - Language_Type: "C", - Ref_Name: "Novial", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "now", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyambo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "noy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Noy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "noz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nayi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "npa", - Scope: "I", - Language_Type: "L", - Ref_Name: "NarPhu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "npb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nupbikha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "npg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ponyo-GongwangNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nph", - Scope: "I", - Language_Type: "L", - Ref_Name: "PhomNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "npi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nepali(individuallanguage)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "npl", - Scope: "I", - Language_Type: "L", - Ref_Name: "SoutheasternPueblaNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "npn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mondropolon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "npo", - Scope: "I", - Language_Type: "L", - Ref_Name: "PochuriNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nps", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nipsan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "npu", - Scope: "I", - Language_Type: "L", - Ref_Name: "PuimeiNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "npx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Noipx", - Comment: null, - }, - { - Id: "npy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Napu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nqg", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernNago", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nqk", - Scope: "I", - Language_Type: "L", - Ref_Name: "KuraEdeNago", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nql", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngendelengo", - Comment: null, - }, - { - Id: "nqm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nqn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nqo", - Part2b: "nqo", - Part2t: "nqo", - Scope: "I", - Language_Type: "L", - Ref_Name: "N'Ko", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "nqq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kyan-KaryawNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nqt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nteng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nqy", - Scope: "I", - Language_Type: "L", - Ref_Name: "AkyaungAriNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nra", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nrb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nrc", - Scope: "I", - Language_Type: "H", - Ref_Name: "Noric", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nre", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernRengmaNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nrf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jèrriais", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nrg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Narango", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nri", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChokriNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nrk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngarla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nrl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngarluma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nrm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Narom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nrn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Norn", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nrp", - Scope: "I", - Language_Type: "H", - Ref_Name: "NorthPicene", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nrr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Norra", - Comment: null, - }, - { - Id: "nrt", - Scope: "I", - Language_Type: "E", - Ref_Name: "NorthernKalapuya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nru", - Scope: "I", - Language_Type: "L", - Ref_Name: "Narua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nrx", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ngurmbur", - Comment: null, - }, - { - Id: "nrz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsa", - Scope: "I", - Language_Type: "L", - Ref_Name: "SangtamNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsb", - Scope: "I", - Language_Type: "E", - Ref_Name: "LowerNossob", - Comment: null, - }, - { - Id: "nsc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nshi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsd", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernNisu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nse", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nsenga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsf", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthwesternNisu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngasa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngoshie", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsi", - Scope: "I", - Language_Type: "L", - Ref_Name: "NigerianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Naskapi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsl", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorwegianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsm", - Scope: "I", - Language_Type: "L", - Ref_Name: "SumiNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nehan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nso", - Part2b: "nso", - Part2t: "nso", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pedi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsp", - Scope: "I", - Language_Type: "L", - Ref_Name: "NepaleseSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsq", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernSierraMiwok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsr", - Scope: "I", - Language_Type: "L", - Ref_Name: "MaritimeSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nss", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nst", - Scope: "I", - Language_Type: "L", - Ref_Name: "TaseNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsu", - Scope: "I", - Language_Type: "L", - Ref_Name: "SierraNegraNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsv", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthwesternNisu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Navut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nsongo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nasal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nsz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nisenan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ntd", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernTidung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nte", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nathembo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ntg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ngantangarra", - Comment: null, - }, - { - Id: "nti", - Scope: "I", - Language_Type: "L", - Ref_Name: "Natioro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ntj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngaanyatjarra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ntk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ikoma-Nata-Isenye", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ntm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nateni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nto", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ntomba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ntp", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernTepehuan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ntr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Delo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ntu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Natügu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ntw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nottoway", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ntx", - Scope: "I", - Language_Type: "L", - Ref_Name: "TangkhulNaga(Myanmar)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nty", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mantsi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ntz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Natanzi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nua", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yuanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nuc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nukuini", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nud", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nue", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngundu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nuf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nusu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nug", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nungali", - Comment: null, - }, - { - Id: "nuh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndunda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nui", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngumbi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nuj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nuk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nuu-chah-nulth", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nul", - Scope: "I", - Language_Type: "E", - Ref_Name: "NusaLaut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "num", - Scope: "I", - Language_Type: "L", - Ref_Name: "Niuafo'ou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nun", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nuo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nguôn", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nup", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nupe-Nupe-Tako", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nuq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nukumanu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nur", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nukuria", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nus", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nuer", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nut", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nung(VietNam)", - Comment: null, - }, - { - Id: "nuu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngbundu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nuv", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernNuni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nuw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nguluwan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nux", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mehek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nuy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nunggubuyu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nuz", - Scope: "I", - Language_Type: "L", - Ref_Name: "TlamacazapaNahuatl", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nvh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nasarian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nvm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Namiae", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nvo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyokon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nwa", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nawathinehena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nwb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyabwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nwc", - Part2b: "nwc", - Part2t: "nwc", - Scope: "I", - Language_Type: "H", - Ref_Name: "ClassicalNewari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nwe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nwg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ngayawung", - Comment: null, - }, - { - Id: "nwi", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthwestTanna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nwm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyamusa-Molo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nwo", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nauo", - Comment: null, - }, - { - Id: "nwr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nawaru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nww", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndwewe", - Comment: null, - }, - { - Id: "nwx", - Scope: "I", - Language_Type: "H", - Ref_Name: "MiddleNewar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nwy", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nottoway-Meherrin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nxa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nauete", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nxd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngando(DemocraticRepublicofCongo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nxe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nxg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngad'a", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nxi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nindi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nxk", - Scope: "I", - Language_Type: "L", - Ref_Name: "KokiNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nxl", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthNuaulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nxm", - Scope: "I", - Language_Type: "H", - Ref_Name: "Numidian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nxn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ngawun", - Comment: null, - }, - { - Id: "nxo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ndambomo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nxq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Naxi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nxr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ninggerum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nxx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nafri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nya", - Part2b: "nya", - Part2t: "nya", - Part1: "ny", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyanja", - Comment: null, - }, - { - Id: "nyb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyangbo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyanga-li", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyore", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nye", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyengo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Giryama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyindu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyikina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ama(Sudan)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyaneka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyeu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nym", - Part2b: "nym", - Part2t: "nym", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyamwezi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyn", - Part2b: "nyn", - Part2t: "nyn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyankole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyo", - Part2b: "nyo", - Part2t: "nyo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyoro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyp", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nyang'i", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nayini", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyiha(Malawi)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nys", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyungar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nyawaygi", - Comment: null, - }, - { - Id: "nyu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyungwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyv", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nyulnyul", - Comment: null, - }, - { - Id: "nyw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyaw", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nyx", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nganyaywana", - Comment: null, - }, - { - Id: "nyy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyakyusa-Ngonde", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nza", - Scope: "I", - Language_Type: "L", - Ref_Name: "TigonMbembe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nzb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Njebi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nzd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nzadi", - Comment: null, - }, - { - Id: "nzi", - Part2b: "nzi", - Part2t: "nzi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nzima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nzk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nzakara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nzm", - Scope: "I", - Language_Type: "L", - Ref_Name: "ZemeNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nzr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dir-Nyamzak-Mbarimi", - Comment: null, - }, - { - Id: "nzs", - Scope: "I", - Language_Type: "L", - Ref_Name: "NewZealandSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nzu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Teke-Nzikou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nzy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nzakambay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "nzz", - Scope: "I", - Language_Type: "L", - Ref_Name: "NangaDamaDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oaa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Orok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oac", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oroch", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oar", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldAramaic(upto700BCE)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oav", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldAvar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "obi", - Scope: "I", - Language_Type: "E", - Ref_Name: "Obispeño", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "obk", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernBontok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "obl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oblo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "obm", - Scope: "I", - Language_Type: "H", - Ref_Name: "Moabite", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "obo", - Scope: "I", - Language_Type: "L", - Ref_Name: "OboManobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "obr", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldBurmese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "obt", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldBreton", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "obu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Obulom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oca", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ocaina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "och", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldChinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oci", - Part2b: "oci", - Part2t: "oci", - Part1: "oc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Occitan(post1500)", - Comment: null, - }, - { - Id: "ocm", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldCham", - Comment: null, - }, - { - Id: "oco", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldCornish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ocu", - Scope: "I", - Language_Type: "L", - Ref_Name: "AtzingoMatlatzinca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oda", - Scope: "I", - Language_Type: "L", - Ref_Name: "Odut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "odk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Od", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "odt", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldDutch", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "odu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Odual", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ofo", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ofo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ofs", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldFrisian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ofu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Efutop", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ogb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ogbia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ogc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ogbah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oge", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldGeorgian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ogg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ogbogolo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ogo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ogu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ogbronuagum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oht", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldHittite", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ohu", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldHungarian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oia", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oirata", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oie", - Scope: "I", - Language_Type: "L", - Ref_Name: "Okolie", - Comment: null, - }, - { - Id: "oin", - Scope: "I", - Language_Type: "L", - Ref_Name: "InebuOne", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ojb", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthwesternOjibwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ojc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralOjibwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ojg", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternOjibwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oji", - Part2b: "oji", - Part2t: "oji", - Part1: "oj", - Scope: "M", - Language_Type: "L", - Ref_Name: "Ojibwa", - Comment: null, - }, - { - Id: "ojp", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldJapanese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ojs", - Scope: "I", - Language_Type: "L", - Ref_Name: "SevernOjibwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ojv", - Scope: "I", - Language_Type: "L", - Ref_Name: "OntongJava", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ojw", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternOjibwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Okanagan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "okb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Okobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "okc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kobo", - Comment: null, - }, - { - Id: "okd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Okodia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oke", - Scope: "I", - Language_Type: "L", - Ref_Name: "Okpe(SouthwesternEdo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "okg", - Scope: "I", - Language_Type: "E", - Ref_Name: "KokoBabangk", - Comment: null, - }, - { - Id: "okh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koresh-eRostam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oki", - Scope: "I", - Language_Type: "L", - Ref_Name: "Okiek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "okj", - Scope: "I", - Language_Type: "E", - Ref_Name: "Oko-Juwoi", - Comment: null, - }, - { - Id: "okk", - Scope: "I", - Language_Type: "L", - Ref_Name: "KwamtimOne", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "okl", - Scope: "I", - Language_Type: "E", - Ref_Name: "OldKentishSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "okm", - Scope: "I", - Language_Type: "H", - Ref_Name: "MiddleKorean(10th-16thcent.)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "okn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oki-No-Erabu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oko", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldKorean(3rd-9thcent.)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "okr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kirike", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oks", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oko-Eni-Osayen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oku", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "okv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Orokaiva", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "okx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Okpe(NorthwesternEdo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "okz", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldKhmer", - Comment: null, - }, - { - Id: "ola", - Scope: "I", - Language_Type: "L", - Ref_Name: "Walungge", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "old", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mochi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ole", - Scope: "I", - Language_Type: "L", - Ref_Name: "Olekha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "olk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Olkol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "olm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oloma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "olo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Livvi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "olr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Olrat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "olt", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldLithuanian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "olu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuvale", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oma", - Scope: "I", - Language_Type: "L", - Ref_Name: "Omaha-Ponca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "omb", - Scope: "I", - Language_Type: "L", - Ref_Name: "EastAmbae", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "omc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mochica", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "omg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Omagua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "omi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Omi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "omk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Omok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oml", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ombo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "omn", - Scope: "I", - Language_Type: "H", - Ref_Name: "Minoan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "omo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Utarmbung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "omp", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldManipuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "omr", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldMarathi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "omt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Omotik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "omu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Omurano", - Comment: null, - }, - { - Id: "omw", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthTairora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "omx", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldMon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "omy", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldMalay", - Comment: null, - }, - { - Id: "ona", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ona", - Comment: null, - }, - { - Id: "onb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lingao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "one", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oneida", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ong", - Scope: "I", - Language_Type: "L", - Ref_Name: "Olo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oni", - Scope: "I", - Language_Type: "L", - Ref_Name: "Onin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "onj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Onjob", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "onk", - Scope: "I", - Language_Type: "L", - Ref_Name: "KaboreOne", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "onn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Onobasulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ono", - Scope: "I", - Language_Type: "L", - Ref_Name: "Onondaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "onp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sartang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "onr", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernOne", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ons", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ono", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ont", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ontenu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "onu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Unua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "onw", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldNubian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "onx", - Scope: "I", - Language_Type: "L", - Ref_Name: "OninBasedPidgin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ood", - Scope: "I", - Language_Type: "L", - Ref_Name: "TohonoO'odham", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oog", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oon", - Scope: "I", - Language_Type: "L", - Ref_Name: "Önge", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oor", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oorlams", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oos", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldOssetic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "opa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Okpamheri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "opk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kopkaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "opm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oksapmin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "opo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Opao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "opt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Opata", - Comment: null, - }, - { - Id: "opy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ofayé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ora", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oroha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "orc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Orma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ore", - Scope: "I", - Language_Type: "L", - Ref_Name: "Orejón", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "org", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oring", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "orh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oroqen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ori", - Part2b: "ori", - Part2t: "ori", - Part1: "or", - Scope: "M", - Language_Type: "L", - Ref_Name: "Oriya(macrolanguage)", - Comment: null, - }, - { - Id: "orm", - Part2b: "orm", - Part2t: "orm", - Part1: "om", - Scope: "M", - Language_Type: "L", - Ref_Name: "Oromo", - Comment: null, - }, - { - Id: "orn", - Scope: "I", - Language_Type: "L", - Ref_Name: "OrangKanaq", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oro", - Scope: "I", - Language_Type: "L", - Ref_Name: "Orokolo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "orr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oruma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ors", - Scope: "I", - Language_Type: "L", - Ref_Name: "OrangSeletar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ort", - Scope: "I", - Language_Type: "L", - Ref_Name: "AdivasiOriya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oru", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ormuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "orv", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldRussian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "orw", - Scope: "I", - Language_Type: "L", - Ref_Name: "OroWin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "orx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ory", - Scope: "I", - Language_Type: "L", - Ref_Name: "Odia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "orz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ormu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "osa", - Part2b: "osa", - Part2t: "osa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Osage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "osc", - Scope: "I", - Language_Type: "H", - Ref_Name: "Oscan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "osi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Osing", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "osn", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldSundanese", - Comment: null, - }, - { - Id: "oso", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ososo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "osp", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldSpanish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oss", - Part2b: "oss", - Part2t: "oss", - Part1: "os", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ossetian", - Comment: null, - }, - { - Id: "ost", - Scope: "I", - Language_Type: "L", - Ref_Name: "Osatu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "osu", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernOne", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "osx", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldSaxon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ota", - Part2b: "ota", - Part2t: "ota", - Scope: "I", - Language_Type: "H", - Ref_Name: "OttomanTurkish(1500-1928)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "otb", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldTibetan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "otd", - Scope: "I", - Language_Type: "L", - Ref_Name: "OtDanum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ote", - Scope: "I", - Language_Type: "L", - Ref_Name: "MezquitalOtomi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oti", - Scope: "I", - Language_Type: "E", - Ref_Name: "Oti", - Comment: null, - }, - { - Id: "otk", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldTurkish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "otl", - Scope: "I", - Language_Type: "L", - Ref_Name: "TilapaOtomi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "otm", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternHighlandOtomi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "otn", - Scope: "I", - Language_Type: "L", - Ref_Name: "TenangoOtomi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "otq", - Scope: "I", - Language_Type: "L", - Ref_Name: "QuerétaroOtomi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "otr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Otoro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ots", - Scope: "I", - Language_Type: "L", - Ref_Name: "EstadodeMéxicoOtomi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ott", - Scope: "I", - Language_Type: "L", - Ref_Name: "TemoayaOtomi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "otu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Otuke", - Comment: null, - }, - { - Id: "otw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ottawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "otx", - Scope: "I", - Language_Type: "L", - Ref_Name: "TexcatepecOtomi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oty", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldTamil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "otz", - Scope: "I", - Language_Type: "L", - Ref_Name: "IxtencoOtomi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oua", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tagargrent", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oub", - Scope: "I", - Language_Type: "L", - Ref_Name: "Glio-Oubi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oue", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oune", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oui", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldUighur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oum", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ouma", - Comment: null, - }, - { - Id: "ovd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Elfdalian", - Comment: null, - }, - { - Id: "owi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Owiniga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "owl", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldWelsh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oyb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oyd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oyda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oym", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wayampi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "oyy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Oya'oya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ozm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koonzime", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pab", - Scope: "I", - Language_Type: "L", - Ref_Name: "Parecís", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pac", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pacoh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pad", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paumarí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pae", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pagibete", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "paf", - Scope: "I", - Language_Type: "E", - Ref_Name: "Paranawát", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pag", - Part2b: "pag", - Part2t: "pag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pangasinan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pah", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tenharim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pai", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pak", - Scope: "I", - Language_Type: "L", - Ref_Name: "Parakanã", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pal", - Part2b: "pal", - Part2t: "pal", - Scope: "I", - Language_Type: "H", - Ref_Name: "Pahlavi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pam", - Part2b: "pam", - Part2t: "pam", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pampanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pan", - Part2b: "pan", - Part2t: "pan", - Part1: "pa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Panjabi", - Comment: null, - }, - { - Id: "pao", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernPaiute", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pap", - Part2b: "pap", - Part2t: "pap", - Scope: "I", - Language_Type: "L", - Ref_Name: "Papiamento", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "paq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Parya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "par", - Scope: "I", - Language_Type: "L", - Ref_Name: "Panamint", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pas", - Scope: "I", - Language_Type: "L", - Ref_Name: "Papasena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pau", - Part2b: "pau", - Part2t: "pau", - Scope: "I", - Language_Type: "L", - Ref_Name: "Palauan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pav", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pakaásnovos", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "paw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pawnee", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pax", - Scope: "I", - Language_Type: "E", - Ref_Name: "Pankararé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pay", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pech", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "paz", - Scope: "I", - Language_Type: "E", - Ref_Name: "Pankararú", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Páez", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Patamona", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbe", - Scope: "I", - Language_Type: "L", - Ref_Name: "MezontlaPopoloca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbf", - Scope: "I", - Language_Type: "L", - Ref_Name: "CoyotepecPopoloca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Paraujano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbh", - Scope: "I", - Language_Type: "L", - Ref_Name: "E'ñapaWoromaipu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Parkwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mak(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbm", - Scope: "I", - Language_Type: "L", - Ref_Name: "PueblaMazatec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kpasam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Papel", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Badyara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pangwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbs", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralPame", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbt", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernPashto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbu", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernPashto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pbv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pnar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pby", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pyu(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pca", - Scope: "I", - Language_Type: "L", - Ref_Name: "SantaInésAhuatempanPopoloca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pcb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pear", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pcc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bouyei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pcd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Picard", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pce", - Scope: "I", - Language_Type: "L", - Ref_Name: "RuchingPalaung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pcf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paliyan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pcg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paniya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pch", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pardhan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pci", - Scope: "I", - Language_Type: "L", - Ref_Name: "Duruwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pcj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Parenga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pck", - Scope: "I", - Language_Type: "L", - Ref_Name: "PaiteChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pcl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pardhi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pcm", - Scope: "I", - Language_Type: "L", - Ref_Name: "NigerianPidgin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pcn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Piti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pcp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pacahuara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pcw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pyapun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pda", - Scope: "I", - Language_Type: "L", - Ref_Name: "Anam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pdc", - Scope: "I", - Language_Type: "L", - Ref_Name: "PennsylvaniaGerman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pdi", - Scope: "I", - Language_Type: "L", - Ref_Name: "PaDi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pdn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Podena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pdo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Padoe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pdt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Plautdietsch", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pdu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kayan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pea", - Scope: "I", - Language_Type: "L", - Ref_Name: "PeranakanIndonesian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "peb", - Scope: "I", - Language_Type: "E", - Ref_Name: "EasternPomo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ped", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mala(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pee", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taje", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pef", - Scope: "I", - Language_Type: "E", - Ref_Name: "NortheasternPomo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "peg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pengo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "peh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bonan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pei", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chichimeca-Jonaz", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pej", - Scope: "I", - Language_Type: "E", - Ref_Name: "NorthernPomo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pek", - Scope: "I", - Language_Type: "L", - Ref_Name: "Penchal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pel", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pekal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pem", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phende", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "peo", - Part2b: "peo", - Part2t: "peo", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldPersian(ca.600-400B.C.)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pep", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kunja", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "peq", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernPomo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pes", - Scope: "I", - Language_Type: "L", - Ref_Name: "IranianPersian", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "pev", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pémono", - Comment: null, - }, - { - Id: "pex", - Scope: "I", - Language_Type: "L", - Ref_Name: "Petats", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pey", - Scope: "I", - Language_Type: "L", - Ref_Name: "Petjo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pez", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternPenan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pfa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pááfang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pfe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pfl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pfaelzisch", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pga", - Scope: "I", - Language_Type: "L", - Ref_Name: "SudaneseCreoleArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "pgd", - Scope: "I", - Language_Type: "H", - Ref_Name: "Gāndhārī", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pgg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pangwali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pgi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pagi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pgk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rerep", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pgl", - Scope: "I", - Language_Type: "H", - Ref_Name: "PrimitiveIrish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pgn", - Scope: "I", - Language_Type: "H", - Ref_Name: "Paelignian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pgs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pangseng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pgu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pagu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pgz", - Scope: "I", - Language_Type: "L", - Ref_Name: "PapuaNewGuineanSignLanguage", - Comment: null, - }, - { - Id: "pha", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pa-Hng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "phd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phudagi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "phg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phuong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "phh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phukha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "phj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pahari", - Comment: null, - }, - { - Id: "phk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phake", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "phl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phalura", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "phm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phimbi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "phn", - Part2b: "phn", - Part2t: "phn", - Scope: "I", - Language_Type: "H", - Ref_Name: "Phoenician", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pho", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phunoi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "phq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phana'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "phr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pahari-Potwari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pht", - Scope: "I", - Language_Type: "L", - Ref_Name: "PhuThai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "phu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phuan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "phv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pahlavani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "phw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phangduwali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pia", - Scope: "I", - Language_Type: "L", - Ref_Name: "PimaBajo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pib", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yine", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pic", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pinji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pid", - Scope: "I", - Language_Type: "L", - Ref_Name: "Piaroa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pie", - Scope: "I", - Language_Type: "E", - Ref_Name: "Piro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pif", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pingelapese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pig", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pisabo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pih", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pitcairn-Norfolk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pij", - Scope: "I", - Language_Type: "E", - Ref_Name: "Pijao", - Comment: null, - }, - { - Id: "pil", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pim", - Scope: "I", - Language_Type: "E", - Ref_Name: "Powhatan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pin", - Scope: "I", - Language_Type: "L", - Ref_Name: "Piame", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pio", - Scope: "I", - Language_Type: "L", - Ref_Name: "Piapoco", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pip", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pero", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pir", - Scope: "I", - Language_Type: "L", - Ref_Name: "Piratapuyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pis", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pijin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pit", - Scope: "I", - Language_Type: "E", - Ref_Name: "PittaPitta", - Comment: null, - }, - { - Id: "piu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pintupi-Luritja", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "piv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pileni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "piw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pimbwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pix", - Scope: "I", - Language_Type: "L", - Ref_Name: "Piu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "piy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Piya-Kwonci", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "piz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pije", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pjt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pitjantjatjara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pka", - Scope: "I", - Language_Type: "H", - Ref_Name: "ArdhamāgadhīPrākrit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pkb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pokomo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pkc", - Scope: "I", - Language_Type: "H", - Ref_Name: "Paekche", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pkg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pak-Tong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pkh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pankhu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pkn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pakanha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pko", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pökoot", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pkp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pukapuka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pkr", - Scope: "I", - Language_Type: "L", - Ref_Name: "AttapadyKurumba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pks", - Scope: "I", - Language_Type: "L", - Ref_Name: "PakistanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pkt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maleng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pku", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pla", - Scope: "I", - Language_Type: "L", - Ref_Name: "Miani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "plb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Polonombauk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "plc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralPalawano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pld", - Scope: "I", - Language_Type: "L", - Ref_Name: "Polari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ple", - Scope: "I", - Language_Type: "L", - Ref_Name: "Palu'e", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "plg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pilagá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "plh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paulohi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pli", - Part2b: "pli", - Part2t: "pli", - Part1: "pi", - Scope: "I", - Language_Type: "H", - Ref_Name: "Pali", - Comment: null, - }, - { - Id: "plk", - Scope: "I", - Language_Type: "L", - Ref_Name: "KohistaniShina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pll", - Scope: "I", - Language_Type: "L", - Ref_Name: "ShwePalaung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pln", - Scope: "I", - Language_Type: "L", - Ref_Name: "Palenquero", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "plo", - Scope: "I", - Language_Type: "L", - Ref_Name: "OlutaPopoluca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "plq", - Scope: "I", - Language_Type: "H", - Ref_Name: "Palaic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "plr", - Scope: "I", - Language_Type: "L", - Ref_Name: "PalakaSenoufo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pls", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanMarcosTlacoyalcoPopoloca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "plt", - Scope: "I", - Language_Type: "L", - Ref_Name: "PlateauMalagasy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "plu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Palikúr", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "plv", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthwestPalawano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "plw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Brooke'sPointPalawano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ply", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bolyu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "plz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paluan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pma", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pmb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pambia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pmd", - Scope: "I", - Language_Type: "E", - Ref_Name: "Pallanganmiddang", - Comment: null, - }, - { - Id: "pme", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pwaamei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pmf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pamona", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pmh", - Scope: "I", - Language_Type: "H", - Ref_Name: "MāhārāṣṭriPrākrit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pmi", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernPumi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pmj", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernPumi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pml", - Scope: "I", - Language_Type: "E", - Ref_Name: "LinguaFranca", - Comment: null, - }, - { - Id: "pmm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pomo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pmn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pmo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pmq", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernPame", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pmr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paynamar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pms", - Scope: "I", - Language_Type: "L", - Ref_Name: "Piemontese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pmt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tuamotuan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pmw", - Scope: "I", - Language_Type: "L", - Ref_Name: "PlainsMiwok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pmx", - Scope: "I", - Language_Type: "L", - Ref_Name: "PoumeiNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pmy", - Scope: "I", - Language_Type: "L", - Ref_Name: "PapuanMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pmz", - Scope: "I", - Language_Type: "E", - Ref_Name: "SouthernPame", - Comment: null, - }, - { - Id: "pna", - Scope: "I", - Language_Type: "L", - Ref_Name: "PunanBah-Biau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pnb", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternPanjabi", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "pnc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pannei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pnd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mpinda", - Comment: null, - }, - { - Id: "pne", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternPenan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "png", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pangu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pnh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Penrhyn", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pni", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aoheng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pnj", - Scope: "I", - Language_Type: "E", - Ref_Name: "Pinjarup", - Comment: null, - }, - { - Id: "pnk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paunaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pnl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paleni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pnm", - Scope: "I", - Language_Type: "L", - Ref_Name: "PunanBatu1", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pnn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pinai-Hagahai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pno", - Scope: "I", - Language_Type: "E", - Ref_Name: "Panobo", - Comment: null, - }, - { - Id: "pnp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pancana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pnq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pana(BurkinaFaso)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pnr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Panim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pns", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ponosakan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pnt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pontic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pnu", - Scope: "I", - Language_Type: "L", - Ref_Name: "JiongnaiBunu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pnv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pinigura", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pnw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Banyjima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pnx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phong-Kniang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pny", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pinyin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pnz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pana(CentralAfricanRepublic)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "poc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Poqomam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "poe", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanJuanAtzingoPopoloca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pof", - Scope: "I", - Language_Type: "L", - Ref_Name: "Poke", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pog", - Scope: "I", - Language_Type: "E", - Ref_Name: "Potiguára", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "poh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Poqomchi'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "poi", - Scope: "I", - Language_Type: "L", - Ref_Name: "HighlandPopoluca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pok", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pokangá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pol", - Part2b: "pol", - Part2t: "pol", - Part1: "pl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Polish", - Comment: null, - }, - { - Id: "pom", - Scope: "I", - Language_Type: "L", - Ref_Name: "SoutheasternPomo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pon", - Part2b: "pon", - Part2t: "pon", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pohnpeian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "poo", - Scope: "I", - Language_Type: "E", - Ref_Name: "CentralPomo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pop", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pwapwâ", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "poq", - Scope: "I", - Language_Type: "L", - Ref_Name: "TexistepecPopoluca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "por", - Part2b: "por", - Part2t: "por", - Part1: "pt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Portuguese", - Comment: null, - }, - { - Id: "pos", - Scope: "I", - Language_Type: "L", - Ref_Name: "SayulaPopoluca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pot", - Scope: "I", - Language_Type: "L", - Ref_Name: "Potawatomi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pov", - Scope: "I", - Language_Type: "L", - Ref_Name: "UpperGuineaCrioulo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pow", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanFelipeOtlaltepecPopoloca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pox", - Scope: "I", - Language_Type: "E", - Ref_Name: "Polabian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "poy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pogolo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ppe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Papi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ppi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paipai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ppk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ppl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pipil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ppm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Papuma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ppn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Papapana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ppo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Folopa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ppp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pelende", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ppq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pps", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanLuísTemalacayucaPopoloca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ppt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pare", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ppu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Papora", - Comment: null, - }, - { - Id: "pqa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pa'a", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pqm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malecite-Passamaquoddy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "prc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Parachi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "prd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Parsi-Dari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pre", - Scope: "I", - Language_Type: "L", - Ref_Name: "Principense", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "prf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paranan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "prg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Prussian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "prh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Porohanon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pri", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paicî", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "prk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Parauk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "prl", - Scope: "I", - Language_Type: "L", - Ref_Name: "PeruvianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "prm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kibiri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "prn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Prasuni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pro", - Part2b: "pro", - Part2t: "pro", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldProvençal(to1500)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "prq", - Scope: "I", - Language_Type: "L", - Ref_Name: "AshéninkaPerené", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "prr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Puri", - Comment: null, - }, - { - Id: "prs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "prt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pru", - Scope: "I", - Language_Type: "L", - Ref_Name: "Puragi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "prw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Parawen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "prx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Purik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "prz", - Scope: "I", - Language_Type: "L", - Ref_Name: "ProvidenciaSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "psa", - Scope: "I", - Language_Type: "L", - Ref_Name: "AsueAwyu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "psc", - Scope: "I", - Language_Type: "L", - Ref_Name: "IranianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "psd", - Scope: "I", - Language_Type: "L", - Ref_Name: "PlainsIndianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pse", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "psg", - Scope: "I", - Language_Type: "L", - Ref_Name: "PenangSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "psh", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthwestPashai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "psi", - Scope: "I", - Language_Type: "L", - Ref_Name: "SoutheastPashai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "psl", - Scope: "I", - Language_Type: "L", - Ref_Name: "PuertoRicanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "psm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Pauserna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "psn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Panasuan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pso", - Scope: "I", - Language_Type: "L", - Ref_Name: "PolishSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "psp", - Scope: "I", - Language_Type: "L", - Ref_Name: "PhilippineSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "psq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pasi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "psr", - Scope: "I", - Language_Type: "L", - Ref_Name: "PortugueseSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pss", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaulong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pst", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralPashto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "psu", - Scope: "I", - Language_Type: "H", - Ref_Name: "SauraseniPrākrit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "psw", - Scope: "I", - Language_Type: "L", - Ref_Name: "PortSandwich", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "psy", - Scope: "I", - Language_Type: "E", - Ref_Name: "Piscataway", - Comment: null, - }, - { - Id: "pta", - Scope: "I", - Language_Type: "L", - Ref_Name: "PaiTavytera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pth", - Scope: "I", - Language_Type: "E", - Ref_Name: "PataxóHã-Ha-Hãe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pti", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pindiini", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ptn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Patani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pto", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zo'é", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ptp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Patep", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ptq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pattapu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ptr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Piamatsina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ptt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Enrekang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ptu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bambam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ptv", - Scope: "I", - Language_Type: "L", - Ref_Name: "PortVato", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ptw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Pentlatch", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pty", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pathiya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pua", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternHighlandPurepecha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pub", - Scope: "I", - Language_Type: "L", - Ref_Name: "Purum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "puc", - Scope: "I", - Language_Type: "L", - Ref_Name: "PunanMerap", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pud", - Scope: "I", - Language_Type: "L", - Ref_Name: "PunanAput", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pue", - Scope: "I", - Language_Type: "E", - Ref_Name: "Puelche", - Comment: null, - }, - { - Id: "puf", - Scope: "I", - Language_Type: "L", - Ref_Name: "PunanMerah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pug", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phuie", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pui", - Scope: "I", - Language_Type: "L", - Ref_Name: "Puinave", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "puj", - Scope: "I", - Language_Type: "L", - Ref_Name: "PunanTubu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Puma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "puo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Puoc", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pup", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pulabu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "puq", - Scope: "I", - Language_Type: "E", - Ref_Name: "Puquina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pur", - Scope: "I", - Language_Type: "L", - Ref_Name: "Puruborá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pus", - Part2b: "pus", - Part2t: "pus", - Part1: "ps", - Scope: "M", - Language_Type: "L", - Ref_Name: "Pushto", - Comment: null, - }, - { - Id: "put", - Scope: "I", - Language_Type: "L", - Ref_Name: "Putoh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "puu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Punu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "puw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Puluwatese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pux", - Scope: "I", - Language_Type: "L", - Ref_Name: "Puare", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "puy", - Scope: "I", - Language_Type: "E", - Ref_Name: "Purisimeño", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pawaia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pwb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Panawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pwg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gapapaiwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pwi", - Scope: "I", - Language_Type: "E", - Ref_Name: "Patwin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pwm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Molbog", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pwn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paiwan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pwo", - Scope: "I", - Language_Type: "L", - Ref_Name: "PwoWesternKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pwr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Powari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pww", - Scope: "I", - Language_Type: "L", - Ref_Name: "PwoNorthernKaren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pxm", - Scope: "I", - Language_Type: "L", - Ref_Name: "QuetzaltepecMixe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pye", - Scope: "I", - Language_Type: "L", - Ref_Name: "PyeKrumen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pym", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fyam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pyn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Poyanáwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pys", - Scope: "I", - Language_Type: "L", - Ref_Name: "ParaguayanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pyu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Puyuma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pyx", - Scope: "I", - Language_Type: "H", - Ref_Name: "Pyu(Myanmar)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pyy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pyen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "pze", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pesse", - Comment: null, - }, - { - Id: "pzh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pazeh", - Comment: null, - }, - { - Id: "pzn", - Scope: "I", - Language_Type: "L", - Ref_Name: "JejaraNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qua", - Scope: "I", - Language_Type: "L", - Ref_Name: "Quapaw", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qub", - Scope: "I", - Language_Type: "L", - Ref_Name: "HuallagaHuánucoQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "quc", - Scope: "I", - Language_Type: "L", - Ref_Name: "K'iche'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qud", - Scope: "I", - Language_Type: "L", - Ref_Name: "CalderónHighlandQuichua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "que", - Part2b: "que", - Part2t: "que", - Part1: "qu", - Scope: "M", - Language_Type: "L", - Ref_Name: "Quechua", - Comment: null, - }, - { - Id: "quf", - Scope: "I", - Language_Type: "L", - Ref_Name: "LambayequeQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qug", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChimborazoHighlandQuichua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "quh", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthBolivianQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qui", - Scope: "I", - Language_Type: "L", - Ref_Name: "Quileute", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "quk", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChachapoyasQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qul", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthBolivianQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sipacapense", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qun", - Scope: "I", - Language_Type: "E", - Ref_Name: "Quinault", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qup", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernPastazaQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "quq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Quinqui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qur", - Scope: "I", - Language_Type: "L", - Ref_Name: "YanahuancaPascoQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qus", - Scope: "I", - Language_Type: "L", - Ref_Name: "SantiagodelEsteroQuichua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "quv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sacapulteco", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "quw", - Scope: "I", - Language_Type: "L", - Ref_Name: "TenaLowlandQuichua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qux", - Scope: "I", - Language_Type: "L", - Ref_Name: "YauyosQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "quy", - Scope: "I", - Language_Type: "L", - Ref_Name: "AyacuchoQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "quz", - Scope: "I", - Language_Type: "L", - Ref_Name: "CuscoQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qva", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ambo-PascoQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qvc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CajamarcaQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qve", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternApurímacQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qvh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Huamalíes-DosdeMayoHuánucoQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qvi", - Scope: "I", - Language_Type: "L", - Ref_Name: "ImbaburaHighlandQuichua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qvj", - Scope: "I", - Language_Type: "L", - Ref_Name: "LojaHighlandQuichua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qvl", - Scope: "I", - Language_Type: "L", - Ref_Name: "CajatamboNorthLimaQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qvm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Margos-Yarowilca-LauricochaQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qvn", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthJunínQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qvo", - Scope: "I", - Language_Type: "L", - Ref_Name: "NapoLowlandQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qvp", - Scope: "I", - Language_Type: "L", - Ref_Name: "PacaraosQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qvs", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanMartínQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qvw", - Scope: "I", - Language_Type: "L", - Ref_Name: "HuayllaWancaQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qvy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Queyu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qvz", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernPastazaQuichua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "CorongoAncashQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qwc", - Scope: "I", - Language_Type: "H", - Ref_Name: "ClassicalQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qwh", - Scope: "I", - Language_Type: "L", - Ref_Name: "HuaylasAncashQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qwm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kuman(Russia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qws", - Scope: "I", - Language_Type: "L", - Ref_Name: "SihuasAncashQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qwt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kwalhioqua-Tlatskanai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qxa", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChiquiánAncashQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qxc", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChinchaQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qxh", - Scope: "I", - Language_Type: "L", - Ref_Name: "PanaoHuánucoQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qxl", - Scope: "I", - Language_Type: "L", - Ref_Name: "SalasacaHighlandQuichua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qxn", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernConchucosAncashQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qxo", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernConchucosAncashQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qxp", - Scope: "I", - Language_Type: "L", - Ref_Name: "PunoQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qxq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Qashqa'i", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "qxr", - Scope: "I", - Language_Type: "L", - Ref_Name: "CañarHighlandQuichua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qxs", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernQiang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qxt", - Scope: "I", - Language_Type: "L", - Ref_Name: "SantaAnadeTusiPascoQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qxu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arequipa-LaUniónQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qxw", - Scope: "I", - Language_Type: "L", - Ref_Name: "JaujaWancaQuechua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qya", - Scope: "I", - Language_Type: "C", - Ref_Name: "Quenya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "qyp", - Scope: "I", - Language_Type: "E", - Ref_Name: "Quiripi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "raa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dungmali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rab", - Scope: "I", - Language_Type: "L", - Ref_Name: "Camling", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rac", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rasawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rad", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rade", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "raf", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternMeohang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Logooli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rah", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rabha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rai", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ramoaaina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "raj", - Part2b: "raj", - Part2t: "raj", - Scope: "M", - Language_Type: "L", - Ref_Name: "Rajasthani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rak", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tulu-Bohuai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ral", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ralte", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ram", - Scope: "I", - Language_Type: "L", - Ref_Name: "Canela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ran", - Scope: "I", - Language_Type: "L", - Ref_Name: "Riantana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rao", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rap", - Part2b: "rap", - Part2t: "rap", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rapanui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "raq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rar", - Part2b: "rar", - Part2t: "rar", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rarotongan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ras", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tegali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rat", - Scope: "I", - Language_Type: "L", - Ref_Name: "Razajerdi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rau", - Scope: "I", - Language_Type: "L", - Ref_Name: "Raute", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rav", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sampang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "raw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rawang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rax", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ray", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rapa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "raz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rahambuu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rbb", - Scope: "I", - Language_Type: "L", - Ref_Name: "RumaiPalaung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rbk", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernBontok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rbl", - Scope: "I", - Language_Type: "L", - Ref_Name: "MirayaBikol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rbp", - Scope: "I", - Language_Type: "E", - Ref_Name: "Barababaraba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rcf", - Scope: "I", - Language_Type: "L", - Ref_Name: "RéunionCreoleFrench", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rdb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rudbari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rea", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rerau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "reb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rembong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ree", - Scope: "I", - Language_Type: "L", - Ref_Name: "RejangKayan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "reg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kara(Tanzania)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rei", - Scope: "I", - Language_Type: "L", - Ref_Name: "Reli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rej", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rejang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rel", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rendille", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rem", - Scope: "I", - Language_Type: "E", - Ref_Name: "Remo", - Comment: null, - }, - { - Id: "ren", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rengao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rer", - Scope: "I", - Language_Type: "E", - Ref_Name: "RerBare", - Comment: null, - }, - { - Id: "res", - Scope: "I", - Language_Type: "L", - Ref_Name: "Reshe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ret", - Scope: "I", - Language_Type: "L", - Ref_Name: "Retta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rey", - Scope: "I", - Language_Type: "L", - Ref_Name: "Reyesano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rga", - Scope: "I", - Language_Type: "L", - Ref_Name: "Roria", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rge", - Scope: "I", - Language_Type: "L", - Ref_Name: "Romano-Greek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rgk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Rangkas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rgn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Romagnol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rgr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Resígaro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rgs", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernRoglai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rgu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ringgou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rhg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rohingya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rhp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yahang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ria", - Scope: "I", - Language_Type: "L", - Ref_Name: "Riang(India)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rib", - Scope: "I", - Language_Type: "L", - Ref_Name: "BribriSignLanguage", - Comment: null, - }, - { - Id: "rif", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tarifit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ril", - Scope: "I", - Language_Type: "L", - Ref_Name: "RiangLang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rim", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyaturu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rin", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nungu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rir", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ribun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rit", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ritharrngu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "riu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Riung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rjg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rajong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rji", - Scope: "I", - Language_Type: "L", - Ref_Name: "Raji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rjs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rajbanshi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kraol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rkb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rikbaktsa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rkh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rakahanga-Manihiki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rki", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rakhine", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rkm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rkt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rangpuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rkw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Arakwal", - Comment: null, - }, - { - Id: "rma", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rembarrnga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CarpathianRomani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmd", - Scope: "I", - Language_Type: "E", - Ref_Name: "TravellerDanish", - Comment: null, - }, - { - Id: "rme", - Scope: "I", - Language_Type: "L", - Ref_Name: "Angloromani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmf", - Scope: "I", - Language_Type: "L", - Ref_Name: "KaloFinnishRomani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmg", - Scope: "I", - Language_Type: "L", - Ref_Name: "TravellerNorwegian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Murkim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lomavren", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Romkun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rml", - Scope: "I", - Language_Type: "L", - Ref_Name: "BalticRomani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Roma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmn", - Scope: "I", - Language_Type: "L", - Ref_Name: "BalkanRomani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmo", - Scope: "I", - Language_Type: "L", - Ref_Name: "SinteRomani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rempi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Caló", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rms", - Scope: "I", - Language_Type: "L", - Ref_Name: "RomanianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Domari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmu", - Scope: "I", - Language_Type: "L", - Ref_Name: "TavringerRomani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmv", - Scope: "I", - Language_Type: "C", - Ref_Name: "Romanova", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmw", - Scope: "I", - Language_Type: "L", - Ref_Name: "WelshRomani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Romam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmy", - Scope: "I", - Language_Type: "L", - Ref_Name: "VlaxRomani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rmz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rnb", - Scope: "I", - Language_Type: "L", - Ref_Name: "BruncaSignLanguage", - Comment: null, - }, - { - Id: "rnd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ruund", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rng", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ronga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rnl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ranglong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rnn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Roon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rnp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rongpo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rnr", - Scope: "I", - Language_Type: "E", - Ref_Name: "NariNari", - Comment: null, - }, - { - Id: "rnw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rungwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rob", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tae'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "roc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CacgiaRoglai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rod", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rogo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "roe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ronji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rof", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rombo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rog", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernRoglai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "roh", - Part2b: "roh", - Part2t: "roh", - Part1: "rm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Romansh", - Comment: null, - }, - { - Id: "rol", - Scope: "I", - Language_Type: "L", - Ref_Name: "Romblomanon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rom", - Part2b: "rom", - Part2t: "rom", - Scope: "M", - Language_Type: "L", - Ref_Name: "Romany", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ron", - Part2b: "rum", - Part2t: "ron", - Part1: "ro", - Scope: "I", - Language_Type: "L", - Ref_Name: "Romanian", - Comment: null, - }, - { - Id: "roo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rotokas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rop", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kriol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ror", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rongga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rou", - Scope: "I", - Language_Type: "L", - Ref_Name: "Runga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "row", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dela-Oenale", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rpn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Repanbitip", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rpt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rapting", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rri", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ririo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rrm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Moriori", - Comment: null, - }, - { - Id: "rro", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rrt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Arritinngithigh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rsb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Romano-Serbian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rsk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ruthenian", - Comment: null, - }, - { - Id: "rsl", - Scope: "I", - Language_Type: "L", - Ref_Name: "RussianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rsm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MiriwoongSignLanguage", - Comment: null, - }, - { - Id: "rsn", - Scope: "I", - Language_Type: "L", - Ref_Name: "RwandanSignLanguage", - Comment: null, - }, - { - Id: "rsw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rishiwa", - Comment: null, - }, - { - Id: "rtc", - Scope: "I", - Language_Type: "L", - Ref_Name: "RungtuChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rth", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ratahan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rtm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rotuman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rts", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yurats", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rtw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rathawi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rub", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gungu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ruc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ruuli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rue", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rusyn", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ruf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Luguru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rug", - Scope: "I", - Language_Type: "L", - Ref_Name: "Roviana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ruh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ruga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rui", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rufiji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ruk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Che", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "run", - Part2b: "run", - Part2t: "run", - Part1: "rn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rundi", - Comment: null, - }, - { - Id: "ruo", - Scope: "I", - Language_Type: "L", - Ref_Name: "IstroRomanian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rup", - Part2b: "rup", - Part2t: "rup", - Scope: "I", - Language_Type: "L", - Ref_Name: "Macedo-Romanian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ruq", - Scope: "I", - Language_Type: "L", - Ref_Name: "MeglenoRomanian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rus", - Part2b: "rus", - Part2t: "rus", - Part1: "ru", - Scope: "I", - Language_Type: "L", - Ref_Name: "Russian", - Comment: null, - }, - { - Id: "rut", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rutul", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ruu", - Scope: "I", - Language_Type: "L", - Ref_Name: "LanasLobu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ruy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mala(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ruz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ruma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rawo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rwk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rwl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ruwila", - Comment: null, - }, - { - Id: "rwm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amba(Uganda)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rwo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rwr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marwari(India)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rxd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngardi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rxw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Karuwali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ryn", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernAmami-Oshima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rys", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yaeyama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ryu", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralOkinawan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "rzh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Rāziḥī", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "saa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sab", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buglere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sac", - Scope: "I", - Language_Type: "L", - Ref_Name: "Meskwaki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sad", - Part2b: "sad", - Part2t: "sad", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sandawe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sae", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sabanê", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "saf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Safaliba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sag", - Part2b: "sag", - Part2t: "sag", - Part1: "sg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sango", - Comment: null, - }, - { - Id: "sah", - Part2b: "sah", - Part2t: "sah", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yakut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "saj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sahu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sak", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sake", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sam", - Part2b: "sam", - Part2t: "sam", - Scope: "I", - Language_Type: "E", - Ref_Name: "SamaritanAramaic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "san", - Part2b: "san", - Part2t: "san", - Part1: "sa", - Scope: "M", - Language_Type: "H", - Ref_Name: "Sanskrit", - Comment: null, - }, - { - Id: "sao", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sause", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "saq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Samburu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sar", - Scope: "I", - Language_Type: "E", - Ref_Name: "Saraveca", - Comment: null, - }, - { - Id: "sas", - Part2b: "sas", - Part2t: "sas", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sasak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sat", - Part2b: "sat", - Part2t: "sat", - Scope: "I", - Language_Type: "L", - Ref_Name: "Santali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sau", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saleman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sav", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saafi-Saafi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "saw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sawi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sax", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "say", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "saz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saurashtra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sba", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngambay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Simbo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kele(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbd", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernSamo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saliba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chabu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Seget", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sori-Harengan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Seti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Surbakhal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Safwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbl", - Scope: "I", - Language_Type: "L", - Ref_Name: "BotolanSambal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sagala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbn", - Scope: "I", - Language_Type: "L", - Ref_Name: "SindhiBhil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sabüm", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sangu(Tanzania)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sileibi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbr", - Scope: "I", - Language_Type: "L", - Ref_Name: "SembakungMurut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Subiya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kimki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbu", - Scope: "I", - Language_Type: "L", - Ref_Name: "StodBhoti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbv", - Scope: "I", - Language_Type: "H", - Ref_Name: "Sabine", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Simba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Seberuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sby", - Scope: "I", - Language_Type: "L", - Ref_Name: "Soli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sbz", - Scope: "I", - Language_Type: "L", - Ref_Name: "SaraKaba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "scb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sce", - Scope: "I", - Language_Type: "L", - Ref_Name: "Dongxiang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "scf", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanMiguelCreoleFrench", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "scg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sanggau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sch", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sakachep", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sci", - Scope: "I", - Language_Type: "L", - Ref_Name: "SriLankanCreoleMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sck", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sadri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "scl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "scn", - Part2b: "scn", - Part2t: "scn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sicilian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sco", - Part2b: "sco", - Part2t: "sco", - Scope: "I", - Language_Type: "L", - Ref_Name: "Scots", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "scp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hyolmo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "scq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sa'och", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "scs", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthSlavey", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sct", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernKatang", - Comment: null, - }, - { - Id: "scu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shumcho", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "scv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sheni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "scw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "scx", - Scope: "I", - Language_Type: "H", - Ref_Name: "Sicel", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sda", - Scope: "I", - Language_Type: "L", - Ref_Name: "Toraja-Sa'dan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sdb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shabak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sdc", - Scope: "I", - Language_Type: "L", - Ref_Name: "SassareseSardinian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sde", - Scope: "I", - Language_Type: "L", - Ref_Name: "Surubu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sdf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sarli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sdg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Savi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sdh", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernKurdish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sdj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suundi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sdk", - Scope: "I", - Language_Type: "L", - Ref_Name: "SosKundi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sdl", - Scope: "I", - Language_Type: "L", - Ref_Name: "SaudiArabianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sdn", - Scope: "I", - Language_Type: "L", - Ref_Name: "GallureseSardinian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sdo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bukar-SadungBidayuh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sdp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sherdukpen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sdq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Semandang", - Comment: null, - }, - { - Id: "sdr", - Scope: "I", - Language_Type: "L", - Ref_Name: "OraonSadri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sds", - Scope: "I", - Language_Type: "E", - Ref_Name: "Sened", - Comment: null, - }, - { - Id: "sdt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Shuadit", - Comment: null, - }, - { - Id: "sdu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sarudu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sdx", - Scope: "I", - Language_Type: "L", - Ref_Name: "SibuMelanau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sdz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sallands", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sea", - Scope: "I", - Language_Type: "L", - Ref_Name: "Semai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "seb", - Scope: "I", - Language_Type: "L", - Ref_Name: "ShempireSenoufo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sec", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sechelt", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sed", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sedang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "see", - Scope: "I", - Language_Type: "L", - Ref_Name: "Seneca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sef", - Scope: "I", - Language_Type: "L", - Ref_Name: "CebaaraSenoufo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "seg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Segeju", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "seh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sei", - Scope: "I", - Language_Type: "L", - Ref_Name: "Seri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sej", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sene", - Comment: null, - }, - { - Id: "sek", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sekani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sel", - Part2b: "sel", - Part2t: "sel", - Scope: "I", - Language_Type: "L", - Ref_Name: "Selkup", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sen", - Scope: "I", - Language_Type: "L", - Ref_Name: "NanerigéSénoufo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "seo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suarmin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sep", - Scope: "I", - Language_Type: "L", - Ref_Name: "SìcìtéSénoufo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "seq", - Scope: "I", - Language_Type: "L", - Ref_Name: "SenaraSénoufo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ser", - Scope: "I", - Language_Type: "L", - Ref_Name: "Serrano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ses", - Scope: "I", - Language_Type: "L", - Ref_Name: "KoyraboroSenniSonghai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "set", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sentani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "seu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Serui-Laut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sev", - Scope: "I", - Language_Type: "L", - Ref_Name: "NyarafoloSenoufo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sew", - Scope: "I", - Language_Type: "L", - Ref_Name: "SewaBay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sey", - Scope: "I", - Language_Type: "L", - Ref_Name: "Secoya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sez", - Scope: "I", - Language_Type: "L", - Ref_Name: "SenthangChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sfb", - Scope: "I", - Language_Type: "L", - Ref_Name: "LanguedessignesdeBelgiqueFrancophone", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sfe", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternSubanen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sfm", - Scope: "I", - Language_Type: "L", - Ref_Name: "SmallFloweryMiao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sfs", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthAfricanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sfw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sehwi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sga", - Part2b: "sga", - Part2t: "sga", - Scope: "I", - Language_Type: "H", - Ref_Name: "OldIrish(to900)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mag-antsiAyta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kipsigis", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Surigaonon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sge", - Scope: "I", - Language_Type: "L", - Ref_Name: "Segai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Swiss-GermanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shughni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Surgujia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sangkong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Singa", - Comment: null, - }, - { - Id: "sgp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Singpho", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sangisari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Samogitian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Brokpake", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Salas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgw", - Scope: "I", - Language_Type: "L", - Ref_Name: "SebatBetGurage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgx", - Scope: "I", - Language_Type: "L", - Ref_Name: "SierraLeoneSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sanglechi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sgz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sursurunga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sha", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shall-Zwall", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ninam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sonde", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shd", - Scope: "I", - Language_Type: "L", - Ref_Name: "KundalShahi", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "she", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sheko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shoshoni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tachelhit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shatt", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shilluk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shendu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shahrudi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shn", - Part2b: "shn", - Part2t: "shn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sho", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shipibo-Conibo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shuswap", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sht", - Scope: "I", - Language_Type: "E", - Ref_Name: "Shasta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shu", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChadianArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "shv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shehri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shwai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shx", - Scope: "I", - Language_Type: "L", - Ref_Name: "She", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tachawit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "shz", - Scope: "I", - Language_Type: "L", - Ref_Name: "SyenaraSenoufo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sia", - Scope: "I", - Language_Type: "E", - Ref_Name: "AkkalaSami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sib", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sebop", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sid", - Part2b: "sid", - Part2t: "sid", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sidamo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sie", - Scope: "I", - Language_Type: "L", - Ref_Name: "Simaa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sif", - Scope: "I", - Language_Type: "L", - Ref_Name: "Siamou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sig", - Scope: "I", - Language_Type: "L", - Ref_Name: "Paasaal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sih", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zire", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sii", - Scope: "I", - Language_Type: "L", - Ref_Name: "ShomPeng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sij", - Scope: "I", - Language_Type: "L", - Ref_Name: "Numbami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sik", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sikiana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sil", - Scope: "I", - Language_Type: "L", - Ref_Name: "TumulungSisaala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sim", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mende(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sin", - Part2b: "sin", - Part2t: "sin", - Part1: "si", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sinhala", - Comment: null, - }, - { - Id: "sip", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sikkimese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "siq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sonia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sir", - Scope: "I", - Language_Type: "L", - Ref_Name: "Siri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sis", - Scope: "I", - Language_Type: "E", - Ref_Name: "Siuslaw", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "siu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sinagen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "siv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sumariup", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "siw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Siwai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "six", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sumau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "siy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sivandi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "siz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Siwi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sja", - Scope: "I", - Language_Type: "L", - Ref_Name: "Epena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sjb", - Scope: "I", - Language_Type: "L", - Ref_Name: "SajauBasap", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sjd", - Scope: "I", - Language_Type: "L", - Ref_Name: "KildinSami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sje", - Scope: "I", - Language_Type: "L", - Ref_Name: "PiteSami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sjg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Assangori", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sjk", - Scope: "I", - Language_Type: "E", - Ref_Name: "KemiSami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sjl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sajalong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sjm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mapun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sjn", - Scope: "I", - Language_Type: "C", - Ref_Name: "Sindarin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sjo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Xibe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sjp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Surjapuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sjr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Siar-Lak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sjs", - Scope: "I", - Language_Type: "E", - Ref_Name: "SenhajaDeSrair", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sjt", - Scope: "I", - Language_Type: "L", - Ref_Name: "TerSami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sju", - Scope: "I", - Language_Type: "L", - Ref_Name: "UmeSami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sjw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shawnee", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ska", - Scope: "I", - Language_Type: "L", - Ref_Name: "Skagit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skc", - Scope: "I", - Language_Type: "L", - Ref_Name: "MaManda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skd", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernSierraMiwok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ske", - Scope: "I", - Language_Type: "L", - Ref_Name: "Seke(Vanuatu)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sakirabiá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skg", - Scope: "I", - Language_Type: "L", - Ref_Name: "SakalavaMalagasy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sikule", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ski", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sika", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Seke(Nepal)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kutong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skn", - Scope: "I", - Language_Type: "L", - Ref_Name: "KolibuganSubanon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sko", - Scope: "I", - Language_Type: "L", - Ref_Name: "SekoTengah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sekapan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sininkere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saraiki", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "sks", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sakata", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sku", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sakao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Skou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skw", - Scope: "I", - Language_Type: "E", - Ref_Name: "SkepiCreoleDutch", - Comment: null, - }, - { - Id: "skx", - Scope: "I", - Language_Type: "L", - Ref_Name: "SekoPadang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sky", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sikaiana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "skz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sekar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "slc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sáliba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sld", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sissala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sle", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sholaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "slf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Swiss-ItalianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "slg", - Scope: "I", - Language_Type: "L", - Ref_Name: "SelungaiMurut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "slh", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernPugetSoundSalish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sli", - Scope: "I", - Language_Type: "L", - Ref_Name: "LowerSilesian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "slj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Salumá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "slk", - Part2b: "slo", - Part2t: "slk", - Part1: "sk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Slovak", - Comment: null, - }, - { - Id: "sll", - Scope: "I", - Language_Type: "L", - Ref_Name: "Salt-Yui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "slm", - Scope: "I", - Language_Type: "L", - Ref_Name: "PangutaranSama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sln", - Scope: "I", - Language_Type: "E", - Ref_Name: "Salinan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "slp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lamaholot", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "slr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Salar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sls", - Scope: "I", - Language_Type: "L", - Ref_Name: "SingaporeSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "slt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sila", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "slu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Selaru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "slv", - Part2b: "slv", - Part2t: "slv", - Part1: "sl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Slovenian", - Comment: null, - }, - { - Id: "slw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sialum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "slx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Salampasu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sly", - Scope: "I", - Language_Type: "L", - Ref_Name: "Selayar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "slz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ma'ya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sma", - Part2b: "sma", - Part2t: "sma", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernSami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Simbari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Som", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sme", - Part2b: "sme", - Part2t: "sme", - Part1: "se", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernSami", - Comment: null, - }, - { - Id: "smf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Auwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Simbali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Samei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smj", - Part2b: "smj", - Part2t: "smj", - Scope: "I", - Language_Type: "L", - Ref_Name: "LuleSami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bolinao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sml", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralSama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Musasa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smn", - Part2b: "smn", - Part2t: "smn", - Scope: "I", - Language_Type: "L", - Ref_Name: "InariSami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smo", - Part2b: "smo", - Part2t: "smo", - Part1: "sm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Samoan", - Comment: null, - }, - { - Id: "smp", - Scope: "I", - Language_Type: "E", - Ref_Name: "Samaritan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Samo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Simeulue", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sms", - Part2b: "sms", - Part2t: "sms", - Scope: "I", - Language_Type: "L", - Ref_Name: "SkoltSami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Simte", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Somray", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Samvedi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sumbawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Samba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Semnani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "smz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Simeku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sna", - Part2b: "sna", - Part2t: "sna", - Part1: "sn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shona", - Comment: null, - }, - { - Id: "snc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sinaugoro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "snd", - Part2b: "snd", - Part2t: "snd", - Part1: "sd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sindhi", - Comment: null, - }, - { - Id: "sne", - Scope: "I", - Language_Type: "L", - Ref_Name: "BauBidayuh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "snf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Noon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sng", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sanga(DemocraticRepublicofCongo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sni", - Scope: "I", - Language_Type: "E", - Ref_Name: "Sensi", - Comment: null, - }, - { - Id: "snj", - Scope: "I", - Language_Type: "L", - Ref_Name: "RiverainSango", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "snk", - Part2b: "snk", - Part2t: "snk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Soninke", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "snl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sangil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "snm", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernMa'di", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "snn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Siona", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sno", - Scope: "I", - Language_Type: "L", - Ref_Name: "Snohomish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "snp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Siane", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "snq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sangu(Gabon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "snr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sihan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sns", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthWestBay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "snu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Senggi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "snv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sa'ban", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "snw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Selee", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "snx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sny", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saniyo-Hiyewe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "snz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "soa", - Scope: "I", - Language_Type: "L", - Ref_Name: "ThaiSong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sob", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sobei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "soc", - Scope: "I", - Language_Type: "L", - Ref_Name: "So(DemocraticRepublicofCongo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sod", - Scope: "I", - Language_Type: "L", - Ref_Name: "Songoora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "soe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Songomeno", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sog", - Part2b: "sog", - Part2t: "sog", - Scope: "I", - Language_Type: "H", - Ref_Name: "Sogdian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "soh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "soi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sonha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "soj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Soi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sok", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sokoro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sol", - Scope: "I", - Language_Type: "L", - Ref_Name: "Solos", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "som", - Part2b: "som", - Part2t: "som", - Part1: "so", - Scope: "I", - Language_Type: "L", - Ref_Name: "Somali", - Comment: null, - }, - { - Id: "soo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Songo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sop", - Scope: "I", - Language_Type: "L", - Ref_Name: "Songe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "soq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanasi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sor", - Scope: "I", - Language_Type: "L", - Ref_Name: "Somrai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sos", - Scope: "I", - Language_Type: "L", - Ref_Name: "Seeku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sot", - Part2b: "sot", - Part2t: "sot", - Part1: "st", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernSotho", - Comment: null, - }, - { - Id: "sou", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernThai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sov", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sonsorol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sow", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sowanda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sox", - Scope: "I", - Language_Type: "L", - Ref_Name: "Swo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "soy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Miyobe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "soz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Temi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spa", - Part2b: "spa", - Part2t: "spa", - Part1: "es", - Scope: "I", - Language_Type: "L", - Ref_Name: "Spanish", - Comment: null, - }, - { - Id: "spb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sepa(Indonesia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sapé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saep", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sepa(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saponi", - Comment: null, - }, - { - Id: "spk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sengo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Selepet", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akukem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sanapaná", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Spokane", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spp", - Scope: "I", - Language_Type: "L", - Ref_Name: "SupyireSenoufo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Loreto-UcayaliSpanish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saparua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sps", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saposa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spt", - Scope: "I", - Language_Type: "L", - Ref_Name: "SpitiBhoti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sapuan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sambalpuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spx", - Scope: "I", - Language_Type: "H", - Ref_Name: "SouthPicene", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "spy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sabaot", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sqa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shama-Sambuga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sqh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sqi", - Part2b: "alb", - Part2t: "sqi", - Part1: "sq", - Scope: "M", - Language_Type: "L", - Ref_Name: "Albanian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sqk", - Scope: "I", - Language_Type: "L", - Ref_Name: "AlbanianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sqm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sqn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Susquehannock", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sqo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sorkhei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sqq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sqr", - Scope: "I", - Language_Type: "H", - Ref_Name: "SiculoArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "sqs", - Scope: "I", - Language_Type: "L", - Ref_Name: "SriLankanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sqt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Soqotri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "squ", - Scope: "I", - Language_Type: "L", - Ref_Name: "Squamish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sqx", - Scope: "I", - Language_Type: "L", - Ref_Name: "KufrQassemSignLanguage(KQSL)", - Comment: null, - }, - { - Id: "sra", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saruga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "src", - Scope: "I", - Language_Type: "L", - Ref_Name: "LogudoreseSardinian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srd", - Part2b: "srd", - Part2t: "srd", - Part1: "sc", - Scope: "M", - Language_Type: "L", - Ref_Name: "Sardinian", - Comment: null, - }, - { - Id: "sre", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nafi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sulod", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sarikoli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sri", - Scope: "I", - Language_Type: "L", - Ref_Name: "Siriano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srk", - Scope: "I", - Language_Type: "L", - Ref_Name: "SerudungMurut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Isirawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saramaccan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srn", - Part2b: "srn", - Part2t: "srn", - Scope: "I", - Language_Type: "L", - Ref_Name: "SrananTongo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sro", - Scope: "I", - Language_Type: "L", - Ref_Name: "CampidaneseSardinian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srp", - Part2b: "srp", - Part2t: "srp", - Part1: "sr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Serbian", - Comment: null, - }, - { - Id: "srq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sirionó", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srr", - Part2b: "srr", - Part2t: "srr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Serer", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sarsi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sauri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sru", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suruí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srv", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernSorsoganon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Serua", - Comment: null, - }, - { - Id: "srx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sirmauri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sry", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "srz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shahmirzadi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssb", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernSama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suba-Simbiti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Siroi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sse", - Scope: "I", - Language_Type: "L", - Ref_Name: "Balangingi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Thao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Seimat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssh", - Scope: "I", - Language_Type: "L", - Ref_Name: "ShihhiArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "ssi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sansi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sausi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sunam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssl", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternSisaala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Semnam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waata", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sso", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sissano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssp", - Scope: "I", - Language_Type: "L", - Ref_Name: "SpanishSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssq", - Scope: "I", - Language_Type: "L", - Ref_Name: "So'a", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Swiss-FrenchSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sss", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sô", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sst", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sinasina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Susuami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssv", - Scope: "I", - Language_Type: "L", - Ref_Name: "SharkBay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssw", - Part2b: "ssw", - Part2t: "ssw", - Part1: "ss", - Scope: "I", - Language_Type: "L", - Ref_Name: "Swati", - Comment: null, - }, - { - Id: "ssx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Samberigi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saho", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ssz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sengseng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sta", - Scope: "I", - Language_Type: "L", - Ref_Name: "Settla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "stb", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernSubanen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "std", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sentinel", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ste", - Scope: "I", - Language_Type: "L", - Ref_Name: "Liana-Seti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "stf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Seta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "stg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Trieng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sth", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shelta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sti", - Scope: "I", - Language_Type: "L", - Ref_Name: "BuloStieng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "stj", - Scope: "I", - Language_Type: "L", - Ref_Name: "MatyaSamo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "stk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Arammba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "stl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Stellingwerfs", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "stm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Setaman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "stn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Owa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sto", - Scope: "I", - Language_Type: "L", - Ref_Name: "Stoney", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "stp", - Scope: "I", - Language_Type: "L", - Ref_Name: "SoutheasternTepehuan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "stq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saterfriesisch", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "str", - Scope: "I", - Language_Type: "L", - Ref_Name: "StraitsSalish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sts", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shumashti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "stt", - Scope: "I", - Language_Type: "L", - Ref_Name: "BudehStieng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "stu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Samtao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "stv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Silt'e", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "stw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Satawalese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sty", - Scope: "I", - Language_Type: "L", - Ref_Name: "SiberianTatar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sua", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sulka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sub", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "suc", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternSubanon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sue", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sug", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suganga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sui", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "suj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shubi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "suk", - Part2b: "suk", - Part2t: "suk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sukuma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sun", - Part2b: "sun", - Part2t: "sun", - Part1: "su", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sundanese", - Comment: null, - }, - { - Id: "suo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bouni", - Comment: null, - }, - { - Id: "suq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tirmaga-ChaiSuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sur", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mwaghavul", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sus", - Part2b: "sus", - Part2t: "sus", - Scope: "I", - Language_Type: "L", - Ref_Name: "Susu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sut", - Scope: "I", - Language_Type: "E", - Ref_Name: "Subtiaba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "suv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Puroik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "suw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sumbwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sux", - Part2b: "sux", - Part2t: "sux", - Scope: "I", - Language_Type: "H", - Ref_Name: "Sumerian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "suy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suyá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "suz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sunwar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sva", - Scope: "I", - Language_Type: "L", - Ref_Name: "Svan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "svb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ulau-Suain", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "svc", - Scope: "I", - Language_Type: "L", - Ref_Name: "VincentianCreoleEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sve", - Scope: "I", - Language_Type: "L", - Ref_Name: "Serili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "svk", - Scope: "I", - Language_Type: "L", - Ref_Name: "SlovakianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "svm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Slavomolisano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "svs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Savosavo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "svx", - Scope: "I", - Language_Type: "H", - Ref_Name: "Skalvian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swa", - Part2b: "swa", - Part2t: "swa", - Part1: "sw", - Scope: "M", - Language_Type: "L", - Ref_Name: "Swahili(macrolanguage)", - Comment: null, - }, - { - Id: "swb", - Scope: "I", - Language_Type: "L", - Ref_Name: "MaoreComorian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CongoSwahili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swe", - Part2b: "swe", - Part2t: "swe", - Part1: "sv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Swedish", - Comment: null, - }, - { - Id: "swf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Swabian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Swahili(individuallanguage)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sira", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swk", - Scope: "I", - Language_Type: "L", - Ref_Name: "MalawiSena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swl", - Scope: "I", - Language_Type: "L", - Ref_Name: "SwedishSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Samosa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sawknah", - Comment: null, - }, - { - Id: "swo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shanenawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sharwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saweru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sws", - Scope: "I", - Language_Type: "L", - Ref_Name: "Seluwasan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sawila", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suwawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shekhawati", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sww", - Scope: "I", - Language_Type: "E", - Ref_Name: "Sowa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suruahá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "swy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sarua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sxb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sxc", - Scope: "I", - Language_Type: "H", - Ref_Name: "Sicanian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sxe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sighu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sxg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shuhi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sxk", - Scope: "I", - Language_Type: "E", - Ref_Name: "SouthernKalapuya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sxl", - Scope: "I", - Language_Type: "E", - Ref_Name: "Selian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sxm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Samre", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sxn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sangir", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sxo", - Scope: "I", - Language_Type: "H", - Ref_Name: "Sorothaptic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sxr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saaroa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sxs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sasaru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sxu", - Scope: "I", - Language_Type: "L", - Ref_Name: "UpperSaxon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sxw", - Scope: "I", - Language_Type: "L", - Ref_Name: "SaxweGbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sya", - Scope: "I", - Language_Type: "L", - Ref_Name: "Siang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "syb", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralSubanen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "syc", - Part2b: "syc", - Part2t: "syc", - Scope: "I", - Language_Type: "H", - Ref_Name: "ClassicalSyriac", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "syi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Seki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "syk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sukur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "syl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sylheti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sym", - Scope: "I", - Language_Type: "L", - Ref_Name: "MayaSamo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "syn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Senaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "syo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suoy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "syr", - Part2b: "syr", - Part2t: "syr", - Scope: "M", - Language_Type: "L", - Ref_Name: "Syriac", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sys", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sinyar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "syw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kagate", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "syx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Samay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "syy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Al-SayyidBedouinSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sza", - Scope: "I", - Language_Type: "L", - Ref_Name: "Semelai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "szb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngalum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "szc", - Scope: "I", - Language_Type: "L", - Ref_Name: "SemaqBeri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "sze", - Scope: "I", - Language_Type: "L", - Ref_Name: "Seze", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "szg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sengele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "szl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Silesian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "szn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "szp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Suabo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "szs", - Scope: "I", - Language_Type: "L", - Ref_Name: "SolomonIslandsSignLanguage", - Comment: null, - }, - { - Id: "szv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Isu(FakoDivision)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "szw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sawai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "szy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sakizaya", - Comment: null, - }, - { - Id: "taa", - Scope: "I", - Language_Type: "L", - Ref_Name: "LowerTanana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tab", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tabassaran", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tac", - Scope: "I", - Language_Type: "L", - Ref_Name: "LowlandTarahumara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tad", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tause", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tae", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tariana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "taf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tapirapé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tagoi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tah", - Part2b: "tah", - Part2t: "tah", - Part1: "ty", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tahitian", - Comment: null, - }, - { - Id: "taj", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternTamang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tak", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tal", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tam", - Part2b: "tam", - Part2t: "tam", - Part1: "ta", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tamil", - Comment: null, - }, - { - Id: "tan", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tangale", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tao", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tap", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taabwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "taq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tamasheq", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tar", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralTarahumara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tas", - Scope: "I", - Language_Type: "E", - Ref_Name: "TayBoi", - Comment: null, - }, - { - Id: "tat", - Part2b: "tat", - Part2t: "tat", - Part1: "tt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tatar", - Comment: null, - }, - { - Id: "tau", - Scope: "I", - Language_Type: "L", - Ref_Name: "UpperTanana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tav", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tatuyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "taw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tax", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tamki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tay", - Scope: "I", - Language_Type: "L", - Ref_Name: "Atayal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "taz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tocho", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tba", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aikanã", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Takia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbd", - Scope: "I", - Language_Type: "L", - Ref_Name: "KakiAe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tanimbili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mandara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbg", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthTairora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbh", - Scope: "I", - Language_Type: "E", - Ref_Name: "Dharawal", - Comment: null, - }, - { - Id: "tbi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gaam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tiang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbk", - Scope: "I", - Language_Type: "L", - Ref_Name: "CalamianTagbanwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tboli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tagbu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbn", - Scope: "I", - Language_Type: "L", - Ref_Name: "BarroNegroTunebo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tawala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taworta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tumtum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tanguat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tembo(Kitembo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tubar", - Comment: null, - }, - { - Id: "tbv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tagbanwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kapin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tby", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tabaru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tbz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ditammari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tca", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ticuna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tanacross", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Datooga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tafi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tce", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernTutchone", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcf", - Scope: "I", - Language_Type: "L", - Ref_Name: "MalinaltepecMe'phaa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tamagario", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tch", - Scope: "I", - Language_Type: "L", - Ref_Name: "TurksAndCaicosCreoleEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tci", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wára", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tck", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tchitchege", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcl", - Scope: "I", - Language_Type: "E", - Ref_Name: "Taman(Myanmar)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tanahmerah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tichurong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tco", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taungyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcp", - Scope: "I", - Language_Type: "L", - Ref_Name: "TawrChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaiy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcs", - Scope: "I", - Language_Type: "L", - Ref_Name: "TorresStraitCreole", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tct", - Scope: "I", - Language_Type: "L", - Ref_Name: "T'en", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcu", - Scope: "I", - Language_Type: "L", - Ref_Name: "SoutheasternTarahumara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcw", - Scope: "I", - Language_Type: "L", - Ref_Name: "TecpatlánTotonac", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Toda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tcz", - Scope: "I", - Language_Type: "L", - Ref_Name: "ThadoChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tda", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tagdal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Panchpargania", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Emberá-Tadó", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdd", - Scope: "I", - Language_Type: "L", - Ref_Name: "TaiNüa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tde", - Scope: "I", - Language_Type: "L", - Ref_Name: "TiranigeDigaDogon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Talieng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdg", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternTamang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Thulung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tomadino", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tajio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tambas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taruma", - Comment: null, - }, - { - Id: "tdn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tondano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Teme", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tita", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Todrah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tds", - Scope: "I", - Language_Type: "L", - Ref_Name: "Doutai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdt", - Scope: "I", - Language_Type: "L", - Ref_Name: "TetunDili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Toro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tandroy-MahafalyMalagasy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tdy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tadyawan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tea", - Scope: "I", - Language_Type: "L", - Ref_Name: "Temiar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "teb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tetete", - Comment: null, - }, - { - Id: "tec", - Scope: "I", - Language_Type: "L", - Ref_Name: "Terik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ted", - Scope: "I", - Language_Type: "L", - Ref_Name: "TepoKrumen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tee", - Scope: "I", - Language_Type: "L", - Ref_Name: "HuehuetlaTepehua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tef", - Scope: "I", - Language_Type: "L", - Ref_Name: "Teressa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "teg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Teke-Tege", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "teh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tehuelche", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tei", - Scope: "I", - Language_Type: "L", - Ref_Name: "Torricelli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tek", - Scope: "I", - Language_Type: "L", - Ref_Name: "IbaliTeke", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tel", - Part2b: "tel", - Part2t: "tel", - Part1: "te", - Scope: "I", - Language_Type: "L", - Ref_Name: "Telugu", - Comment: null, - }, - { - Id: "tem", - Part2b: "tem", - Part2t: "tem", - Scope: "I", - Language_Type: "L", - Ref_Name: "Timne", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ten", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tama(Colombia)", - Comment: null, - }, - { - Id: "teo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Teso", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tep", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tepecano", - Comment: null, - }, - { - Id: "teq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Temein", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ter", - Part2b: "ter", - Part2t: "ter", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tereno", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tes", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tengger", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tet", - Part2b: "tet", - Part2t: "tet", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tetum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "teu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Soo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tev", - Scope: "I", - Language_Type: "L", - Ref_Name: "Teor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tew", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tewa(USA)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tex", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tennet", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tey", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tulishi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tez", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tetserret", - Comment: null, - }, - { - Id: "tfi", - Scope: "I", - Language_Type: "L", - Ref_Name: "TofinGbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tfn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tanaina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tfo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tefaro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tfr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Teribe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tft", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ternate", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tga", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sagalla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tobilung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tigak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ciwogai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tge", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternGorkhaTamang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chalikha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgh", - Scope: "I", - Language_Type: "L", - Ref_Name: "TobagonianCreoleEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lawunuia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tagin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgk", - Part2b: "tgk", - Part2t: "tgk", - Part1: "tg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tajik", - Comment: null, - }, - { - Id: "tgl", - Part2b: "tgl", - Part2t: "tgl", - Part1: "tl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tagalog", - Comment: null, - }, - { - Id: "tgn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tandaganon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sudest", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tangoa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tring", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tareng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nume", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgt", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralTagbanwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tanggu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgv", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tingui-Boto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgw", - Scope: "I", - Language_Type: "L", - Ref_Name: "TagwanaSenoufo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tagish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tgy", - Scope: "I", - Language_Type: "E", - Ref_Name: "Togoyo", - Comment: null, - }, - { - Id: "tgz", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tagalaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tha", - Part2b: "tha", - Part2t: "tha", - Part1: "th", - Scope: "I", - Language_Type: "L", - Ref_Name: "Thai", - Comment: null, - }, - { - Id: "thd", - Scope: "I", - Language_Type: "L", - Ref_Name: "KuukThaayorre", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "the", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChitwaniaTharu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "thf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Thangmi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "thh", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernTarahumara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "thi", - Scope: "I", - Language_Type: "L", - Ref_Name: "TaiLong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "thk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tharaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "thl", - Scope: "I", - Language_Type: "L", - Ref_Name: "DangauraTharu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "thm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aheu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "thn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Thachanadan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "thp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Thompson", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "thq", - Scope: "I", - Language_Type: "L", - Ref_Name: "KochilaTharu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "thr", - Scope: "I", - Language_Type: "L", - Ref_Name: "RanaTharu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ths", - Scope: "I", - Language_Type: "L", - Ref_Name: "Thakali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tht", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tahltan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "thu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Thuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "thv", - Scope: "I", - Language_Type: "L", - Ref_Name: "TahaggartTamahaq", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "thy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "thz", - Scope: "I", - Language_Type: "L", - Ref_Name: "TayartTamajeq", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tia", - Scope: "I", - Language_Type: "L", - Ref_Name: "TidikeltTamazight", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tic", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tira", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tif", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tifal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tig", - Part2b: "tig", - Part2t: "tig", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tigre", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tih", - Scope: "I", - Language_Type: "L", - Ref_Name: "TimugonMurut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tii", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tiene", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tij", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tilung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tik", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tikar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "til", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tillamook", - Comment: null, - }, - { - Id: "tim", - Scope: "I", - Language_Type: "L", - Ref_Name: "Timbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tin", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tindi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tio", - Scope: "I", - Language_Type: "L", - Ref_Name: "Teop", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tip", - Scope: "I", - Language_Type: "L", - Ref_Name: "Trimuris", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tiq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tiéfo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tir", - Part2b: "tir", - Part2t: "tir", - Part1: "ti", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tigrinya", - Comment: null, - }, - { - Id: "tis", - Scope: "I", - Language_Type: "L", - Ref_Name: "MasadiitItneg", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tit", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tinigua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tiu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Adasen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tiv", - Part2b: "tiv", - Part2t: "tiv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tiv", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tiw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tiwi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tix", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernTiwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tiy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tiruray", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tiz", - Scope: "I", - Language_Type: "L", - Ref_Name: "TaiHongjin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tja", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tajuasohn", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tjg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tunjung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tji", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernTujia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tjj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tjungundji", - Comment: null, - }, - { - Id: "tjl", - Scope: "I", - Language_Type: "L", - Ref_Name: "TaiLaing", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tjm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Timucua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tjn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tonjon", - Comment: null, - }, - { - Id: "tjo", - Scope: "I", - Language_Type: "L", - Ref_Name: "TemacineTamazight", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tjp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tjupany", - Comment: null, - }, - { - Id: "tjs", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernTujia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tju", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tjurruru", - Comment: null, - }, - { - Id: "tjw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Djabwurrung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tka", - Scope: "I", - Language_Type: "E", - Ref_Name: "Truká", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tkb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buksa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tkd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tukudede", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tke", - Scope: "I", - Language_Type: "L", - Ref_Name: "Takwane", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tkf", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tukumanféd", - Comment: null, - }, - { - Id: "tkg", - Scope: "I", - Language_Type: "L", - Ref_Name: "TesakaMalagasy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tkl", - Part2b: "tkl", - Part2t: "tkl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tokelau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tkm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Takelma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tkn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Toku-No-Shima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tkp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tikopia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tkq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tee", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tkr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsakhur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tks", - Scope: "I", - Language_Type: "L", - Ref_Name: "Takestani", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "tkt", - Scope: "I", - Language_Type: "L", - Ref_Name: "KathoriyaTharu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tku", - Scope: "I", - Language_Type: "L", - Ref_Name: "UpperNecaxaTotonac", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tkv", - Scope: "I", - Language_Type: "L", - Ref_Name: "MurPano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tkw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Teanu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tkx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tangko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tkz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Takua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tla", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthwesternTepehuan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tobelo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlc", - Scope: "I", - Language_Type: "L", - Ref_Name: "YecuatlaTotonac", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tld", - Scope: "I", - Language_Type: "L", - Ref_Name: "Talaud", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Telefol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tofanma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlh", - Part2b: "tlh", - Part2t: "tlh", - Scope: "I", - Language_Type: "C", - Ref_Name: "Klingon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tli", - Part2b: "tli", - Part2t: "tli", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tlingit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Talinga-Bwisi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taloki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tll", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tetela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tolomako", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tln", - Scope: "I", - Language_Type: "L", - Ref_Name: "Talondo'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Talodi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlp", - Scope: "I", - Language_Type: "L", - Ref_Name: "FilomenaMata-CoahuitlánTotonac", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlq", - Scope: "I", - Language_Type: "L", - Ref_Name: "TaiLoi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Talise", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tls", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tambotalo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlt", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouNama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tulehu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taliabu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tlx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khehek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tly", - Scope: "I", - Language_Type: "L", - Ref_Name: "Talysh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tma", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tama(Chad)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Katbol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tumak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Haruai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tme", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tremembé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Toba-Maskoy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ternateño", - Comment: null, - }, - { - Id: "tmh", - Part2b: "tmh", - Part2t: "tmh", - Scope: "M", - Language_Type: "L", - Ref_Name: "Tamashek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tutuba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Samarokena", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tml", - Scope: "I", - Language_Type: "L", - Ref_Name: "TamnimCitak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmm", - Scope: "I", - Language_Type: "L", - Ref_Name: "TaiThanh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taman(Indonesia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Temoq", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tumleo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmr", - Scope: "I", - Language_Type: "E", - Ref_Name: "JewishBabylonianAramaic(ca.200-1200CE)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tms", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tasmate", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tembo(Motembo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Temuan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tmz", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tamanaku", - Comment: null, - }, - { - Id: "tna", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tacana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnb", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternTunebo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tanimuca-Retuarã", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnd", - Scope: "I", - Language_Type: "L", - Ref_Name: "AngosturasTunebo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tng", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tobanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maiani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tni", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tandia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwamera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lenakel", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tabla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnn", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthTanna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tno", - Scope: "I", - Language_Type: "L", - Ref_Name: "Toromono", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Whitesands", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnq", - Scope: "I", - Language_Type: "E", - Ref_Name: "Taino", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ménik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tns", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tenis", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tontemboan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnu", - Scope: "I", - Language_Type: "L", - Ref_Name: "TayKhang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tangchangya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tonsawang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tanema", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tny", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tongwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tnz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ten'edn", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tob", - Scope: "I", - Language_Type: "L", - Ref_Name: "Toba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "toc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CoyutlaTotonac", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tod", - Scope: "I", - Language_Type: "L", - Ref_Name: "Toma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tof", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gizrra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tog", - Part2b: "tog", - Part2t: "tog", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tonga(Nyasa)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "toh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gitonga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "toi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tonga(Zambia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "toj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tojolabal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tok", - Scope: "I", - Language_Type: "C", - Ref_Name: "TokiPona", - Comment: null, - }, - { - Id: "tol", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tolowa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tom", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tombulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ton", - Part2b: "ton", - Part2t: "ton", - Part1: "to", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tonga(TongaIslands)", - Comment: null, - }, - { - Id: "too", - Scope: "I", - Language_Type: "L", - Ref_Name: "XicotepecDeJuárezTotonac", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "top", - Scope: "I", - Language_Type: "L", - Ref_Name: "PapantlaTotonac", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "toq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Toposa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tor", - Scope: "I", - Language_Type: "L", - Ref_Name: "Togbo-VaraBanda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tos", - Scope: "I", - Language_Type: "L", - Ref_Name: "HighlandTotonac", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tou", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tho", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tov", - Scope: "I", - Language_Type: "L", - Ref_Name: "UpperTaromi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tow", - Scope: "I", - Language_Type: "L", - Ref_Name: "Jemez", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tox", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tobian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "toy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Topoiyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "toz", - Scope: "I", - Language_Type: "L", - Ref_Name: "To", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taupota", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpc", - Scope: "I", - Language_Type: "L", - Ref_Name: "AzoyúMe'phaa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tippera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tarpia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpi", - Part2b: "tpi", - Part2t: "tpi", - Scope: "I", - Language_Type: "L", - Ref_Name: "TokPisin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tapieté", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tupinikin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpl", - Scope: "I", - Language_Type: "L", - Ref_Name: "TlacoapaMe'phaa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tampulma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tupinambá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpo", - Scope: "I", - Language_Type: "L", - Ref_Name: "TaiPao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpp", - Scope: "I", - Language_Type: "L", - Ref_Name: "PisafloresTepehua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tukpa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tuparí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpt", - Scope: "I", - Language_Type: "L", - Ref_Name: "TlachichilcoTepehua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tampuan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tanapag", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpx", - Scope: "I", - Language_Type: "L", - Ref_Name: "AcatepecMe'phaa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Trumai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tpz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tinputz", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tqb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tembé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tql", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lehali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tqm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Turumsa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tqn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tenino", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tqo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Toaripi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tqp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tomoip", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tqq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tunni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tqr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Torona", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tqt", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternTotonac", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tqu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Touo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tqw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tonkawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tra", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tirahi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Terebu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CopalaTriqui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Turi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tre", - Scope: "I", - Language_Type: "L", - Ref_Name: "EastTarangan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trf", - Scope: "I", - Language_Type: "L", - Ref_Name: "TrinidadianCreoleEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trg", - Scope: "I", - Language_Type: "L", - Ref_Name: "LishánDidán", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "trh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Turaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tri", - Scope: "I", - Language_Type: "L", - Ref_Name: "Trió", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Toram", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trl", - Scope: "I", - Language_Type: "L", - Ref_Name: "TravellerScottish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tregami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Trinitario", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tro", - Scope: "I", - Language_Type: "L", - Ref_Name: "TaraoNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trp", - Scope: "I", - Language_Type: "L", - Ref_Name: "KokBorok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trq", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanMartínItunyosoTriqui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taushiro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trs", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChicahuaxtlaTriqui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tunggare", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tru", - Scope: "I", - Language_Type: "L", - Ref_Name: "Turoyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sediq", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Torwali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "trx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tringgus-SembaanBidayuh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "try", - Scope: "I", - Language_Type: "E", - Ref_Name: "Turung", - Comment: null, - }, - { - Id: "trz", - Scope: "I", - Language_Type: "E", - Ref_Name: "Torá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsaangi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsamai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tswa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsakonian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tse", - Scope: "I", - Language_Type: "L", - Ref_Name: "TunisianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tausug", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsuvan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsi", - Part2b: "tsi", - Part2t: "tsi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsimshian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tshangla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tseku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ts'ün-Lao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsm", - Scope: "I", - Language_Type: "L", - Ref_Name: "TurkishSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsn", - Part2b: "tsn", - Part2t: "tsn", - Part1: "tn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tswana", - Comment: null, - }, - { - Id: "tso", - Part2b: "tso", - Part2t: "tso", - Part1: "ts", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsonga", - Comment: null, - }, - { - Id: "tsp", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernToussian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsq", - Scope: "I", - Language_Type: "L", - Ref_Name: "ThaiSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Akei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tss", - Scope: "I", - Language_Type: "L", - Ref_Name: "TaiwanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tst", - Scope: "I", - Language_Type: "L", - Ref_Name: "TondiSongwayKiini", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsogo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsishingini", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mubami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsy", - Scope: "I", - Language_Type: "L", - Ref_Name: "TebulSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tsz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Purepecha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tta", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tutelo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gaa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tektiteko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tauade", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tte", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bwanabwana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tuotomb", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tutong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tth", - Scope: "I", - Language_Type: "L", - Ref_Name: "UpperTa'oih", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tti", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tobati", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tooro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Totoro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Totela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttm", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernTutchone", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Towei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tto", - Scope: "I", - Language_Type: "L", - Ref_Name: "LowerTa'oih", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tombelala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttq", - Scope: "I", - Language_Type: "L", - Ref_Name: "TawallammatTamajaq", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tts", - Scope: "I", - Language_Type: "L", - Ref_Name: "NortheasternThai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttt", - Scope: "I", - Language_Type: "L", - Ref_Name: "MuslimTat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Torau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Titan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttw", - Scope: "I", - Language_Type: "L", - Ref_Name: "LongWat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tty", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sikaritai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ttz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tua", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wiarumus", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tub", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tübatulabal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tuc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mutu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tud", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tuxá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tue", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tuyuca", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tuf", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralTunebo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tug", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tunia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tuh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taulil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tui", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tupuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tuj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tugutil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tuk", - Part2b: "tuk", - Part2t: "tuk", - Part1: "tk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Turkmen", - Comment: null, - }, - { - Id: "tul", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tum", - Part2b: "tum", - Part2t: "tum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tumbuka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tun", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tunica", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tuo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tucano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tuq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tedaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tur", - Part2b: "tur", - Part2t: "tur", - Part1: "tr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Turkish", - Comment: null, - }, - { - Id: "tus", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tuscarora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tuu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tututni", - Comment: null, - }, - { - Id: "tuv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Turkana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tux", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tuxináwa", - Comment: null, - }, - { - Id: "tuy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tugen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tuz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Turka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tva", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vaghua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tvd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tsuvadi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tve", - Scope: "I", - Language_Type: "L", - Ref_Name: "Te'un", - Comment: null, - }, - { - Id: "tvi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tulai", - Comment: null, - }, - { - Id: "tvk", - Scope: "I", - Language_Type: "L", - Ref_Name: "SoutheastAmbrym", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tvl", - Part2b: "tvl", - Part2t: "tvl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tuvalu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tvm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tela-Masbuar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tvn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tavoyan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tvo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tidore", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tvs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Taveta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tvt", - Scope: "I", - Language_Type: "L", - Ref_Name: "TutsaNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tvu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tunen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tvw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sedoa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tvx", - Scope: "I", - Language_Type: "E", - Ref_Name: "Taivoan", - Comment: null, - }, - { - Id: "tvy", - Scope: "I", - Language_Type: "E", - Ref_Name: "TimorPidgin", - Comment: null, - }, - { - Id: "twa", - Scope: "I", - Language_Type: "E", - Ref_Name: "Twana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twb", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternTawbuid", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Teshenawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Twents", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tewa(Indonesia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twf", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernTiwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tereweng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twh", - Scope: "I", - Language_Type: "L", - Ref_Name: "TaiDón", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twi", - Part2b: "twi", - Part2t: "twi", - Part1: "tw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Twi", - Comment: null, - }, - { - Id: "twl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tawara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twm", - Scope: "I", - Language_Type: "L", - Ref_Name: "TawangMonpa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Twendi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "two", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tswapong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tasawaq", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twr", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthwesternTarahumara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Turiwára", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Termanu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tww", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tuwari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tewe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "twy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tawoyan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tombonuo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txb", - Scope: "I", - Language_Type: "H", - Ref_Name: "TokharianB", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tsetsaut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Totoli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txg", - Scope: "I", - Language_Type: "H", - Ref_Name: "Tangut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txh", - Scope: "I", - Language_Type: "H", - Ref_Name: "Thracian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ikpeng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tarjumo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tomini", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txn", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestTarangan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Toto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tii", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txr", - Scope: "I", - Language_Type: "H", - Ref_Name: "Tartessian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tonsea", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Citak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kayapó", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tatana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "txy", - Scope: "I", - Language_Type: "L", - Ref_Name: "TanosyMalagasy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tya", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tauya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tye", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kyanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tyh", - Scope: "I", - Language_Type: "L", - Ref_Name: "O'du", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tyi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Teke-Tsaayi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tyj", - Scope: "I", - Language_Type: "L", - Ref_Name: "TaiDo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tyl", - Scope: "I", - Language_Type: "L", - Ref_Name: "ThuLao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tyn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kombai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "typ", - Scope: "I", - Language_Type: "E", - Ref_Name: "Thaypan", - Comment: null, - }, - { - Id: "tyr", - Scope: "I", - Language_Type: "L", - Ref_Name: "TaiDaeng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tys", - Scope: "I", - Language_Type: "L", - Ref_Name: "TàySaPa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tyt", - Scope: "I", - Language_Type: "L", - Ref_Name: "TàyTac", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tyu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tyv", - Part2b: "tyv", - Part2t: "tyv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tuvinian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tyx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Teke-Tyee", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tyy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tiyaa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tyz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tày", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tza", - Scope: "I", - Language_Type: "L", - Ref_Name: "TanzanianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tzh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tzeltal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tzj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tz'utujil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tzl", - Scope: "I", - Language_Type: "C", - Ref_Name: "Talossan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tzm", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralAtlasTamazight", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tzn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tugun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tzo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tzotzil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "tzx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tabriak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uam", - Scope: "I", - Language_Type: "E", - Ref_Name: "Uamué", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uan", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uar", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tairuma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uba", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ubang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ubi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ubi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ubl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buhi'nonBikol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ubr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ubir", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ubu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Umbu-Ungu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uby", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ubykh", - Comment: null, - }, - { - Id: "uda", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ude", - Scope: "I", - Language_Type: "L", - Ref_Name: "Udihe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "udg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Muduga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "udi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Udi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "udj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ujir", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "udl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wuzlam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "udm", - Part2b: "udm", - Part2t: "udm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Udmurt", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "udu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uduk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ues", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kioko", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ufi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ufim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uga", - Part2b: "uga", - Part2t: "uga", - Scope: "I", - Language_Type: "H", - Ref_Name: "Ugaritic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ugb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kuku-Ugbanh", - Comment: null, - }, - { - Id: "uge", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ughele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ugh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kubachi", - Comment: null, - }, - { - Id: "ugn", - Scope: "I", - Language_Type: "L", - Ref_Name: "UgandanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ugo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ugong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ugy", - Scope: "I", - Language_Type: "L", - Ref_Name: "UruguayanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uha", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uhami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uhn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Damal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uig", - Part2b: "uig", - Part2t: "uig", - Part1: "ug", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uighur", - Comment: null, - }, - { - Id: "uis", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uisai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uiv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iyive", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uji", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tanjijili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaburi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ukg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ukuriguma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ukh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ukhwejo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uki", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kui(India)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ukk", - Scope: "I", - Language_Type: "L", - Ref_Name: "MuakSa-aak", - Comment: null, - }, - { - Id: "ukl", - Scope: "I", - Language_Type: "L", - Ref_Name: "UkrainianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ukp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ukpe-Bayobiri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ukq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ukwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ukr", - Part2b: "ukr", - Part2t: "ukr", - Part1: "uk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ukrainian", - Comment: null, - }, - { - Id: "uks", - Scope: "I", - Language_Type: "L", - Ref_Name: "Urubú-KaaporSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uku", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ukue", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ukv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ukw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ukwuani-Aboh-Ndoni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uky", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kuuk-Yak", - Comment: null, - }, - { - Id: "ula", - Scope: "I", - Language_Type: "L", - Ref_Name: "Fungwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ulb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ulukwumi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ulc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ulch", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ule", - Scope: "I", - Language_Type: "E", - Ref_Name: "Lule", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ulf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Usku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uli", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ulithian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ulk", - Scope: "I", - Language_Type: "L", - Ref_Name: "MeriamMir", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ull", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ullatan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ulm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ulumanda'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uln", - Scope: "I", - Language_Type: "L", - Ref_Name: "Unserdeutsch", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ulu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uma'Lung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ulw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ulwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uly", - Scope: "I", - Language_Type: "L", - Ref_Name: "Buli", - Comment: null, - }, - { - Id: "uma", - Scope: "I", - Language_Type: "L", - Ref_Name: "Umatilla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "umb", - Part2b: "umb", - Part2t: "umb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Umbundu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "umc", - Scope: "I", - Language_Type: "H", - Ref_Name: "Marrucinian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "umd", - Scope: "I", - Language_Type: "E", - Ref_Name: "Umbindhamu", - Comment: null, - }, - { - Id: "umg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Morrobalama", - Comment: null, - }, - { - Id: "umi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ukit", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "umm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Umon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "umn", - Scope: "I", - Language_Type: "L", - Ref_Name: "MakyanNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "umo", - Scope: "I", - Language_Type: "E", - Ref_Name: "Umotína", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ump", - Scope: "I", - Language_Type: "L", - Ref_Name: "Umpila", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "umr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Umbugarla", - Comment: null, - }, - { - Id: "ums", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pendau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "umu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Munsee", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "una", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthWatut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "und", - Part2b: "und", - Part2t: "und", - Scope: "S", - Language_Type: "S", - Ref_Name: "Undetermined", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "une", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uneme", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ung", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngarinyin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uni", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uni", - Comment: null, - }, - { - Id: "unk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Enawené-Nawé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "unm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Unami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "unn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kurnai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "unr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mundari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "unu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Unubahe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "unx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Munda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "unz", - Scope: "I", - Language_Type: "L", - Ref_Name: "UndeKaili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uon", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kulon", - Comment: null, - }, - { - Id: "upi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Umeda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "upv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uripiv-Wala-Rano-Atchin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ura", - Scope: "I", - Language_Type: "L", - Ref_Name: "Urarina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "urb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Urubú-Kaapor", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "urc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Urningangg", - Comment: null, - }, - { - Id: "urd", - Part2b: "urd", - Part2t: "urd", - Part1: "ur", - Scope: "I", - Language_Type: "L", - Ref_Name: "Urdu", - Comment: null, - }, - { - Id: "ure", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "urf", - Scope: "I", - Language_Type: "E", - Ref_Name: "Uradhi", - Comment: null, - }, - { - Id: "urg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Urigina", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "urh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Urhobo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uri", - Scope: "I", - Language_Type: "L", - Ref_Name: "Urim", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "urk", - Scope: "I", - Language_Type: "L", - Ref_Name: "UrakLawoi'", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "url", - Scope: "I", - Language_Type: "L", - Ref_Name: "Urali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "urm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Urapmin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "urn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uruangnirin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uro", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ura(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "urp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uru-Pa-In", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "urr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lehalurup", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "urt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Urat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uru", - Scope: "I", - Language_Type: "E", - Ref_Name: "Urumi", - Comment: null, - }, - { - Id: "urv", - Scope: "I", - Language_Type: "E", - Ref_Name: "Uruava", - Comment: null, - }, - { - Id: "urw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sop", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "urx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Urimo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ury", - Scope: "I", - Language_Type: "L", - Ref_Name: "Orya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "urz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uru-Eu-Wau-Wau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "usa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Usarufa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ush", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ushojo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "usi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Usui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "usk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Usaghade", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "usp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uspanteco", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uss", - Scope: "I", - Language_Type: "L", - Ref_Name: "us-Saare", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "usu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uta", - Scope: "I", - Language_Type: "L", - Ref_Name: "Otank", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ute", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ute-SouthernPaiute", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uth", - Scope: "I", - Language_Type: "L", - Ref_Name: "ut-Hun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "utp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Amba(SolomonIslands)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "utr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Etulo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "utu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Utu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Urum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uur", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ura(Vanuatu)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uuu", - Scope: "I", - Language_Type: "L", - Ref_Name: "U", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uve", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestUvean", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uvh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uvl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lote", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuku-Uwanh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uya", - Scope: "I", - Language_Type: "L", - Ref_Name: "Doko-Uyanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uzb", - Part2b: "uzb", - Part2t: "uzb", - Part1: "uz", - Scope: "M", - Language_Type: "L", - Ref_Name: "Uzbek", - Comment: null, - }, - { - Id: "uzn", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernUzbek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "uzs", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernUzbek", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vaa", - Scope: "I", - Language_Type: "L", - Ref_Name: "VaagriBooli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vae", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vale", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vaf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vafsi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vagla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vah", - Scope: "I", - Language_Type: "L", - Ref_Name: "Varhadi-Nagpuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vai", - Part2b: "vai", - Part2t: "vai", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vaj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sekele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "val", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vehes", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vam", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vanimo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "van", - Scope: "I", - Language_Type: "L", - Ref_Name: "Valman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vao", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vap", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vaiphei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "var", - Scope: "I", - Language_Type: "L", - Ref_Name: "Huarijio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vas", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vasavi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vau", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vanuma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vav", - Scope: "I", - Language_Type: "L", - Ref_Name: "Varli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vay", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wayu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vbb", - Scope: "I", - Language_Type: "L", - Ref_Name: "SoutheastBabar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vbk", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthwesternBontok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vec", - Scope: "I", - Language_Type: "L", - Ref_Name: "Venetian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ved", - Scope: "I", - Language_Type: "L", - Ref_Name: "Veddah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vel", - Scope: "I", - Language_Type: "L", - Ref_Name: "Veluws", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vem", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vemgo-Mabas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ven", - Part2b: "ven", - Part2t: "ven", - Part1: "ve", - Scope: "I", - Language_Type: "L", - Ref_Name: "Venda", - Comment: null, - }, - { - Id: "veo", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ventureño", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vep", - Scope: "I", - Language_Type: "L", - Ref_Name: "Veps", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ver", - Scope: "I", - Language_Type: "L", - Ref_Name: "MomJango", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vgr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vaghri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vgt", - Scope: "I", - Language_Type: "L", - Ref_Name: "VlaamseGebarentaal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vic", - Scope: "I", - Language_Type: "L", - Ref_Name: "VirginIslandsCreoleEnglish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vid", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vidunda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vie", - Part2b: "vie", - Part2t: "vie", - Part1: "vi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vietnamese", - Comment: null, - }, - { - Id: "vif", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vig", - Scope: "I", - Language_Type: "L", - Ref_Name: "Viemo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vil", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vilela", - Comment: null, - }, - { - Id: "vin", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vinza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vis", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vishavan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vit", - Scope: "I", - Language_Type: "L", - Ref_Name: "Viti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "viv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iduna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vjk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bajjika", - Comment: null, - }, - { - Id: "vka", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kariyarra", - Comment: null, - }, - { - Id: "vkj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kujarge", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vkk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vkl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kulisusu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vkm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kamakan", - Comment: null, - }, - { - Id: "vkn", - Scope: "I", - Language_Type: "L", - Ref_Name: "KoroNulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vko", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kodeoha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vkp", - Scope: "I", - Language_Type: "L", - Ref_Name: "KorlaiCreolePortuguese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vkt", - Scope: "I", - Language_Type: "L", - Ref_Name: "TenggarongKutaiMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vku", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kurrama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vkz", - Scope: "I", - Language_Type: "L", - Ref_Name: "KoroZuba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vlp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Valpei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vls", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vlaams", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vma", - Scope: "I", - Language_Type: "E", - Ref_Name: "Martuyhunira", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vmb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Barbaram", - Comment: null, - }, - { - Id: "vmc", - Scope: "I", - Language_Type: "L", - Ref_Name: "JuxtlahuacaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vmd", - Scope: "I", - Language_Type: "L", - Ref_Name: "MuduKoraga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vme", - Scope: "I", - Language_Type: "L", - Ref_Name: "EastMasela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vmf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mainfränkisch", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vmg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lungalunga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vmh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maraghei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vmi", - Scope: "I", - Language_Type: "E", - Ref_Name: "Miwa", - Comment: null, - }, - { - Id: "vmj", - Scope: "I", - Language_Type: "L", - Ref_Name: "IxtayutlaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vmk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Makhuwa-Shirima", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vml", - Scope: "I", - Language_Type: "E", - Ref_Name: "Malgana", - Comment: null, - }, - { - Id: "vmm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MitlatongoMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vmp", - Scope: "I", - Language_Type: "L", - Ref_Name: "SoyaltepecMazatec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vmq", - Scope: "I", - Language_Type: "L", - Ref_Name: "SoyaltepecMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vmr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marenje", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vms", - Scope: "I", - Language_Type: "E", - Ref_Name: "Moksela", - Comment: null, - }, - { - Id: "vmu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Muluridyi", - Comment: null, - }, - { - Id: "vmv", - Scope: "I", - Language_Type: "E", - Ref_Name: "ValleyMaidu", - Comment: null, - }, - { - Id: "vmw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Makhuwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vmx", - Scope: "I", - Language_Type: "L", - Ref_Name: "TamazolaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vmy", - Scope: "I", - Language_Type: "L", - Ref_Name: "AyautlaMazatec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vmz", - Scope: "I", - Language_Type: "L", - Ref_Name: "MazatlánMazatec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vnk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vnm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vinmavis", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vnp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vunapu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vol", - Part2b: "vol", - Part2t: "vol", - Part1: "vo", - Scope: "I", - Language_Type: "C", - Ref_Name: "Volapük", - Comment: null, - }, - { - Id: "vor", - Scope: "I", - Language_Type: "L", - Ref_Name: "Voro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vot", - Part2b: "vot", - Part2t: "vot", - Scope: "I", - Language_Type: "L", - Ref_Name: "Votic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vra", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vera'a", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vro", - Scope: "I", - Language_Type: "L", - Ref_Name: "Võro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vrs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Varisi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vrt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Burmbar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vsi", - Scope: "I", - Language_Type: "L", - Ref_Name: "MoldovaSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vsl", - Scope: "I", - Language_Type: "L", - Ref_Name: "VenezuelanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vsn", - Scope: "I", - Language_Type: "H", - Ref_Name: "VedicSanskrit", - Comment: null, - }, - { - Id: "vsv", - Scope: "I", - Language_Type: "L", - Ref_Name: "ValencianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vto", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vitou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vumbu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vun", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vunjo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vut", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vute", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "vwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awa(China)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "waa", - Scope: "I", - Language_Type: "L", - Ref_Name: "WallaWalla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wab", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wab", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wac", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wasco-Wishram", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wad", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wamesa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wae", - Scope: "I", - Language_Type: "L", - Ref_Name: "Walser", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "waf", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wakoná", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wa'ema", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wah", - Scope: "I", - Language_Type: "L", - Ref_Name: "Watubela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wai", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wares", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "waj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waffa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wal", - Part2b: "wal", - Part2t: "wal", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wolaytta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wam", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wampanoag", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wan", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wao", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wappo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wap", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wapishana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "waq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wagiman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "war", - Part2b: "war", - Part2t: "war", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waray(Philippines)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "was", - Part2b: "was", - Part2t: "was", - Scope: "I", - Language_Type: "L", - Ref_Name: "Washo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wat", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaninuwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wau", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waurá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wav", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "waw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waiwai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wax", - Scope: "I", - Language_Type: "L", - Ref_Name: "Watam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "way", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wayana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "waz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wampur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wba", - Scope: "I", - Language_Type: "L", - Ref_Name: "Warao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wabo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waritai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wanda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vwanji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Alagwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waigali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wakhi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Warlpiri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waddar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wagdi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbs", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestBengalSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Warnman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wajarri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wbw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Woi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wca", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yanomámi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wci", - Scope: "I", - Language_Type: "L", - Ref_Name: "WaciGbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wdd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wandji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wdg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wadaginam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wdj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wadjiginy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wdk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wadikali", - Comment: null, - }, - { - Id: "wdt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wendat", - Comment: null, - }, - { - Id: "wdu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wadjigu", - Comment: null, - }, - { - Id: "wdy", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wadjabangayi", - Comment: null, - }, - { - Id: "wea", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wewaw", - Comment: null, - }, - { - Id: "wec", - Scope: "I", - Language_Type: "L", - Ref_Name: "WèWestern", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wed", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wedau", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "weg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wergaia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "weh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Weh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wei", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kiunum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wem", - Scope: "I", - Language_Type: "L", - Ref_Name: "WemeGbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "weo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wemale", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wep", - Scope: "I", - Language_Type: "L", - Ref_Name: "Westphalien", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wer", - Scope: "I", - Language_Type: "L", - Ref_Name: "Weri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wes", - Scope: "I", - Language_Type: "L", - Ref_Name: "CameroonPidgin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wet", - Scope: "I", - Language_Type: "L", - Ref_Name: "Perai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "weu", - Scope: "I", - Language_Type: "L", - Ref_Name: "RawngtuChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wew", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wejewa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wfg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yafi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wga", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wagaya", - Comment: null, - }, - { - Id: "wgb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wagawaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wgg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wangkangurru", - Comment: null, - }, - { - Id: "wgi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wahgi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wgo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waigeo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wgu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wirangu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wgy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Warrgamay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wha", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouUpaa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "whg", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthWahgi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "whk", - Scope: "I", - Language_Type: "L", - Ref_Name: "WahauKenyah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "whu", - Scope: "I", - Language_Type: "L", - Ref_Name: "WahauKayan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wib", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernToussian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wic", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wichita", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wie", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wik-Epa", - Comment: null, - }, - { - Id: "wif", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wik-Keyangan", - Comment: null, - }, - { - Id: "wig", - Scope: "I", - Language_Type: "L", - Ref_Name: "WikNgathan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wih", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wik-Me'anha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wii", - Scope: "I", - Language_Type: "L", - Ref_Name: "Minidien", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wij", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wik-Iiyanh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wik", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wikalkan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wil", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wilawila", - Comment: null, - }, - { - Id: "wim", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wik-Mungkan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "win", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ho-Chunk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wir", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wiraféd", - Comment: null, - }, - { - Id: "wiu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wiru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wiv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Vitu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wiy", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wiyot", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wja", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waja", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wji", - Scope: "I", - Language_Type: "L", - Ref_Name: "Warji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wka", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kw'adza", - Comment: null, - }, - { - Id: "wkb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kumbaran", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wkd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wakde", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wkl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalanadi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wkr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Keerray-Woorroong", - Comment: null, - }, - { - Id: "wku", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kunduvadi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wkw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wakawaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wky", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wangkayutyuru", - Comment: null, - }, - { - Id: "wla", - Scope: "I", - Language_Type: "L", - Ref_Name: "Walio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wlc", - Scope: "I", - Language_Type: "L", - Ref_Name: "MwaliComorian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wle", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wolane", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wlg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kunbarlang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wlh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Welaun", - Comment: null, - }, - { - Id: "wli", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waioli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wlk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wailaki", - Comment: null, - }, - { - Id: "wll", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wali(Sudan)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wlm", - Scope: "I", - Language_Type: "H", - Ref_Name: "MiddleWelsh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wln", - Part2b: "wln", - Part2t: "wln", - Part1: "wa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Walloon", - Comment: null, - }, - { - Id: "wlo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wolio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wlr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wailapa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wls", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wallisian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wlu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wuliwuli", - Comment: null, - }, - { - Id: "wlv", - Scope: "I", - Language_Type: "L", - Ref_Name: "WichíLhamtésVejoz", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wlw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Walak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wlx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wali(Ghana)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wly", - Scope: "I", - Language_Type: "E", - Ref_Name: "Waling", - Comment: null, - }, - { - Id: "wma", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mawa(Nigeria)", - Comment: null, - }, - { - Id: "wmb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wambaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wmc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wamas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wmd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mamaindé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wme", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wambule", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wmg", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternMinyag", - Comment: null, - }, - { - Id: "wmh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waima'a", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wmi", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wamin", - Comment: null, - }, - { - Id: "wmm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maiwa(Indonesia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wmn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Waamwang", - Comment: null, - }, - { - Id: "wmo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wom(PapuaNewGuinea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wms", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wambon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wmt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Walmajarri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wmw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mwani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wmx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Womo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wnb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mokati", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wnc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wantoat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wnd", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wandarang", - Comment: null, - }, - { - Id: "wne", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waneci", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wng", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wanggom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wni", - Scope: "I", - Language_Type: "L", - Ref_Name: "NdzwaniComorian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wnk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wanukaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wnm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wanggamala", - Comment: null, - }, - { - Id: "wnn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wunumara", - Comment: null, - }, - { - Id: "wno", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wnp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wanap", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wnu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Usan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wnw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wintu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wny", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wanyi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "woa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuwema", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wob", - Scope: "I", - Language_Type: "L", - Ref_Name: "WèNorthern", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "woc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wogeo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wod", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wolani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "woe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Woleaian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wof", - Scope: "I", - Language_Type: "L", - Ref_Name: "GambianWolof", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wog", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wogamusin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "woi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wok", - Scope: "I", - Language_Type: "L", - Ref_Name: "Longto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wol", - Part2b: "wol", - Part2t: "wol", - Part1: "wo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wolof", - Comment: null, - }, - { - Id: "wom", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wom(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "won", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wongo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "woo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manombai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wor", - Scope: "I", - Language_Type: "L", - Ref_Name: "Woria", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wos", - Scope: "I", - Language_Type: "L", - Ref_Name: "HangaHundi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wow", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wawonii", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "woy", - Scope: "I", - Language_Type: "E", - Ref_Name: "Weyto", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wpc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maco", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wrb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Waluwarra", - Comment: null, - }, - { - Id: "wrg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Warungu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wrh", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wiradjuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wri", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wariyangga", - Comment: null, - }, - { - Id: "wrk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Garrwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wrl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Warlmanpa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wrm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Warumungu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wrn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Warnang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wro", - Scope: "I", - Language_Type: "E", - Ref_Name: "Worrorra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wrp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waropen", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wrr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wardaman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wrs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waris", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wru", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wrv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waruna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wrw", - Scope: "I", - Language_Type: "E", - Ref_Name: "GuguWarra", - Comment: null, - }, - { - Id: "wrx", - Scope: "I", - Language_Type: "L", - Ref_Name: "WaeRana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wry", - Scope: "I", - Language_Type: "L", - Ref_Name: "Merwari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wrz", - Scope: "I", - Language_Type: "E", - Ref_Name: "Waray(Australia)", - Comment: null, - }, - { - Id: "wsa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Warembori", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wsg", - Scope: "I", - Language_Type: "L", - Ref_Name: "AdilabadGondi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wsi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wusi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wsk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waskia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wsr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Owenia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wss", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wasa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wsu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wasu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wsv", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wotapuri-Katarqalai", - Comment: null, - }, - { - Id: "wtb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Matambwe", - Comment: null, - }, - { - Id: "wtf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Watiwa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wth", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wathawurrung", - Comment: null, - }, - { - Id: "wti", - Scope: "I", - Language_Type: "L", - Ref_Name: "Berta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wtk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Watakataui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wtm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mewati", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wtw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wotu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wua", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wikngenchera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wub", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wunambal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wud", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wudu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wuh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wutunhua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wul", - Scope: "I", - Language_Type: "L", - Ref_Name: "Silimo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wumbvu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wun", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bungu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wur", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wurrugu", - Comment: null, - }, - { - Id: "wut", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wutung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wuu", - Scope: "I", - Language_Type: "L", - Ref_Name: "WuChinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wuv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wuvulu-Aua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wux", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wulna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wuy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wauyai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wwb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wakabunga", - Comment: null, - }, - { - Id: "wwo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wetamut", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wwr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Warrwa", - Comment: null, - }, - { - Id: "www", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wxa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Waxianghua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wxw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wardandi", - Comment: null, - }, - { - Id: "wyb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wangaaybuwan-Ngiyambaa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wyi", - Scope: "I", - Language_Type: "E", - Ref_Name: "Woiwurrung", - Comment: null, - }, - { - Id: "wym", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wymysorys", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wyn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wyandot", - Comment: null, - }, - { - Id: "wyr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wayoró", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "wyy", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternFijian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xaa", - Scope: "I", - Language_Type: "H", - Ref_Name: "AndalusianArabic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xab", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sambe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xac", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kachari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xad", - Scope: "I", - Language_Type: "E", - Ref_Name: "Adai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xae", - Scope: "I", - Language_Type: "H", - Ref_Name: "Aequian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xag", - Scope: "I", - Language_Type: "H", - Ref_Name: "Aghwan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xai", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kaimbé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xaj", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ararandewára", - Comment: null, - }, - { - Id: "xak", - Scope: "I", - Language_Type: "E", - Ref_Name: "Máku", - Comment: null, - }, - { - Id: "xal", - Part2b: "xal", - Part2t: "xal", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalmyk", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xam", - Scope: "I", - Language_Type: "E", - Ref_Name: "ǀXam", - Comment: null, - }, - { - Id: "xan", - Scope: "I", - Language_Type: "L", - Ref_Name: "Xamtanga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xao", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xap", - Scope: "I", - Language_Type: "E", - Ref_Name: "Apalachee", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xaq", - Scope: "I", - Language_Type: "H", - Ref_Name: "Aquitanian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xar", - Scope: "I", - Language_Type: "E", - Ref_Name: "Karami", - Comment: null, - }, - { - Id: "xas", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kamas", - Comment: null, - }, - { - Id: "xat", - Scope: "I", - Language_Type: "L", - Ref_Name: "Katawixi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xau", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kauwera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xav", - Scope: "I", - Language_Type: "L", - Ref_Name: "Xavánte", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xaw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kawaiisu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xay", - Scope: "I", - Language_Type: "L", - Ref_Name: "KayanMahakam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xbb", - Scope: "I", - Language_Type: "E", - Ref_Name: "LowerBurdekin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xbc", - Scope: "I", - Language_Type: "H", - Ref_Name: "Bactrian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xbd", - Scope: "I", - Language_Type: "E", - Ref_Name: "Bindal", - Comment: null, - }, - { - Id: "xbe", - Scope: "I", - Language_Type: "E", - Ref_Name: "Bigambal", - Comment: null, - }, - { - Id: "xbg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Bunganditj", - Comment: null, - }, - { - Id: "xbi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kombio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xbj", - Scope: "I", - Language_Type: "E", - Ref_Name: "Birrpayi", - Comment: null, - }, - { - Id: "xbm", - Scope: "I", - Language_Type: "H", - Ref_Name: "MiddleBreton", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xbn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kenaboi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xbo", - Scope: "I", - Language_Type: "H", - Ref_Name: "Bolgarian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xbp", - Scope: "I", - Language_Type: "E", - Ref_Name: "Bibbulman", - Comment: null, - }, - { - Id: "xbr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kambera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xbw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kambiwá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xby", - Scope: "I", - Language_Type: "L", - Ref_Name: "Batjala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xcb", - Scope: "I", - Language_Type: "H", - Ref_Name: "Cumbric", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xcc", - Scope: "I", - Language_Type: "H", - Ref_Name: "Camunic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xce", - Scope: "I", - Language_Type: "H", - Ref_Name: "Celtiberian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xcg", - Scope: "I", - Language_Type: "H", - Ref_Name: "CisalpineGaulish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xch", - Scope: "I", - Language_Type: "E", - Ref_Name: "Chemakum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xcl", - Scope: "I", - Language_Type: "H", - Ref_Name: "ClassicalArmenian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xcm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Comecrudo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xcn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Cotoname", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xco", - Scope: "I", - Language_Type: "H", - Ref_Name: "Chorasmian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xcr", - Scope: "I", - Language_Type: "H", - Ref_Name: "Carian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xct", - Scope: "I", - Language_Type: "H", - Ref_Name: "ClassicalTibetan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xcu", - Scope: "I", - Language_Type: "H", - Ref_Name: "Curonian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xcv", - Scope: "I", - Language_Type: "E", - Ref_Name: "Chuvantsy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xcw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Coahuilteco", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xcy", - Scope: "I", - Language_Type: "E", - Ref_Name: "Cayuse", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xda", - Scope: "I", - Language_Type: "L", - Ref_Name: "Darkinyung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xdc", - Scope: "I", - Language_Type: "H", - Ref_Name: "Dacian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xdk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Dharuk", - Comment: null, - }, - { - Id: "xdm", - Scope: "I", - Language_Type: "H", - Ref_Name: "Edomite", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xdo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwandu", - Comment: null, - }, - { - Id: "xdq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaitag", - Comment: null, - }, - { - Id: "xdy", - Scope: "I", - Language_Type: "L", - Ref_Name: "MalayicDayak", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xeb", - Scope: "I", - Language_Type: "H", - Ref_Name: "Eblan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xed", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hdi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xeg", - Scope: "I", - Language_Type: "E", - Ref_Name: "ǁXegwi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xel", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kelo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xem", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kembayan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xep", - Scope: "I", - Language_Type: "H", - Ref_Name: "Epi-Olmec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xer", - Scope: "I", - Language_Type: "L", - Ref_Name: "Xerénte", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xes", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kesawai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xet", - Scope: "I", - Language_Type: "L", - Ref_Name: "Xetá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xeu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Keoru-Ahia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xfa", - Scope: "I", - Language_Type: "H", - Ref_Name: "Faliscan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xga", - Scope: "I", - Language_Type: "H", - Ref_Name: "Galatian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xgb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Gbin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xgd", - Scope: "I", - Language_Type: "E", - Ref_Name: "Gudang", - Comment: null, - }, - { - Id: "xgf", - Scope: "I", - Language_Type: "E", - Ref_Name: "Gabrielino-Fernandeño", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xgg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Goreng", - Comment: null, - }, - { - Id: "xgi", - Scope: "I", - Language_Type: "E", - Ref_Name: "Garingbal", - Comment: null, - }, - { - Id: "xgl", - Scope: "I", - Language_Type: "H", - Ref_Name: "Galindan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xgm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Dharumbal", - Comment: null, - }, - { - Id: "xgr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Garza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xgu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Unggumi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xgw", - Scope: "I", - Language_Type: "E", - Ref_Name: "Guwa", - Comment: null, - }, - { - Id: "xha", - Scope: "I", - Language_Type: "H", - Ref_Name: "Harami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xhc", - Scope: "I", - Language_Type: "H", - Ref_Name: "Hunnic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xhd", - Scope: "I", - Language_Type: "H", - Ref_Name: "Hadrami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xhe", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khetrani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xhm", - Scope: "I", - Language_Type: "H", - Ref_Name: "MiddleKhmer(1400to1850CE)", - Comment: null, - }, - { - Id: "xho", - Part2b: "xho", - Part2t: "xho", - Part1: "xh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Xhosa", - Comment: null, - }, - { - Id: "xhr", - Scope: "I", - Language_Type: "H", - Ref_Name: "Hernican", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xht", - Scope: "I", - Language_Type: "H", - Ref_Name: "Hattic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xhu", - Scope: "I", - Language_Type: "H", - Ref_Name: "Hurrian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xhv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xib", - Scope: "I", - Language_Type: "H", - Ref_Name: "Iberian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xii", - Scope: "I", - Language_Type: "L", - Ref_Name: "Xiri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xil", - Scope: "I", - Language_Type: "H", - Ref_Name: "Illyrian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xin", - Scope: "I", - Language_Type: "E", - Ref_Name: "Xinca", - Comment: null, - }, - { - Id: "xir", - Scope: "I", - Language_Type: "E", - Ref_Name: "Xiriâna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xis", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kisan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xiv", - Scope: "I", - Language_Type: "H", - Ref_Name: "IndusValleyLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xiy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Xipaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xjb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Minjungbal", - Comment: null, - }, - { - Id: "xjt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Jaitmatang", - Comment: null, - }, - { - Id: "xka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalkoti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkb", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernNago", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kho'ini", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkd", - Scope: "I", - Language_Type: "L", - Ref_Name: "MendalamKayan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xke", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kereho", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khengkha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kagoro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xki", - Scope: "I", - Language_Type: "L", - Ref_Name: "KenyanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kajali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kachok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkl", - Scope: "I", - Language_Type: "L", - Ref_Name: "MainstreamKenyah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkn", - Scope: "I", - Language_Type: "L", - Ref_Name: "KayanRiverKayan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xko", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kiorr", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kabatei", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Koroni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Xakriabá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xks", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kumbewaha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kantosi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xku", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaamba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkv", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kgalagadi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kembra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karore", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xky", - Scope: "I", - Language_Type: "L", - Ref_Name: "Uma'Lasan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xkz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kurtokha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xla", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xlb", - Scope: "I", - Language_Type: "E", - Ref_Name: "LoupB", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xlc", - Scope: "I", - Language_Type: "H", - Ref_Name: "Lycian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xld", - Scope: "I", - Language_Type: "H", - Ref_Name: "Lydian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xle", - Scope: "I", - Language_Type: "H", - Ref_Name: "Lemnian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xlg", - Scope: "I", - Language_Type: "H", - Ref_Name: "Ligurian(Ancient)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xli", - Scope: "I", - Language_Type: "H", - Ref_Name: "Liburnian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xln", - Scope: "I", - Language_Type: "H", - Ref_Name: "Alanic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xlo", - Scope: "I", - Language_Type: "E", - Ref_Name: "LoupA", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xlp", - Scope: "I", - Language_Type: "H", - Ref_Name: "Lepontic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xls", - Scope: "I", - Language_Type: "H", - Ref_Name: "Lusitanian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xlu", - Scope: "I", - Language_Type: "H", - Ref_Name: "CuneiformLuwian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xly", - Scope: "I", - Language_Type: "H", - Ref_Name: "Elymian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xma", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mushungulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbonga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Makhuwa-Marrevone", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbudum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xme", - Scope: "I", - Language_Type: "H", - Ref_Name: "Median", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mingrelian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mengaka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kugu-Muminh", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Majera", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmk", - Scope: "I", - Language_Type: "H", - Ref_Name: "AncientMacedonian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xml", - Scope: "I", - Language_Type: "L", - Ref_Name: "MalaysianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmm", - Scope: "I", - Language_Type: "L", - Ref_Name: "ManadoMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmn", - Scope: "I", - Language_Type: "H", - Ref_Name: "ManichaeanMiddlePersian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Morerebi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmp", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kuku-Mu'inh", - Comment: null, - }, - { - Id: "xmq", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kuku-Mangk", - Comment: null, - }, - { - Id: "xmr", - Scope: "I", - Language_Type: "H", - Ref_Name: "Meroitic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xms", - Scope: "I", - Language_Type: "L", - Ref_Name: "MoroccanSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Matbat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kamu", - Comment: null, - }, - { - Id: "xmv", - Scope: "I", - Language_Type: "L", - Ref_Name: "AntankaranaMalagasy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmw", - Scope: "I", - Language_Type: "L", - Ref_Name: "TsimihetyMalagasy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Salawati", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xmy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mayaguduna", - Comment: null, - }, - { - Id: "xmz", - Scope: "I", - Language_Type: "L", - Ref_Name: "MoriBawah", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xna", - Scope: "I", - Language_Type: "H", - Ref_Name: "AncientNorthArabian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xnb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanakanabu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xng", - Scope: "I", - Language_Type: "H", - Ref_Name: "MiddleMongolian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xnh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuanhua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xni", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ngarigu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xnj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngoni(Tanzania)", - Comment: null, - }, - { - Id: "xnk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nganakarti", - Comment: null, - }, - { - Id: "xnm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ngumbarl", - Comment: null, - }, - { - Id: "xnn", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernKankanay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xno", - Scope: "I", - Language_Type: "H", - Ref_Name: "Anglo-Norman", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xnq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ngoni(Mozambique)", - Comment: null, - }, - { - Id: "xnr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kangri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xns", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanashi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xnt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Narragansett", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xnu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Nukunul", - Comment: null, - }, - { - Id: "xny", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyiyaparli", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xnz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kenzi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xoc", - Scope: "I", - Language_Type: "E", - Ref_Name: "O'chi'chi'", - Comment: null, - }, - { - Id: "xod", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kokoda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xog", - Scope: "I", - Language_Type: "L", - Ref_Name: "Soga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xoi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kominimung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xok", - Scope: "I", - Language_Type: "L", - Ref_Name: "Xokleng", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xom", - Scope: "I", - Language_Type: "L", - Ref_Name: "Komo(Sudan)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xon", - Scope: "I", - Language_Type: "L", - Ref_Name: "Konkomba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xoo", - Scope: "I", - Language_Type: "E", - Ref_Name: "Xukurú", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xop", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kopar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xor", - Scope: "I", - Language_Type: "L", - Ref_Name: "Korubo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xow", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kowaki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xpa", - Scope: "I", - Language_Type: "E", - Ref_Name: "Pirriya", - Comment: null, - }, - { - Id: "xpb", - Scope: "I", - Language_Type: "E", - Ref_Name: "NortheasternTasmanian", - Comment: null, - }, - { - Id: "xpc", - Scope: "I", - Language_Type: "H", - Ref_Name: "Pecheneg", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xpd", - Scope: "I", - Language_Type: "E", - Ref_Name: "OysterBayTasmanian", - Comment: null, - }, - { - Id: "xpe", - Scope: "I", - Language_Type: "L", - Ref_Name: "LiberiaKpelle", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xpf", - Scope: "I", - Language_Type: "E", - Ref_Name: "SoutheastTasmanian", - Comment: null, - }, - { - Id: "xpg", - Scope: "I", - Language_Type: "H", - Ref_Name: "Phrygian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xph", - Scope: "I", - Language_Type: "E", - Ref_Name: "NorthMidlandsTasmanian", - Comment: null, - }, - { - Id: "xpi", - Scope: "I", - Language_Type: "H", - Ref_Name: "Pictish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xpj", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mpalitjanh", - Comment: null, - }, - { - Id: "xpk", - Scope: "I", - Language_Type: "L", - Ref_Name: "KulinaPano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xpl", - Scope: "I", - Language_Type: "E", - Ref_Name: "PortSorellTasmanian", - Comment: null, - }, - { - Id: "xpm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Pumpokol", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xpn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kapinawá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xpo", - Scope: "I", - Language_Type: "E", - Ref_Name: "Pochutec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xpp", - Scope: "I", - Language_Type: "H", - Ref_Name: "Puyo-Paekche", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xpq", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mohegan-Pequot", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xpr", - Scope: "I", - Language_Type: "H", - Ref_Name: "Parthian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xps", - Scope: "I", - Language_Type: "H", - Ref_Name: "Pisidian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xpt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Punthamara", - Comment: null, - }, - { - Id: "xpu", - Scope: "I", - Language_Type: "H", - Ref_Name: "Punic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xpv", - Scope: "I", - Language_Type: "E", - Ref_Name: "NorthernTasmanian", - Comment: null, - }, - { - Id: "xpw", - Scope: "I", - Language_Type: "E", - Ref_Name: "NorthwesternTasmanian", - Comment: null, - }, - { - Id: "xpx", - Scope: "I", - Language_Type: "E", - Ref_Name: "SouthwesternTasmanian", - Comment: null, - }, - { - Id: "xpy", - Scope: "I", - Language_Type: "H", - Ref_Name: "Puyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xpz", - Scope: "I", - Language_Type: "E", - Ref_Name: "BrunyIslandTasmanian", - Comment: null, - }, - { - Id: "xqa", - Scope: "I", - Language_Type: "H", - Ref_Name: "Karakhanid", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xqt", - Scope: "I", - Language_Type: "H", - Ref_Name: "Qatabanian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xra", - Scope: "I", - Language_Type: "L", - Ref_Name: "Krahô", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xrb", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternKaraboro", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xrd", - Scope: "I", - Language_Type: "E", - Ref_Name: "Gundungurra", - Comment: null, - }, - { - Id: "xre", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kreye", - Comment: null, - }, - { - Id: "xrg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Minang", - Comment: null, - }, - { - Id: "xri", - Scope: "I", - Language_Type: "L", - Ref_Name: "Krikati-Timbira", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xrm", - Scope: "I", - Language_Type: "H", - Ref_Name: "Armazic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xrn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Arin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xrr", - Scope: "I", - Language_Type: "H", - Ref_Name: "Raetic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xrt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Aranama-Tamique", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xru", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marriammu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xrw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsa", - Scope: "I", - Language_Type: "H", - Ref_Name: "Sabaean", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sambal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsc", - Scope: "I", - Language_Type: "H", - Ref_Name: "Scythian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsd", - Scope: "I", - Language_Type: "H", - Ref_Name: "Sidetic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xse", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sempan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Shamang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sio", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Subi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsl", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthSlavey", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kasem", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sanga(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xso", - Scope: "I", - Language_Type: "E", - Ref_Name: "Solano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Silopi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Makhuwa-Saka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sherpa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sanumá", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsv", - Scope: "I", - Language_Type: "E", - Ref_Name: "Sudovian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xsy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Saisiyat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xta", - Scope: "I", - Language_Type: "L", - Ref_Name: "AlcozaucaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xtb", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChazumbaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xtc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Katcha-Kadugli-Miri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xtd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Diuxi-TilantongoMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xte", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ketengban", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xtg", - Scope: "I", - Language_Type: "H", - Ref_Name: "TransalpineGaulish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xth", - Scope: "I", - Language_Type: "E", - Ref_Name: "YithaYitha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xti", - Scope: "I", - Language_Type: "L", - Ref_Name: "SinicahuaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xtj", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanJuanTeitaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xtl", - Scope: "I", - Language_Type: "L", - Ref_Name: "TijaltepecMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xtm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MagdalenaPeñascoMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xtn", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernTlaxiacoMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xto", - Scope: "I", - Language_Type: "H", - Ref_Name: "TokharianA", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xtp", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanMiguelPiedrasMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xtq", - Scope: "I", - Language_Type: "H", - Ref_Name: "Tumshuqese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xtr", - Scope: "I", - Language_Type: "H", - Ref_Name: "EarlyTripuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xts", - Scope: "I", - Language_Type: "L", - Ref_Name: "SindihuiMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xtt", - Scope: "I", - Language_Type: "L", - Ref_Name: "TacahuaMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xtu", - Scope: "I", - Language_Type: "L", - Ref_Name: "CuyamecalcoMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xtv", - Scope: "I", - Language_Type: "E", - Ref_Name: "Thawa", - Comment: null, - }, - { - Id: "xtw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tawandê", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xty", - Scope: "I", - Language_Type: "L", - Ref_Name: "YoloxochitlMixtec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xua", - Scope: "I", - Language_Type: "L", - Ref_Name: "AluKurumba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xub", - Scope: "I", - Language_Type: "L", - Ref_Name: "BettaKurumba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xud", - Scope: "I", - Language_Type: "E", - Ref_Name: "Umiida", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xug", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kunigami", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xuj", - Scope: "I", - Language_Type: "L", - Ref_Name: "JennuKurumba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xul", - Scope: "I", - Language_Type: "E", - Ref_Name: "Ngunawal", - Comment: null, - }, - { - Id: "xum", - Scope: "I", - Language_Type: "H", - Ref_Name: "Umbrian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xun", - Scope: "I", - Language_Type: "E", - Ref_Name: "Unggaranggu", - Comment: null, - }, - { - Id: "xuo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xup", - Scope: "I", - Language_Type: "E", - Ref_Name: "UpperUmpqua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xur", - Scope: "I", - Language_Type: "H", - Ref_Name: "Urartian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xut", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kuthant", - Comment: null, - }, - { - Id: "xuu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kxoe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xve", - Scope: "I", - Language_Type: "H", - Ref_Name: "Venetic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xvi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kamviri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xvn", - Scope: "I", - Language_Type: "H", - Ref_Name: "Vandalic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xvo", - Scope: "I", - Language_Type: "H", - Ref_Name: "Volscian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xvs", - Scope: "I", - Language_Type: "H", - Ref_Name: "Vestinian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwaza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xwc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Woccon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xwd", - Scope: "I", - Language_Type: "E", - Ref_Name: "WadiWadi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xwe", - Scope: "I", - Language_Type: "L", - Ref_Name: "XwelaGbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xwg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kwegu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xwj", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wajuk", - Comment: null, - }, - { - Id: "xwk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wangkumara", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xwl", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternXwlaGbe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xwo", - Scope: "I", - Language_Type: "E", - Ref_Name: "WrittenOirat", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xwr", - Scope: "I", - Language_Type: "L", - Ref_Name: "KwerbaMamberamo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xwt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Wotjobaluk", - Comment: null, - }, - { - Id: "xww", - Scope: "I", - Language_Type: "E", - Ref_Name: "WembaWemba", - Comment: null, - }, - { - Id: "xxb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Boro(Ghana)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xxk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ke'o", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xxm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Minkin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xxr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Koropó", - Comment: null, - }, - { - Id: "xxt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Tambora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xya", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yaygir", - Comment: null, - }, - { - Id: "xyb", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yandjibara", - Comment: null, - }, - { - Id: "xyj", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mayi-Yapi", - Comment: null, - }, - { - Id: "xyk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mayi-Kulan", - Comment: null, - }, - { - Id: "xyl", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yalakalore", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xyt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mayi-Thakurti", - Comment: null, - }, - { - Id: "xyy", - Scope: "I", - Language_Type: "L", - Ref_Name: "YortaYorta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xzh", - Scope: "I", - Language_Type: "H", - Ref_Name: "Zhang-Zhung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xzm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Zemgalian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "xzp", - Scope: "I", - Language_Type: "H", - Ref_Name: "AncientZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yaa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yaminahua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yab", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yuhup", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yac", - Scope: "I", - Language_Type: "L", - Ref_Name: "PassValleyYali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yad", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yagua", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yae", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pumé", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yaf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yaka(DemocraticRepublicofCongo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yámana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yah", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yazgulyam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yai", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yagnobi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yaj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Banda-Yangere", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yak", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yakama", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yal", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yalunka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yam", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yamba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yan", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mayangna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yao", - Part2b: "yao", - Part2t: "yao", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yap", - Part2b: "yap", - Part2t: "yap", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yapese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yaq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yaqui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yar", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yabarana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yas", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nugunu(Cameroon)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yat", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yambeta", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yau", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yuwana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yav", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yangben", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yaw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yawalapití", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yax", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yauma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yay", - Scope: "I", - Language_Type: "L", - Ref_Name: "Agwagwune", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yaz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lokaa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yba", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ybb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yemba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ybe", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestYugur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ybh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yakha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ybi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yamphu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ybj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Hasha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ybk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bokha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ybl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yukuben", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ybm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yaben", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ybn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yabaâna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ybo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yabong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ybx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yawiyo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yby", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yaweyuha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ych", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chesu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ycl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lolopo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ycn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yucuna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ycp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Chepya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ycr", - Scope: "I", - Language_Type: "L", - Ref_Name: "YilanCreole", - Comment: null, - }, - { - Id: "yda", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yanda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ydd", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternYiddish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yde", - Scope: "I", - Language_Type: "L", - Ref_Name: "YangumDey", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ydg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yidgha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ydk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yoidik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yea", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ravula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yec", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yeniche", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yee", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yimas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yei", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yeni", - Comment: null, - }, - { - Id: "yej", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yevanic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "yel", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yela", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yer", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tarok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yes", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyankpa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yet", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yetfa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yeu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yerukula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yev", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yapunda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yey", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yeyi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yga", - Scope: "I", - Language_Type: "E", - Ref_Name: "Malyangapa", - Comment: null, - }, - { - Id: "ygi", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yiningayi", - Comment: null, - }, - { - Id: "ygl", - Scope: "I", - Language_Type: "L", - Ref_Name: "YangumGel", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ygm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yagomi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ygp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Gepo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ygr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yagaria", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ygs", - Scope: "I", - Language_Type: "L", - Ref_Name: "YolŋuSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ygu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yugul", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ygw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yagwoia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yha", - Scope: "I", - Language_Type: "L", - Ref_Name: "BahaBuyang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yhd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Judeo-IraqiArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "yhl", - Scope: "I", - Language_Type: "L", - Ref_Name: "HlephoPhowa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yhs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yan-nhaŋuSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yia", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yinggarda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yid", - Part2b: "yid", - Part2t: "yid", - Part1: "yi", - Scope: "M", - Language_Type: "L", - Ref_Name: "Yiddish", - Comment: null, - }, - { - Id: "yif", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ache", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yig", - Scope: "I", - Language_Type: "L", - Ref_Name: "WusaNasu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yih", - Scope: "I", - Language_Type: "E", - Ref_Name: "WesternYiddish", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yii", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yidiny", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yij", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yindjibarndi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yik", - Scope: "I", - Language_Type: "L", - Ref_Name: "DongshanbaLalo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yil", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yindjilandji", - Comment: null, - }, - { - Id: "yim", - Scope: "I", - Language_Type: "L", - Ref_Name: "YimchungruNaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yin", - Scope: "I", - Language_Type: "L", - Ref_Name: "RiangLai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yip", - Scope: "I", - Language_Type: "L", - Ref_Name: "Pholo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yiq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Miqie", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yir", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthAwyu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yis", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yis", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yit", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternLalu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yiu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Awu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yiv", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernNisu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yix", - Scope: "I", - Language_Type: "L", - Ref_Name: "AxiYi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yiz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Azhe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yakan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ykg", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernYukaghir", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ykh", - Scope: "I", - Language_Type: "L", - Ref_Name: "KhamniganMongol", - Comment: null, - }, - { - Id: "yki", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yoke", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ykk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yakaikeke", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ykl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Khlula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ykm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kap", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ykn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kua-nsi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yko", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yasa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ykr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yekora", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ykt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kathu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yku", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kuamasi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yky", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yakoma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yla", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yaul", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ylb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yaleba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yle", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ylg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yelogu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yli", - Scope: "I", - Language_Type: "L", - Ref_Name: "AnggurukYali", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yll", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yil", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ylm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Limi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yln", - Scope: "I", - Language_Type: "L", - Ref_Name: "LangnianBuyang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ylo", - Scope: "I", - Language_Type: "L", - Ref_Name: "NaluoYi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ylr", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yalarnnga", - Comment: null, - }, - { - Id: "ylu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aribwaung", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yly", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nyâlayu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ymb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yambes", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ymc", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernMuji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ymd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Muda", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yme", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yameo", - Comment: null, - }, - { - Id: "ymg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yamongeri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ymh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mili", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ymi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Moji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ymk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Makwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yml", - Scope: "I", - Language_Type: "L", - Ref_Name: "Iamalele", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ymm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ymn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yamna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ymo", - Scope: "I", - Language_Type: "L", - Ref_Name: "YangumMon", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ymp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yamap", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ymq", - Scope: "I", - Language_Type: "L", - Ref_Name: "QilaMuji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ymr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malasar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yms", - Scope: "I", - Language_Type: "H", - Ref_Name: "Mysian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ymx", - Scope: "I", - Language_Type: "L", - Ref_Name: "NorthernMuji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ymz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Muzi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yna", - Scope: "I", - Language_Type: "L", - Ref_Name: "Aluo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ynd", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yandruwandha", - Comment: null, - }, - { - Id: "yne", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lang'e", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yng", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yango", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ynk", - Scope: "I", - Language_Type: "L", - Ref_Name: "NaukanYupik", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ynl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yangulam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ynn", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yana", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yno", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ynq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yendang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yns", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yansi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ynu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yahuna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yob", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yoba", - Comment: null, - }, - { - Id: "yog", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yogad", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yoi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yonaguni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yok", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yokuts", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yol", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yola", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yom", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yombe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yon", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yongkom", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yor", - Part2b: "yor", - Part2t: "yor", - Part1: "yo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yoruba", - Comment: null, - }, - { - Id: "yot", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yotti", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yox", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yoron", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yoy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yoy", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ypa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ypb", - Scope: "I", - Language_Type: "L", - Ref_Name: "LaboPhowa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ypg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phola", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yph", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phupha", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ypm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phuma", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ypn", - Scope: "I", - Language_Type: "L", - Ref_Name: "AniPhowa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ypo", - Scope: "I", - Language_Type: "L", - Ref_Name: "AloPhola", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ypp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phupa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ypz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Phuza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yra", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yerakai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yrb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yareba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yre", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yaouré", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yrk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nenets", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yrl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nhengatu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yrm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yirrk-Mel", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yrn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yerong", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yro", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yaroamë", - Comment: null, - }, - { - Id: "yrs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yarsun", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yrw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yarawata", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yry", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yarluyandi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ysc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yassic", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ysd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Samatao", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ysg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sonaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ysl", - Scope: "I", - Language_Type: "L", - Ref_Name: "YugoslavianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ysm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MyanmarSignLanguage", - Comment: null, - }, - { - Id: "ysn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yso", - Scope: "I", - Language_Type: "L", - Ref_Name: "Nisi(China)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ysp", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernLolopo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ysr", - Scope: "I", - Language_Type: "E", - Ref_Name: "SirenikYupik", - Comment: null, - }, - { - Id: "yss", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yessan-Mayo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ysy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sanie", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yta", - Scope: "I", - Language_Type: "L", - Ref_Name: "Talu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ytl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tanglang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ytp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Thopho", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ytw", - Scope: "I", - Language_Type: "L", - Ref_Name: "YoutWam", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yty", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yatay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yua", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yucateco", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yub", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yugambal", - Comment: null, - }, - { - Id: "yuc", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yuchi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yud", - Scope: "I", - Language_Type: "L", - Ref_Name: "Judeo-TripolitanianArabic", - Comment: null, - ScriptDirection: "rtl", - }, - { - Id: "yue", - Scope: "I", - Language_Type: "L", - Ref_Name: "YueChinese", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yuf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Havasupai-Walapai-Yavapai", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yug", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yug", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yui", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yurutí", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yuj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Karkar-Yuri", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yuk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yuki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yul", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yulu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Quechan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yun", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bena(Nigeria)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yup", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yukpa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yuq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yuqui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yur", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yurok", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yut", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yopno", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yuw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yau(MorobeProvince)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yux", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernYukaghir", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yuy", - Scope: "I", - Language_Type: "L", - Ref_Name: "EastYugur", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yuz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yuracare", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yva", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yvt", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yavitero", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ywa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kalou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ywg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yinhawangka", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ywl", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternLalu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ywn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yawanawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ywq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Wuding-LuquanYi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ywr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yawuru", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ywt", - Scope: "I", - Language_Type: "L", - Ref_Name: "XishanbaLalo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ywu", - Scope: "I", - Language_Type: "L", - Ref_Name: "WumengNasu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yww", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yawarawarga", - Comment: null, - }, - { - Id: "yxa", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mayawali", - Comment: null, - }, - { - Id: "yxg", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yagara", - Comment: null, - }, - { - Id: "yxl", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yardliyawarra", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yxm", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yinwum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yxu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Yuyu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yxy", - Scope: "I", - Language_Type: "E", - Ref_Name: "YabulaYabula", - Comment: null, - }, - { - Id: "yyr", - Scope: "I", - Language_Type: "E", - Ref_Name: "YirYoront", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yyu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Yau(SandaunProvince)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yyz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Ayizi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yzg", - Scope: "I", - Language_Type: "L", - Ref_Name: "E'maBuyang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "yzk", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zokhuo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zaa", - Scope: "I", - Language_Type: "L", - Ref_Name: "SierradeJuárezZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zab", - Scope: "I", - Language_Type: "L", - Ref_Name: "WesternTlacolulaValleyZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zac", - Scope: "I", - Language_Type: "L", - Ref_Name: "OcotlánZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zad", - Scope: "I", - Language_Type: "L", - Ref_Name: "CajonosZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zae", - Scope: "I", - Language_Type: "L", - Ref_Name: "YareniZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zaf", - Scope: "I", - Language_Type: "L", - Ref_Name: "AyoquescoZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zag", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zaghawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zah", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zangwal", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zai", - Scope: "I", - Language_Type: "L", - Ref_Name: "IsthmusZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zaj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zaramo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zak", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zanaki", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zal", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zauzou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zam", - Scope: "I", - Language_Type: "L", - Ref_Name: "MiahuatlánZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zao", - Scope: "I", - Language_Type: "L", - Ref_Name: "OzolotepecZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zap", - Part2b: "zap", - Part2t: "zap", - Scope: "M", - Language_Type: "L", - Ref_Name: "Zapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zaq", - Scope: "I", - Language_Type: "L", - Ref_Name: "AloápamZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zar", - Scope: "I", - Language_Type: "L", - Ref_Name: "RincónZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zas", - Scope: "I", - Language_Type: "L", - Ref_Name: "SantoDomingoAlbarradasZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zat", - Scope: "I", - Language_Type: "L", - Ref_Name: "TabaaZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zau", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zangskari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zav", - Scope: "I", - Language_Type: "L", - Ref_Name: "YatzachiZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zaw", - Scope: "I", - Language_Type: "L", - Ref_Name: "MitlaZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zax", - Scope: "I", - Language_Type: "L", - Ref_Name: "XadaniZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zay", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zayse-Zergulla", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zaz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zba", - Scope: "I", - Language_Type: "C", - Ref_Name: "Balaibalan", - Comment: null, - }, - { - Id: "zbc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralBerawan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zbe", - Scope: "I", - Language_Type: "L", - Ref_Name: "EastBerawan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zbl", - Part2b: "zbl", - Part2t: "zbl", - Scope: "I", - Language_Type: "C", - Ref_Name: "Blissymbols", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zbt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Batui", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zbu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bu(BauchiState)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zbw", - Scope: "I", - Language_Type: "L", - Ref_Name: "WestBerawan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zca", - Scope: "I", - Language_Type: "L", - Ref_Name: "CoatecasAltasZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zcd", - Scope: "I", - Language_Type: "L", - Ref_Name: "LasDeliciasZapotec", - Comment: null, - }, - { - Id: "zch", - Scope: "I", - Language_Type: "L", - Ref_Name: "CentralHongshuiheZhuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zdj", - Scope: "I", - Language_Type: "L", - Ref_Name: "NgazidjaComorian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zea", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zeeuws", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zeg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zenag", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zeh", - Scope: "I", - Language_Type: "L", - Ref_Name: "EasternHongshuiheZhuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zem", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zeem", - Comment: null, - }, - { - Id: "zen", - Part2b: "zen", - Part2t: "zen", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zenaga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zga", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kinga", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zgb", - Scope: "I", - Language_Type: "L", - Ref_Name: "GuibeiZhuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zgh", - Part2b: "zgh", - Part2t: "zgh", - Scope: "I", - Language_Type: "L", - Ref_Name: "StandardMoroccanTamazight", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zgm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MinzZhuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zgn", - Scope: "I", - Language_Type: "L", - Ref_Name: "GuibianZhuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zgr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Magori", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zha", - Part2b: "zha", - Part2t: "zha", - Part1: "za", - Scope: "M", - Language_Type: "L", - Ref_Name: "Zhuang", - Comment: null, - }, - { - Id: "zhb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zhaba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zhd", - Scope: "I", - Language_Type: "L", - Ref_Name: "DaiZhuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zhi", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zhire", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zhn", - Scope: "I", - Language_Type: "L", - Ref_Name: "NongZhuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zho", - Part2b: "chi", - Part2t: "zho", - Part1: "zh", - Scope: "M", - Language_Type: "L", - Ref_Name: "Chinese", - Comment: null, - }, - { - Id: "zhw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zhoa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zia", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zia", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zib", - Scope: "I", - Language_Type: "L", - Ref_Name: "ZimbabweSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zik", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zimakani", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zil", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zialo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zim", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mesme", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zin", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zinza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ziw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zigula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ziz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zizilivakan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zka", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaimbulawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zkd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kadu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zkg", - Scope: "I", - Language_Type: "H", - Ref_Name: "Koguryo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zkh", - Scope: "I", - Language_Type: "H", - Ref_Name: "Khorezmian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zkk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Karankawa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zkn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kanan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zko", - Scope: "I", - Language_Type: "E", - Ref_Name: "Kott", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zkp", - Scope: "I", - Language_Type: "E", - Ref_Name: "SãoPauloKaingáng", - Comment: null, - }, - { - Id: "zkr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zakhring", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zkt", - Scope: "I", - Language_Type: "H", - Ref_Name: "Kitan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zku", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kaurna", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zkv", - Scope: "I", - Language_Type: "E", - Ref_Name: "Krevinian", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zkz", - Scope: "I", - Language_Type: "H", - Ref_Name: "Khazar", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zla", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zula", - Comment: null, - }, - { - Id: "zlj", - Scope: "I", - Language_Type: "L", - Ref_Name: "LiujiangZhuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zlm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Malay(individuallanguage)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zln", - Scope: "I", - Language_Type: "L", - Ref_Name: "LianshanZhuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zlq", - Scope: "I", - Language_Type: "L", - Ref_Name: "LiuqianZhuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zlu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zul", - Comment: null, - }, - { - Id: "zma", - Scope: "I", - Language_Type: "L", - Ref_Name: "Manda(Australia)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmb", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zimba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmc", - Scope: "I", - Language_Type: "E", - Ref_Name: "Margany", - Comment: null, - }, - { - Id: "zmd", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maridan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zme", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mangerr", - Comment: null, - }, - { - Id: "zmf", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mfinu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmg", - Scope: "I", - Language_Type: "L", - Ref_Name: "MartiKe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmh", - Scope: "I", - Language_Type: "E", - Ref_Name: "Makolkol", - Comment: null, - }, - { - Id: "zmi", - Scope: "I", - Language_Type: "L", - Ref_Name: "NegeriSembilanMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmj", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maridjabin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mandandanyi", - Comment: null, - }, - { - Id: "zml", - Scope: "I", - Language_Type: "E", - Ref_Name: "Matngala", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmm", - Scope: "I", - Language_Type: "L", - Ref_Name: "Marimanindji", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbangwe", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmo", - Scope: "I", - Language_Type: "L", - Ref_Name: "Molo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmp", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mpuono", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mituku", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmr", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maranunggu", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zms", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbesa", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmt", - Scope: "I", - Language_Type: "L", - Ref_Name: "Maringarr", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmu", - Scope: "I", - Language_Type: "E", - Ref_Name: "Muruwari", - Comment: null, - }, - { - Id: "zmv", - Scope: "I", - Language_Type: "E", - Ref_Name: "Mbariman-Gudhinma", - Comment: null, - }, - { - Id: "zmw", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbo(DemocraticRepublicofCongo)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmx", - Scope: "I", - Language_Type: "L", - Ref_Name: "Bomitaba", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mariyedi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zmz", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mbandja", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zna", - Scope: "I", - Language_Type: "L", - Ref_Name: "ZanGula", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zne", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zande(individuallanguage)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zng", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "znk", - Scope: "I", - Language_Type: "E", - Ref_Name: "Manangkari", - Comment: null, - }, - { - Id: "zns", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mangas", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zoc", - Scope: "I", - Language_Type: "L", - Ref_Name: "CopainaláZoque", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zoh", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChimalapaZoque", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zom", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zou", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zoo", - Scope: "I", - Language_Type: "L", - Ref_Name: "AsunciónMixtepecZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zoq", - Scope: "I", - Language_Type: "L", - Ref_Name: "TabascoZoque", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zor", - Scope: "I", - Language_Type: "L", - Ref_Name: "RayónZoque", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zos", - Scope: "I", - Language_Type: "L", - Ref_Name: "FranciscoLeónZoque", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpa", - Scope: "I", - Language_Type: "L", - Ref_Name: "LachiguiriZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpb", - Scope: "I", - Language_Type: "L", - Ref_Name: "YautepecZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpc", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChoapanZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpd", - Scope: "I", - Language_Type: "L", - Ref_Name: "SoutheasternIxtlánZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpe", - Scope: "I", - Language_Type: "L", - Ref_Name: "PetapaZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpf", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanPedroQuiatoniZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpg", - Scope: "I", - Language_Type: "L", - Ref_Name: "GueveaDeHumboldtZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zph", - Scope: "I", - Language_Type: "L", - Ref_Name: "TotomachapanZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpi", - Scope: "I", - Language_Type: "L", - Ref_Name: "SantaMaríaQuiegolaniZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpj", - Scope: "I", - Language_Type: "L", - Ref_Name: "QuiavicuzasZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpk", - Scope: "I", - Language_Type: "L", - Ref_Name: "TlacolulitaZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpl", - Scope: "I", - Language_Type: "L", - Ref_Name: "LachixíoZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpm", - Scope: "I", - Language_Type: "L", - Ref_Name: "MixtepecZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpn", - Scope: "I", - Language_Type: "L", - Ref_Name: "SantaInésYatzechiZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpo", - Scope: "I", - Language_Type: "L", - Ref_Name: "AmatlánZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpp", - Scope: "I", - Language_Type: "L", - Ref_Name: "ElAltoZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpq", - Scope: "I", - Language_Type: "L", - Ref_Name: "ZoogochoZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpr", - Scope: "I", - Language_Type: "L", - Ref_Name: "SantiagoXanicaZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zps", - Scope: "I", - Language_Type: "L", - Ref_Name: "CoatlánZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpt", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanVicenteCoatlánZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpu", - Scope: "I", - Language_Type: "L", - Ref_Name: "YalálagZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpv", - Scope: "I", - Language_Type: "L", - Ref_Name: "ChichicapanZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpw", - Scope: "I", - Language_Type: "L", - Ref_Name: "ZanizaZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpx", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanBaltazarLoxichaZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpy", - Scope: "I", - Language_Type: "L", - Ref_Name: "MazaltepecZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zpz", - Scope: "I", - Language_Type: "L", - Ref_Name: "TexmelucanZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zqe", - Scope: "I", - Language_Type: "L", - Ref_Name: "QiubeiZhuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zra", - Scope: "I", - Language_Type: "H", - Ref_Name: "Kara(Korea)", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zrg", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mirgan", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zrn", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zerenkel", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zro", - Scope: "I", - Language_Type: "L", - Ref_Name: "Záparo", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zrp", - Scope: "I", - Language_Type: "E", - Ref_Name: "Zarphatic", - Comment: null, - }, - { - Id: "zrs", - Scope: "I", - Language_Type: "L", - Ref_Name: "Mairasi", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zsa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sarasira", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zsk", - Scope: "I", - Language_Type: "H", - Ref_Name: "Kaskean", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zsl", - Scope: "I", - Language_Type: "L", - Ref_Name: "ZambianSignLanguage", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zsm", - Scope: "I", - Language_Type: "L", - Ref_Name: "StandardMalay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zsr", - Scope: "I", - Language_Type: "L", - Ref_Name: "SouthernRinconZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zsu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Sukurum", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zte", - Scope: "I", - Language_Type: "L", - Ref_Name: "ElotepecZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ztg", - Scope: "I", - Language_Type: "L", - Ref_Name: "XanaguíaZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ztl", - Scope: "I", - Language_Type: "L", - Ref_Name: "Lapaguía-GuiviniZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ztm", - Scope: "I", - Language_Type: "L", - Ref_Name: "SanAgustínMixtepecZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ztn", - Scope: "I", - Language_Type: "L", - Ref_Name: "SantaCatarinaAlbarradasZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ztp", - Scope: "I", - Language_Type: "L", - Ref_Name: "LoxichaZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ztq", - Scope: "I", - Language_Type: "L", - Ref_Name: "Quioquitani-QuieríZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zts", - Scope: "I", - Language_Type: "L", - Ref_Name: "TilquiapanZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ztt", - Scope: "I", - Language_Type: "L", - Ref_Name: "TejalapanZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ztu", - Scope: "I", - Language_Type: "L", - Ref_Name: "GüiláZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "ztx", - Scope: "I", - Language_Type: "L", - Ref_Name: "ZaachilaZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zty", - Scope: "I", - Language_Type: "L", - Ref_Name: "YateeZapotec", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zuh", - Scope: "I", - Language_Type: "L", - Ref_Name: "Tokano", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zul", - Part2b: "zul", - Part2t: "zul", - Part1: "zu", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zulu", - Comment: null, - }, - { - Id: "zum", - Scope: "I", - Language_Type: "L", - Ref_Name: "Kumzari", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zun", - Part2b: "zun", - Part2t: "zun", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zuni", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zuy", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zumaya", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zwa", - Scope: "I", - Language_Type: "L", - Ref_Name: "Zay", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zxx", - Part2b: "zxx", - Part2t: "zxx", - Scope: "S", - Language_Type: "S", - Ref_Name: "Nolinguisticcontent", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zyb", - Scope: "I", - Language_Type: "L", - Ref_Name: "YongbeiZhuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zyg", - Scope: "I", - Language_Type: "L", - Ref_Name: "YangZhuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zyj", - Scope: "I", - Language_Type: "L", - Ref_Name: "YoujiangZhuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zyn", - Scope: "I", - Language_Type: "L", - Ref_Name: "YongnanZhuang", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zyp", - Scope: "I", - Language_Type: "L", - Ref_Name: "ZypheChin", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zza", - Part2b: "zza", - Part2t: "zza", - Scope: "M", - Language_Type: "L", - Ref_Name: "Zaza", - Comment: null, - ScriptDirection: "ltr", - }, - { - Id: "zzj", - Scope: "I", - Language_Type: "L", - Ref_Name: "ZuojiangZhuang", - Comment: null, - ScriptDirection: "ltr", - }, -]; +interface RawLanguageEntry { + Id: string; + Part1?: string; + Part2b?: string; + Part2t?: string; + Scope: string; + Language_Type: string; + Ref_Name: string; + Comment: string | null; + ScriptDirection: "ltr" | "rtl"; +} -const scopeMap = { I: "individual", M: "macrolanguage", S: "special" }; -const typeMap = { +const scopeMap: Record = { + I: "individual", + M: "macrolanguage", + S: "special", +}; + +const typeMap: Record = { A: "ancient", C: "constructed", E: "extinct", @@ -63733,21 +28,22 @@ const typeMap = { S: "special", }; -export const LanguageCodes: LanguageMetadata[] = isoLanguageData.map((line: any) => { - return { +export const LanguageCodes: LanguageMetadata[] = (isoLanguageData as RawLanguageEntry[]).map( + (line) => ({ tag: line.Id, name: { - [line.Part1]: line.Ref_Name, + [line.Part1 ?? ""]: line.Ref_Name, }, iso2b: line.Part2b, iso2t: line.Part2t, iso1: line.Part1, - scope: scopeMap[line.Scope as keyof typeof scopeMap] || line.Scope, - type: typeMap[line.Language_Type as keyof typeof typeMap] || line.Language_Type, + scope: scopeMap[line.Scope] || line.Scope, + type: typeMap[line.Language_Type] || line.Language_Type, refName: line.Ref_Name, - comment: line.Comment, - scriptDirection: line.ScriptDirection, - }; -}); + comment: line.Comment ?? undefined, + scriptDirection: + line.ScriptDirection === "rtl" ? ScriptDirection.RTL : ScriptDirection.LTR, + }) +); export type { LanguageMetadata }; diff --git a/src/utils/languages.json b/src/utils/languages.json new file mode 100644 index 000000000..ec408d601 --- /dev/null +++ b/src/utils/languages.json @@ -0,0 +1,63720 @@ +[ + { + "Id": "aaa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ghotuo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alumu-Tesu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aae", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ArbëreshëAlbanian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aaf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aranadan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ambrak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abu'Arapesh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aai", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arifama-Miniafia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ankave", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aal", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Afade", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aan", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anambé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AlgerianSaharanArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "aap", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ParáArára", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aaq", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "EasternAbnaki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aar", + "Part2b": "aar", + "Part2t": "aar", + "Part1": "aa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Afar", + "Comment": null + }, + { + "Id": "aas", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aasáx", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aat", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ArvanitikaAlbanian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aaw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Solong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MandoboAtas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aaz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amarasi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aba", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bankon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AmbalaAyta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manide", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternAbnaki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AbaiSungai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TajikiArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "abi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abidji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abj", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Aka-Bea", + "Comment": null + }, + { + "Id": "abk", + "Part2b": "abk", + "Part2t": "abk", + "Part1": "ab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abkhazian", + "Comment": null + }, + { + "Id": "abl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LampungNyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abanyom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AbellenAyta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abaza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abron", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AmboneseMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ambulas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abure", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BaharnaArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "abw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Inabaknon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aby", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AnemeWake", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "abz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aca", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Achagua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "acb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Áncá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "acd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gikyode", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ace", + "Part2b": "ace", + "Part2t": "ace", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Achinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "acf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SaintLucianCreoleFrench", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ach", + "Part2b": "ach", + "Part2t": "ach", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Acoli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aci", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Aka-Cari", + "Comment": null + }, + { + "Id": "ack", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Aka-Kora", + "Comment": null + }, + { + "Id": "acl", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Akar-Bale", + "Comment": null + }, + { + "Id": "acm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MesopotamianArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "acn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Achang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "acp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternAcipa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "acq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ta'izzi-AdeniArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "acr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Achi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "acs", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Acroá", + "Comment": null + }, + { + "Id": "act", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Achterhoeks", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "acu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Achuar-Shiwiar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "acv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Achumawi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "acw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HijaziArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "acx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OmaniArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "acy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CypriotArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "acz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Acheron", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ada", + "Part2b": "ada", + "Part2t": "ada", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Adangme", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "adb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Atauran", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "add", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lidzonka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ade", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Adele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "adf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DhofariArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "adg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Andegerebinha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "adh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Adhola", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "adi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Adi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "adj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Adioukrou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "adl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Galo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "adn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Adang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ado", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "adq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Adangbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "adr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Adonara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ads", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AdamorobeSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "adt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Adnyamathanha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "adu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aduge", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "adw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amundava", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "adx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AmdoTibetan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ady", + "Part2b": "ady", + "Part2t": "ady", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Adyghe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "adz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Adzera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aea", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Areba", + "Comment": null + }, + { + "Id": "aeb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TunisianArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "aec", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SaidiArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "aed", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ArgentineSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aee", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NortheastPashai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aek", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Haeke", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ael", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ambele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aem", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aen", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ArmenianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aeq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aer", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aer", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternArrernte", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aes", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Alsea", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aeu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akeu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aew", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ambakich", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aey", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aez", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aeka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "afb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GulfArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "afd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Andai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "afe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Putukwam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "afg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AfghanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "afh", + "Part2b": "afh", + "Part2t": "afh", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Afrihili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "afi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akrukay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "afk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nanubae", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "afn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Defaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "afo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eloyi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "afp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tapei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "afr", + "Part2b": "afr", + "Part2t": "afr", + "Part1": "af", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Afrikaans", + "Comment": null + }, + { + "Id": "afs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Afro-SeminoleCreole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aft", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Afitti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "afu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awutu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "afz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Obokuitai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aga", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Aguano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Legbo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Agatu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Agarabi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "age", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Angal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arguni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Angor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngelima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Agariya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Argobba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IsarogAgta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fembe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Angaataha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Agutaynen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ago", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tainae", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aghem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aguaruna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ags", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Esimbi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralCagayanAgta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aguacateco", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RemontadoDumagat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kahua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aghul", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernAlta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "agz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mt.IrigaAgta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aha", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ahanta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ahb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Axamb", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ahg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Qimant", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ahh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aghu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ahi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TiagbamrinAizi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ahk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ahl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Igo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ahm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MobumrinAizi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ahn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Àhàn", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aho", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ahom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ahp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AproumuAizi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ahr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ahirani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ahs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ashe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aht", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ahtena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arosi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aib", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ainu(China)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aic", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ainbai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aid", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Alngith", + "Comment": null + }, + { + "Id": "aie", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aif", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Agi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aig", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AntiguaandBarbudaCreoleEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aih", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ai-Cham", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aii", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AssyrianNeo-Aramaic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aij", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LishanidNoshan", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "aik", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ake", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ail", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aimele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aim", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aimol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ain", + "Part2b": "ain", + "Part2t": "ain", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ainu(Japan)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aio", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aiton", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aip", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Burumakok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aiq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aimaq", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "air", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Airoran", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ait", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Arikem", + "Comment": null + }, + { + "Id": "aiw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aix", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aighon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aiy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aja", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aja(SouthSudan)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ajg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aja(Benin)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aji", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ajië", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ajn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Andajin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ajs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AlgerianJewishSignLanguage", + "Comment": null + }, + { + "Id": "aju", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Judeo-MoroccanArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "ajw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ajawa", + "Comment": null + }, + { + "Id": "ajz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AmriKarbi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aka", + "Part2b": "aka", + "Part2t": "aka", + "Part1": "ak", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Akan", + "Comment": null + }, + { + "Id": "akb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BatakAngkola", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "akc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mpur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "akd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ukpet-Ehom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ake", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akawaio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "akf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akpa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "akg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anakalangu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "akh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AngalHeneng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aki", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aiome", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "akj", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Aka-Jeru", + "Comment": null + }, + { + "Id": "akk", + "Part2b": "akk", + "Part2t": "akk", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Akkadian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "akl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aklanon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "akm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Aka-Bo", + "Comment": null + }, + { + "Id": "ako", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akurio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "akp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Siwu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "akq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "akr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Araki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akaselem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "akt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akolet", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "akv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akhvakh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "akw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "akx", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Aka-Kede", + "Comment": null + }, + { + "Id": "aky", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Aka-Kol", + "Comment": null + }, + { + "Id": "akz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alabama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ala", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alago", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "alc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Qawasqar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ald", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alladian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ale", + "Part2b": "ale", + "Part2t": "ale", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aleut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "alf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alege", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "alh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ali", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amaimon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "alj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alangan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "alk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "all", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Allar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "alm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amblong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aln", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GhegAlbanian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "alo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Larike-Wakasihu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "alp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alune", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "alq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Algonquin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "alr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alutor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "als", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ToskAlbanian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "alt", + "Part2b": "alt", + "Part2t": "alt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernAltai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "alu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "'Are'are", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "alw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alaba-K’abeena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "alx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aly", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alyawarr", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "alz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ama", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Amanayé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ambo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amahuaca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ame", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yanesha'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hamer-Banna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amurdak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amh", + "Part2b": "amh", + "Part2t": "amh", + "Part1": "am", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amharic", + "Comment": null + }, + { + "Id": "ami", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amis", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amdang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ambai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "War-Jaintia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ama(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amanab", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alamblak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amahai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amarakaeri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ams", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernAmami-Oshima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GuerreroAmuzgo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ambelau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternNeo-Aramaic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anmatyerre", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "amz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Atampaya", + "Comment": null + }, + { + "Id": "ana", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Andaqui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "anb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Andoa", + "Comment": null + }, + { + "Id": "anc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "and", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ansus", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ane", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Xârâcùù", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "anf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Animere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ang", + "Part2b": "ang", + "Part2t": "ang", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldEnglish(ca.450-1100)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "anh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nend", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ani", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Andi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "anj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ank", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Goemai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "anl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anu-HkongsoChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "anm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ann", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Obolo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ano", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Andoque", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "anp", + "Part2b": "anp", + "Part2t": "anp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Angika", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "anq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jarawa(India)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "anr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Andh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ans", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Anserma", + "Comment": null + }, + { + "Id": "ant", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Antakarinya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "anu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anuak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "anv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Denya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "anw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anaang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "anx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Andra-Hus", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "any", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anyin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "anz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aoa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Angolar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aob", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aoc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pemon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aod", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Andarum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aoe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AngalEnen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aof", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bragat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aog", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Angoram", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aoi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anindilyakwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aoj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mufian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aok", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arhö", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aol", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aom", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ömie", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aon", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BumbitaArapesh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aor", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Aore", + "Comment": null + }, + { + "Id": "aos", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taikat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aot", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Atong(India)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aou", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "A'ou", + "Comment": null + }, + { + "Id": "aox", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Atorada", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aoz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UabMeto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sa'a", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LevantineArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "apd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SudaneseArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "ape", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bukiyip", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PahananAgta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ampanang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aph", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Athpariya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "api", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Apiaká", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JicarillaApache", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KiowaApache", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LipanApache", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mescalero-ChiricahuaApache", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Apinayé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ambul", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "app", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Apma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "A-Pucikwar", + "Comment": null + }, + { + "Id": "apr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arop-Lokep", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aps", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arop-Sissano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Apatani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Apurinã", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Alapmunte", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternApache", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aputai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Apalaí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "apz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Safeyoka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aqc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Archi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aqd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AmpariDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aqg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arigidi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aqk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aninka", + "Comment": null + }, + { + "Id": "aqm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Atohwaim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aqn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernAlta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aqp", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Atakapa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aqr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arhâ", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aqt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Angaité", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aqz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akuntsu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ara", + "Part2b": "ara", + "Part2t": "ara", + "Part1": "ar", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Arabic", + "Comment": null + }, + { + "Id": "arb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "StandardArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "arc", + "Part2b": "arc", + "Part2t": "arc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OfficialAramaic(700-300BCE)", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "ard", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Arabana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "are", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternArrarnta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "arg", + "Part2b": "arg", + "Part2t": "arg", + "Part1": "an", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aragonese", + "Comment": null + }, + { + "Id": "arh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arhuaco", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ari", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arikara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "arj", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Arapaso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ark", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arikapú", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "arl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arabela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "arn", + "Part2b": "arn", + "Part2t": "arn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mapudungun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Araona", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "arp", + "Part2b": "arp", + "Part2t": "arp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arapaho", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "arq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AlgerianArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "arr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karo(Brazil)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ars", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NajdiArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "aru", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Aruá(AmazonasState)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "arv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arbore", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "arw", + "Part2b": "arw", + "Part2t": "arw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arawak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "arx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aruá(RodoniaState)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ary", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MoroccanArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "arz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EgyptianArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "asa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Asu(Tanzania)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Assiniboine", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CasuarinaCoastAsmat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ase", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AmericanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Auslan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cishingini", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ash", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Abishira", + "Comment": null + }, + { + "Id": "asi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buruwai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ask", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ashkun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Asilulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asm", + "Part2b": "asm", + "Part2t": "asm", + "Part1": "as", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Assamese", + "Comment": null + }, + { + "Id": "asn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "XingúAsuriní", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aso", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AlgerianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AustrianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Asuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ass", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ipulo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ast", + "Part2b": "ast", + "Part2t": "ast", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Asturian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TocantinsAsurini", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Asoa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AustralianAboriginesSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Muratayak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YaosakorAsmat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "asz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "As", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ata", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pele-Ata", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zaiwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Atsahuaca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AtaManobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ate", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Atemble", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IvbieNorth-Okpela-Arhe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ati", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Attié", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Atikamekw", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ati", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mt.IrayaAgta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ata", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ashtiani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ato", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Atong(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PudtolAtta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aralle-Tabulahan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waimiri-Atroari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ats", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GrosVentre", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "att", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PamplonaAtta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Reel", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernAltai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Atsugewi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arutani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aty", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aneityum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "atz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Asumboa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alugu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "auc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waorani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aud", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anuta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aug", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aguna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "auh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aushi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anuki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "auj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awjilah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "auk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Heyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aul", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aulua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Asu(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aun", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MolmoOne", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "auo", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Auyokawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aup", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Makayam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "auq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anus", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aur", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aruek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aut", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Austral", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "auu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Auye", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "auw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awyi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aux", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Aurá", + "Comment": null + }, + { + "Id": "auy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awiyaana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "auz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UzbekiArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "ava", + "Part2b": "ava", + "Part2t": "ava", + "Part1": "av", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Avaric", + "Comment": null + }, + { + "Id": "avb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Avau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "avd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alviri-Vidari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ave", + "Part2b": "ave", + "Part2t": "ave", + "Part1": "ae", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Avestan", + "Comment": null + }, + { + "Id": "avi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Avikam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "avk", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Kotava", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "avl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternEgyptianBedawiArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "avm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Angkamuthi", + "Comment": null + }, + { + "Id": "avn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Avatime", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "avo", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Agavotaguerra", + "Comment": null + }, + { + "Id": "avs", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Aushiri", + "Comment": null + }, + { + "Id": "avt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Au", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "avu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Avokaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "avv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Avá-Canoeiro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awa", + "Part2b": "awa", + "Part2t": "awa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awadhi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awa(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cicipu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awetí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Anguthimri", + "Comment": null + }, + { + "Id": "awh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awbono", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aekyom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Awabakal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arawum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awngi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aws", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthAwyu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Araweté", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralAwyu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JairAwyu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aww", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "awy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EderaAwyu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "axb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Abipon", + "Comment": null + }, + { + "Id": "axe", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ayerrerenge", + "Comment": null + }, + { + "Id": "axg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "MatoGrossoArára", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "axk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yaka(CentralAfricanRepublic)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "axl", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "LowerSouthernAranda", + "Comment": null + }, + { + "Id": "axm", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MiddleArmenian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "axx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Xârâgurè", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aya", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ayb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AyizoGbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ayc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernAymara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ayd", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ayabadhu", + "Comment": null + }, + { + "Id": "aye", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ayere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ayg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ginyanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ayh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HadramiArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "ayi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Leyigha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ayk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akuku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ayl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LibyanArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "aym", + "Part2b": "aym", + "Part2t": "aym", + "Part1": "ay", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Aymara", + "Comment": null + }, + { + "Id": "ayn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanaaniArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "ayo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ayoreo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ayp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthMesopotamianArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "ayq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ayi(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ayr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralAymara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ays", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SorsogonAyta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ayt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MagbukunAyta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ayu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ayu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ayz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MaiBrat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aza", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Azha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "azb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthAzerbaijani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "azd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternDurangoNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "aze", + "Part2b": "aze", + "Part2t": "aze", + "Part1": "az", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Azerbaijani", + "Comment": null + }, + { + "Id": "azg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanPedroAmuzgosAmuzgo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "azj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthAzerbaijani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "azm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IpalapaAmuzgo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "azn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternDurangoNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "azo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awing", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "azt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "FaireAtta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "azz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HighlandPueblaNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "baa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Babatana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bainouk-Gunyuño", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Badui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bae", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Baré", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "baf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nubaca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tuki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BahamasCreoleEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "baj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Barakai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bak", + "Part2b": "bak", + "Part2t": "bak", + "Part1": "ba", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bashkir", + "Comment": null + }, + { + "Id": "bal", + "Part2b": "bal", + "Part2t": "bal", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Baluchi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bam", + "Part2b": "bam", + "Part2t": "bam", + "Part1": "bm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bambara", + "Comment": null + }, + { + "Id": "ban", + "Part2b": "ban", + "Part2t": "ban", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Balinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waimaha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bap", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bantawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bar", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bavarian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bas", + "Part2b": "bas", + "Part2t": "bas", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Basa(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bada(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bav", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vengo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "baw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bambili-Bambui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bamun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bay", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Batuley", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bba", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baatonum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Barai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BatakToba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bangba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baibai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Barama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bugan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Barombi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ghomálá'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Babanki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bats", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Babango", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uneapa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernBoboMadaré", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestCentralBanda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bamali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Girawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bakpinka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mburku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kulung(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karnai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bbx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bubia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bby", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Befang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bca", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralBai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bainouk-Samik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernBalochi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthBabar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bce", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bamenyam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bamu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BagaPokur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bch", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bariai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bci", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baoulé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bardi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bck", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bunuba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralBikol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bannoni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bali(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bco", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaluli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bali(DemocraticRepublicofCongo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bench", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Babine", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kohumono", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bct", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bendi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AwadBing", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shoo-Minda-Nye", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bacama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bcz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bainouk-Gunyaamolo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bda", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bayot", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Basap", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Emberá-Baudó", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bunama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bde", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bade", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Biage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bonggi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baka(SouthSudan)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Burun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bai(SouthSudan)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Budukh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IndonesianBajau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buduma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baldemu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Morom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bende", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bahnar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestCoastBajau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bds", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Burunge", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bokoto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oroko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BodoParja", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baham", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Budong-Budong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bandjalang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bdz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Badeshi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bea", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Beaver", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "beb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bebele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bec", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iceve-Maci", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bed", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bedoanas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bee", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Byangsi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bef", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Benabena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "beg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Belait", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "beh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Biali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bei", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bekati'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bej", + "Part2b": "bej", + "Part2t": "bej", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Beja", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bek", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bebeli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bel", + "Part2b": "bel", + "Part2t": "bel", + "Part1": "be", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Belarusian", + "Comment": null + }, + { + "Id": "bem", + "Part2b": "bem", + "Part2t": "bem", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bemba(Zambia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ben", + "Part2b": "ben", + "Part2t": "ben", + "Part1": "bn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bengali", + "Comment": null + }, + { + "Id": "beo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Beami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bep", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Besoa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "beq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Beembe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bes", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Besme", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bet", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GuiberouaBéte", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "beu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Blagar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bev", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DaloaBété", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bew", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Betawi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bex", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JurModo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bey", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Beli(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bez", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bena(Tanzania)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PauriBareli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PanyiBai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bafut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Betaf", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bff", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bofi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BusangKayan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Blafe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BritishSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bafanji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BanKhorSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Banda-Ndélé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mmen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bunak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MalbaBirifor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Beba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Badaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bazigar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernBai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bft", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Balti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gahri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bondo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bantayanon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bagheli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bfz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MahasuPahari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bga", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gwamhi-Wuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bobongko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Haryanvi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RathwiBareli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bge", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bauria", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bangandu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bugun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Giangan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bangolan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bo(Laos)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternBalochi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BagaKoga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternBalochi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bagri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BawmChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tagabawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bughotu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbongno", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Warkay-Bipim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bhatri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BalkanGagauzTurkish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Benggoi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bgz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Banggai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bha", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bharia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bhili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Biga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bhadrawahi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bhaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Odiai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Binandere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bukharic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bhilali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bahing", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bimin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bathari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BohtanNeo-Aramaic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bho", + "Part2b": "bho", + "Part2t": "bho", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bhojpuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TukangBesiSouth", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BaraMalagasy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buwal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bht", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bhattiyali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bhunjia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bahau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Biak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bhalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bhele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bhz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bada(Indonesia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Badimaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bib", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bissa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bid", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bidiyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bie", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bepour", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bif", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Biafada", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "big", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Biangai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bik", + "Part2b": "bik", + "Part2t": "bik", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Bikol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bil", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bile", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bim", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bimoba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bin", + "Part2b": "bin", + "Part2t": "bin", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bini", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bio", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bip", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bila", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "biq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bipi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bir", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bisorio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bis", + "Part2b": "bis", + "Part2t": "bis", + "Part1": "bi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bislama", + "Comment": null + }, + { + "Id": "bit", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Berinomo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "biu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Biete", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "biv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernBirifor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "biw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kol(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bix", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bijori", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "biy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Birhor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "biz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baloi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bja", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Budza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Banggarla", + "Comment": null + }, + { + "Id": "bjc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bariji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bje", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Biao-JiaoMien", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BarzaniJewishNeo-Aramaic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bidyogo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bahinemo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bji", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Burji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanauji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Barok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bulu(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bajelani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Banjar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mid-SouthernBanda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fanamaket", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Binumarien", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bajan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Balanta-Ganja", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bju", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Busuu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bedjond", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bakwé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BanaoItneg", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bjy", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Bayali", + "Comment": null + }, + { + "Id": "bjz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baruga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kyak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baka(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Binukid", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Beeke", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buraka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bakoko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bki", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pande", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Brokskat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Berik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kom(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bukitan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bko", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwa'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Boko(DemocraticRepublicofCongo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bakairí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bakumpai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernSorsoganon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Boloki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buhid", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bekwarra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bekwel", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baikeno", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bky", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bokyi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bkz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bungku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bla", + "Part2b": "bla", + "Part2t": "bla", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Siksika", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bilua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BellaCoola", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bld", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bolango", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ble", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Balanta-Kentohe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuwaa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bli", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bolia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bolongan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pa'oKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bll", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Biloxi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Beli(SouthSudan)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bln", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernCatanduanesBikol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anii", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Blablanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baluan-Pam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Blang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bls", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Balaesang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TaiDam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kibala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Balangao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mag-IndiAyta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bly", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Notre", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "blz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Balantak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lame", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bembe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Biem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BagaManduri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bme", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Limassa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bom-Kim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bamwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kein", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bagirmi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bote-Majhi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ghayavi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bomboli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernBetsimisarakaMalagasy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Bina(PapuaNewGuinea)", + "Comment": null + }, + { + "Id": "bmo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bambalang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bulgebi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bomu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Muinane", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bms", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BilmaKanuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BiaoMon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Somba-Siawari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bomwali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baimak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bmz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baramu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bna", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bonerate", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bookan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnc", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Bontok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Banda(Indonesia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bne", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bintauna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Masiwang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Benga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bangi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternTawbuid", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bierebo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Boon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Batanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bunun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bno", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bantoanon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bola", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bantik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Butmas-Tur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bns", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bundeli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bentong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bonerif", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bisis", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bangubangu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bny", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bintulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bnz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Beezen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "boa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bob", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aweer", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bod", + "Part2b": "tib", + "Part2t": "bod", + "Part1": "bo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tibetan", + "Comment": null + }, + { + "Id": "boe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mundabli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bof", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bolon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bog", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BamakoSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "boh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Boma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "boi", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Barbareño", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "boj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anjam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bok", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bonjo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bol", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bom", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Berom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bon", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bine", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "boo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TiemacèwèBozo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bop", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bonkiman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "boq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bogaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bor", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Borôro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bos", + "Part2b": "bos", + "Part2t": "bos", + "Part1": "bs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bosnian", + "Comment": null + }, + { + "Id": "bot", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bongo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bou", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bondei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bov", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tuwuli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bow", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Rema", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "box", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buamu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "boy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bodo(CentralAfricanRepublic)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "boz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TiéyaxoBozo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Daakaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbuk", + "Comment": null + }, + { + "Id": "bpd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Banda-Banda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bauni", + "Comment": null + }, + { + "Id": "bpg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bonggo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bph", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Botlikh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bagupi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Binji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Orowe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BroomePearlingLuggerPidgin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Biyom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DzaoMin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anasi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaure", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BandaMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KoronadalBlaan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bps", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SaranganiBlaan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "BarrowPoint", + "Comment": null + }, + { + "Id": "bpu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bongu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BianMarind", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bo(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PalyaBareli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bishnupriya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bpz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bilba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tchumbuli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bagusa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Boko(Benin)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqf", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "BagaKaloum", + "Comment": null + }, + { + "Id": "bqg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bago-Kusuntu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bakhtiari", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "bqj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bandial", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Banda-Mbrès", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bql", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bilakura", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wumboko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BulgarianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Balo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Busa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Biritai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Burusu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bosngun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bamukumbit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Boguru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KoroWachi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buru(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baangi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BengkalaSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bqz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bakaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bra", + "Part2b": "bra", + "Part2t": "bra", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Braj", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Brao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "BerbiceCreoleDutch", + "Comment": null + }, + { + "Id": "brd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baraamu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bre", + "Part2b": "bre", + "Part2t": "bre", + "Part1": "br", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Breton", + "Comment": null + }, + { + "Id": "brf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bira", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baure", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Brahui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bri", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mokpwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bieria", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Birked", + "Comment": null + }, + { + "Id": "brl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Birwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Barambu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Boruca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Brokkat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Barapasi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Breri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Birao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baras", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bitare", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternBru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternBru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bellari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bodo(India)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bry", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Burui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "brz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bilbil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abinomn", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BruneiBisaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bassari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bse", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wushi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bauchi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bashkardi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kati", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bassossi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bangwinji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Burushaski", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsl", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Basa-Gumna", + "Comment": null + }, + { + "Id": "bsm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Busami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Barasana-Eduria", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bso", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BagaSitemu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bassa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bassa-Kontagora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bss", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akoose", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bst", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Basketo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bahonsuai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "BagaSobané", + "Comment": null + }, + { + "Id": "bsw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baiso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yangkam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bsy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SabahBisaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bta", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bata", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bati(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BatakDairi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bte", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Gamo-Ningi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Birgit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GagnoaBété", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bth", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BiatahBidayuh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bti", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Burate", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BacaneseMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BatakMandailing", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ratagnon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bto", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RinconadaBikol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Budibud", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Batek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baetora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bts", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BatakSimalungun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bete-Bendi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Batu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bateri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Butuanon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BatakKaro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bty", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bobot", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "btz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BatakAlas-Kluet", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bua", + "Part2b": "bua", + "Part2t": "bua", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Buriat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "buc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bushi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bud", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ntcham", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bue", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Beothuk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "buf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bushoong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bug", + "Part2b": "bug", + "Part2t": "bug", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buginese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "buh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YounuoBunu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bongili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "buj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Basa-Gurmana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "buk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bugawac", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bul", + "Part2b": "bul", + "Part2t": "bul", + "Part1": "bg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bulgarian", + "Comment": null + }, + { + "Id": "bum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bulu(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bun", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sherbro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "buo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Terei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bup", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Busoa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "buq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Brem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bus", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bokobaru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "but", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bungain", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "buu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Budu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "buv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "buw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bubi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bux", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Boghom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "buy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BullomSo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "buz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bukwen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bva", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Barein", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bube", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baelelea", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baeggu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bve", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BerauMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Boor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bonkeng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bure", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BelandaViri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bukat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BolivianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bamunka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bolgo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bumang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Birri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Burarra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bati(Indonesia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BukitMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Baniva", + "Comment": null + }, + { + "Id": "bvw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Boga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dibole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baybayanon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bvz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bauzi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bwatoo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Namosi-Naitasiri-Serua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bwile", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bwaidoka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BweKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Boselewa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Barwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bishuo", + "Comment": null + }, + { + "Id": "bwi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baniwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LááLááBwamu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bauwaki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bwela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Biwat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WunaiBunu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Boro(Ethiopia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MandoboBawah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernBoboMadaré", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bura-Pabir", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bws", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bomboma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bafaw-Balong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buli(Ghana)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bww", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bu-NaoBunu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CwiBwamu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bwz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bwisi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tairaha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BelandaBor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Molengue", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Birale", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bilur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bangala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buhutu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxi", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Pirlatapa", + "Comment": null + }, + { + "Id": "bxj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bayungu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bukusu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jalkunan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MongoliaBuriat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Burduna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Barikanchi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bebil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Beele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RussiaBuriat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Busam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChinaBuriat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Berakou", + "Comment": null + }, + { + "Id": "bxw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bankagooma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bxz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Binahari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bya", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Batak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bikya", + "Comment": null + }, + { + "Id": "byc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ubaghara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Benyadu'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bye", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pouye", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bete", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Baygo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bhujel", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buyu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bina(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Biao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bayono", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bym", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bidjara", + "Comment": null + }, + { + "Id": "byn", + "Part2b": "byn", + "Part2t": "byn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bilin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Biyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bumaji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byq", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Basay", + "Comment": null + }, + { + "Id": "byr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Baruya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bys", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Burak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Berti", + "Comment": null + }, + { + "Id": "byv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Medumba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Belhariya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Qaqet", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "byz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Banaro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bza", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bandi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Andio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernBetsimisarakaMalagasy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bribri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bze", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JenaamaBozo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Boikin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Babuza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MaposBuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bisu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BelizeKriolEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NicaraguaCreoleEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Boano(Sulawesi)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bolondo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Boano(Maluku)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bozaba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kemberano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buli(Indonesia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Biri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BrazilianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzt", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Brithenig", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Burmeso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Naami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Basa(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KɛlɛngaxoBozo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Obanliku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "bzz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Evant", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "caa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chortí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Garifuna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chuj", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cad", + "Part2b": "cad", + "Part2t": "cad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Caddo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cae", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lehar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "caf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernCarrier", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nivaclé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cahuarano", + "Comment": null + }, + { + "Id": "caj", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Chané", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaqchikel", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cal", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Carolinian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cam", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cemuhî", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "can", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chambri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chácobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cap", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chipaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "caq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CarNicobarese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "car", + "Part2b": "car", + "Part2t": "car", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GalibiCarib", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cas", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsimané", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cat", + "Part2b": "cat", + "Part2t": "cat", + "Part1": "ca", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Catalan", + "Comment": null + }, + { + "Id": "cav", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cavineña", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "caw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Callawalla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chiquitano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cay", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cayuga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "caz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Canichana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cabiyarí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Carapana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Carijona", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chimila", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chachi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EdeCabe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chavacano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BualkhawChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyahkur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Izora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsucuba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cashibo-Cacataibo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cashinahua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chayahuita", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Candoshi-Shapra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cacua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cbw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kinabalian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cby", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Carabayo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ccc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chamicuro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ccd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CafundoCreole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cce", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chopi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ccg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SambaDaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cch", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Atsam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ccj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kasanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ccl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cutchi-Swahili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ccm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MalaccanCreoleMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cco", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ComaltepecChinantec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ccp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chakma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ccr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Cacaopera", + "Comment": null + }, + { + "Id": "cda", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Choni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cde", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chenchu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cdf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chiru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cdh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chambeali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cdi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chodri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cdj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Churahi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cdm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chepang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cdn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chaudangsi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cdo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MinDongChinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cdr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cinda-Regi-Tiyal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cds", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChadianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cdy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chadong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cdz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cea", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "LowerChehalis", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ceb", + "Part2b": "ceb", + "Part2t": "ceb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cebuano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ceg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chamacoco", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cek", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternKhumiChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cen", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ces", + "Part2b": "cze", + "Part2t": "ces", + "Part1": "cs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Czech", + "Comment": null + }, + { + "Id": "cet", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Centúúm", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cey", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EkaiChin", + "Comment": null + }, + { + "Id": "cfa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dijim-Bwilim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cfd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cfg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ComoKarim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cfm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "FalamChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cga", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Changriwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cgc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kagayanen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cgg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chiga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cgk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chocangacakha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cha", + "Part2b": "cha", + "Part2t": "cha", + "Part1": "ch", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chamorro", + "Comment": null + }, + { + "Id": "chb", + "Part2b": "chb", + "Part2t": "chb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Chibcha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "chc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Catawba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "chd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HighlandOaxacaChontal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "che", + "Part2b": "che", + "Part2t": "che", + "Part1": "ce", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chechen", + "Comment": null + }, + { + "Id": "chf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TabascoChontal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "chg", + "Part2b": "chg", + "Part2t": "chg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Chagatai", + "Comment": null + }, + { + "Id": "chh", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Chinook", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "chj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OjitlánChinantec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "chk", + "Part2b": "chk", + "Part2t": "chk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chuukese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "chl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cahuilla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "chm", + "Part2b": "chm", + "Part2t": "chm", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Mari(Russia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "chn", + "Part2b": "chn", + "Part2t": "chn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chinookjargon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cho", + "Part2b": "cho", + "Part2t": "cho", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Choctaw", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "chp", + "Part2b": "chp", + "Part2t": "chp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chipewyan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "chq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "QuiotepecChinantec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "chr", + "Part2b": "chr", + "Part2t": "chr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cherokee", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cht", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Cholón", + "Comment": null + }, + { + "Id": "chu", + "Part2b": "chu", + "Part2t": "chu", + "Part1": "cu", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "ChurchSlavic", + "Comment": null + }, + { + "Id": "chv", + "Part2b": "chv", + "Part2t": "chv", + "Part1": "cv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chuvash", + "Comment": null + }, + { + "Id": "chw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chuwabu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "chx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chantyal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "chy", + "Part2b": "chy", + "Part2t": "chy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cheyenne", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "chz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OzumacínChinantec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cia-Cia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cib", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CiGbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cic", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chickasaw", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cid", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Chimariko", + "Comment": null + }, + { + "Id": "cie", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cineni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cih", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chinali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cik", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChitkuliKinnauri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cim", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cimbrian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cin", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CintaLarga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cip", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chiapanec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cir", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tiri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ciw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chippewa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ciy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chaima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cja", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternCham", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cje", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cjh", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "UpperChehalis", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cji", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chamalal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cjk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chokwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cjm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternCham", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cjn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chenapian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cjo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AshéninkaPajonal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cjp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cabécar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cjs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cjv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chuave", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cjy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JinyuChinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ckb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralKurdish", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "ckh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ckl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cibak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ckm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chakavian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ckn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KaangChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cko", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anufo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ckq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kajakse", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ckr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kairak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tayo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ckt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chukot", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koasati", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ckv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kavalan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ckx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Caka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cky", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cakfem-Mushere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ckz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cakchiquel-QuichéMixedLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cla", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ron", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "clc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chilcotin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cld", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChaldeanNeo-Aramaic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cle", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LealaoChinantec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "clh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chilisso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cli", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chakali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "clj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LaituChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "clk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Idu-Mishmi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cll", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "clm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Clallam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "clo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LowlandOaxacaChontal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cls", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "ClassicalSanskrit", + "Comment": null + }, + { + "Id": "clt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LautuChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "clu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Caluyanun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "clw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chulym", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cly", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternHighlandChatino", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cme", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cerma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cmg", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "ClassicalMongolian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cmi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Emberá-Chamí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Campalagian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cmm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Michigamea", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cmn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MandarinChinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cmo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralMnong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cmr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mro-KhimiChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cms", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Messapic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cmt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Camtho", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cna", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Changthang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cnb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChinbonChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cnc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Côông", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernQiang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cnh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HakhaChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Asháninka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cnk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KhumiChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cnl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LalanaChinantec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cno", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Con", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cnp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernPingChinese", + "Comment": null + }, + { + "Id": "cnq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chung", + "Comment": null + }, + { + "Id": "cnr", + "Part2b": "cnr", + "Part2t": "cnr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Montenegrin", + "Comment": null + }, + { + "Id": "cns", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralAsmat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cnt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TepetotutlaChinantec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cnu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chenoua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cnw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NgawnChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cnx", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MiddleCornish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "coa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CocosIslandsMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cob", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Chicomuceltec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "coc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cocopa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cod", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cocama-Cocamilla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "coe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koreguaje", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cof", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Colorado", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cog", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "coh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chonyi-Dzihana-Kauma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "coj", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Cochimi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cok", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SantaTeresaCora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "col", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Columbia-Wenatchi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "com", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Comanche", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "con", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cofán", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "coo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Comox", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cop", + "Part2b": "cop", + "Part2t": "cop", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Coptic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "coq", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Coquille", + "Comment": null + }, + { + "Id": "cor", + "Part2b": "cor", + "Part2t": "cor", + "Part1": "kw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cornish", + "Comment": null + }, + { + "Id": "cos", + "Part2b": "cos", + "Part2t": "cos", + "Part1": "co", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Corsican", + "Comment": null + }, + { + "Id": "cot", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Caquinte", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cou", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wamey", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cov", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CaoMiao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cow", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Cowlitz", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cox", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nanti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "coz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chochotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cpa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PalantlaChinantec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cpb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ucayali-YurúaAshéninka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cpc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AjyíninkaApurucayali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cpg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "CappadocianGreek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cpi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChinesePidginEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cpn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cherepon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cpo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kpeego", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cps", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Capiznon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cpu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PichisAshéninka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cpx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pu-XianChinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cpy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthUcayaliAshéninka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cqd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChuanqiandianClusterMiao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cra", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "IslandCarib", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lonwolwol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Coeurd'Alene", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cre", + "Part2b": "cre", + "Part2t": "cre", + "Part1": "cr", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Cree", + "Comment": null + }, + { + "Id": "crf", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Caramanta", + "Comment": null + }, + { + "Id": "crg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Michif", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crh", + "Part2b": "crh", + "Part2t": "crh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CrimeanTatar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cri", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sãotomense", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernEastCree", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PlainsCree", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernEastCree", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MooseCree", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ElNayarCora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Crow", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iyo'wujwaChorote", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "CarolinaAlgonquian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SeselwaCreoleFrench", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iyojwa'jaChorote", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chaura", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chrau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Carrier", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cry", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cori", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "crz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Cruzeño", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChiltepecChinantec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csb", + "Part2b": "csb", + "Part2t": "csb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kashubian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CatalanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChiangmaiSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cse", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CzechSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CubaSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChileanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AshoChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csi", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "CoastMiwok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SonglaiChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jola-Kasa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChineseSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralSierraMiwok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ColombianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cso", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SochiapamChinantec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernPingChinese", + "Comment": null + }, + { + "Id": "csq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CroatiaSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CostaRicanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "css", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "SouthernOhlone", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cst", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernOhlone", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SumtuChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SwampyCree", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CambodianSignLanguage", + "Comment": null + }, + { + "Id": "csy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SiyinChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "csz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Coos", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cta", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TataltepecChatino", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ctc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Chetco", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ctd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TedimChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cte", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TepinapaChinantec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ctg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chittagonian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cth", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ThaiphumChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ctl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TlacoatzintepecChinantec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ctm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Chitimacha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ctn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chhintange", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cto", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Emberá-Catío", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ctp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternHighlandChatino", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cts", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernCatanduanesBikol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ctt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WayanadChetti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ctu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cty", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MoundadanChetty", + "Comment": null + }, + { + "Id": "ctz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ZacatepecChatino", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cubeo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cuc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UsilaChinantec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cuh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chuka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cuiba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cuj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MashcoPiro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cuk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanBlasKuna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cul", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Culina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cuo", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Cumanagoto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cup", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Cupeño", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cuq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cur", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chhulung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cut", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TeutilaCuicatec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cuu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TaiYa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cuv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cuvok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cuw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chukwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cux", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TepeuxilaCuicatec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cuy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cuitlatec", + "Comment": null + }, + { + "Id": "cvg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chug", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cvn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ValleNacionalChinantec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kabwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cwb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maindo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cwd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WoodsCree", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cwe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cwg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chewong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cwt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuwaataay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cxh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cha'ari", + "Comment": null + }, + { + "Id": "cya", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NopalaChatino", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cyb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Cayubaba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "cym", + "Part2b": "wel", + "Part2t": "cym", + "Part1": "cy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Welsh", + "Comment": null + }, + { + "Id": "cyo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cuyonon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "czh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HuizhouChinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "czk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Knaanic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "czn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ZenzontepecChatino", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "czo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MinZhongChinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "czt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ZotungChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "daa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dangaléat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dambi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dae", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duupa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dagbani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gwahatike", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dai", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Day", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "daj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DarFurDaju", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dak", + "Part2b": "dak", + "Part2t": "dak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dakota", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dal", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dahalo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dam", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Damakawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dan", + "Part2b": "dan", + "Part2t": "dan", + "Part1": "da", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Danish", + "Comment": null + }, + { + "Id": "dao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DaaiChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "daq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DandamiMaria", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dar", + "Part2b": "dar", + "Part2t": "dar", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dargwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "das", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Daho-Doo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DarSilaDaju", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dav", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taita", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "daw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Davawenyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dayi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "daz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dba", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bangime", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Deno", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dadiya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dabe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Edopi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DogulDomDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Doka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ida'an", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dyirbal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duguri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duriankere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dulbu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duwai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Daba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dabarre", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BenTeyDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BondumDomDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dungu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dbw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BankanTeyDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dby", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dibiyaso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dcc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Deccan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dcr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Negerhollands", + "Comment": null + }, + { + "Id": "dda", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "DadiDadi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ddd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dongotono", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dde", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Doondo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ddg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fataluku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ddi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestGoodenough", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ddj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jaru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ddn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dendi(Benin)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ddo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dido", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ddr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Dhudhuroa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dds", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DonnoSoDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ddw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dawera-Daweloor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dec", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dagik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ded", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dedua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dee", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dewoin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "def", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dezfuli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "deg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Degema", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "deh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dehwari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dei", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Demisa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dek", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "del", + "Part2b": "del", + "Part2t": "del", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Delaware", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dem", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "den", + "Part2b": "den", + "Part2t": "den", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Slave(Athapascan)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dep", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "PidginDelaware", + "Comment": null + }, + { + "Id": "deq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dendi(CentralAfricanRepublic)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "der", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Deori", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "des", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Desano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "deu", + "Part2b": "ger", + "Part2t": "deu", + "Part1": "de", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "German", + "Comment": null + }, + { + "Id": "dev", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Domung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dez", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dengese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dga", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernDagaare", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dgb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BunogeDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dgc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CasiguranDumagatAgta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dgd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DagaariDioula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dge", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Degenan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dgg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Doga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dgh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dghwede", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dgi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernDagara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dgk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dagba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dgl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Andaandi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dgn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Dagoman", + "Comment": null + }, + { + "Id": "dgo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dogri(individuallanguage)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dgr", + "Part2b": "dgr", + "Part2t": "dgr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dogrib", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dgs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dogoso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dgt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ndra'ngith", + "Comment": null + }, + { + "Id": "dgw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Daungwurrung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dgx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Doghoro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dgz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Daga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dhd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dhundari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dhg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dhangu-Djangu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dhi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dhimal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dhl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dhalandji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dhm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zemba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dhn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dhanki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dho", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dhodia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dhr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dhargari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dhs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dhaiso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dhu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Dhurga", + "Comment": null + }, + { + "Id": "dhv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dehu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dhw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dhanwar(Nepal)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dhx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dhungaloo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dib", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthCentralDinka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dic", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LakotaDida", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "did", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Didinga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dif", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Dieri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dig", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Digo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dih", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kumiai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dii", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dimbong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dij", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dik", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthwesternDinka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dil", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dilling", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dim", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dime", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "din", + "Part2b": "din", + "Part2t": "din", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Dinka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dio", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dibo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dip", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NortheasternDinka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "diq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dimli(individuallanguage)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dir", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dirim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dis", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dimasa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "diu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Diriku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "div", + "Part2b": "div", + "Part2t": "div", + "Part1": "dv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dhivehi", + "Comment": null + }, + { + "Id": "diw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthwesternDinka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dix", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DixonReef", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "diy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Diuwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "diz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ding", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dja", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Djadjawurrung", + "Comment": null + }, + { + "Id": "djb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Djinba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "djc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DarDajuDaju", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "djd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Djamindjung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dje", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zarma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "djf", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Djangun", + "Comment": null + }, + { + "Id": "dji", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Djinang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "djj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Djeebbana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "djk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternMaroonCreole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "djm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JamsayDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "djn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jawoyn", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "djo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jangkang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "djr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Djambarrpuyngu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dju", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kapriman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "djw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Djawi", + "Comment": null + }, + { + "Id": "dka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dakpakha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dkg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kadung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dkk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dakka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dkr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuijau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SoutheasternDinka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dkx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mazagway", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dlg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dolgan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dlk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dahalik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dlm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Dalmatian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dln", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Darlong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dmb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MomboDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dmc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gavak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dmd", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "MadhiMadhi", + "Comment": null + }, + { + "Id": "dme", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dugwor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dmf", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Medefaidrin", + "Comment": null + }, + { + "Id": "dmg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UpperKinabatangan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dmk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Domaaki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dameli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dmm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dmo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kemedzung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dmr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EastDamar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dms", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dampelas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dmu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dubu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dmv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dumpas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dmw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mudburra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dmx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dema", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dmy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Demta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dna", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UpperGrandValleyDani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dnd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Daonda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dne", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndendeule", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dungan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LowerGrandValleyDani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dnj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dnk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dengka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dnn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dzùùngoo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dno", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndrulo", + "Comment": null + }, + { + "Id": "dnr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Danaru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dnt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MidGrandValleyDani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dnu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Danau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dnv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Danu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dnw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternDani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dny", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dení", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "doa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dob", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dobu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "doc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernDong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "doe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Doe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dof", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Domu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "doh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "doi", + "Part2b": "doi", + "Part2t": "doi", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Dogri(macrolanguage)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dok", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dondo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dol", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Doso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "don", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Toura(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "doo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dongo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dop", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lukpa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "doq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DominicanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dor", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dori'o", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dos", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dogosé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dot", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dass", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dov", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dombe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dow", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Doyayo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dox", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bussa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "doy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dompo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "doz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dorze", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dpp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Papar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "drb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dair", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "drc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Minderico", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "drd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Darmiya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dre", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dolpo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "drg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rungus", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dri", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "C'Lela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "drl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paakantyi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "drn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestDamar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Daro-MatuMelanau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "drq", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Dura", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "drs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gedeo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "drt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Drents", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rukai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dry", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Darai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dsb", + "Part2b": "dsb", + "Part2t": "dsb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LowerSorbian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dse", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DutchSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dsh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Daasanach", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dsi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Disa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dsk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dokshi", + "Comment": null + }, + { + "Id": "dsl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DanishSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dsn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Dusner", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dso", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Desiya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dsq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tadaksahak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dsz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MardinSignLanguage", + "Comment": null + }, + { + "Id": "dta", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Daur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dtb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Labuk-KinabatanganKadazan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dtd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ditidaht", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dth", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Adithinngithigh", + "Comment": null + }, + { + "Id": "dti", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AnaTingaDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dtk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TeneKanDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dtm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TomoKanDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dtn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Daatsʼíin", + "Comment": null + }, + { + "Id": "dto", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TommoSoDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dtp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KadazanDusun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dtr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lotud", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dts", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ToroSoDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dtt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ToroTeguDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dtu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TebulUreDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dty", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dotyali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dua", + "Part2b": "dua", + "Part2t": "dua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dubli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "duc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "due", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UmirayDumagetAgta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "duf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dumbea", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dug", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duruma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "duh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DungraBhil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dumun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "duk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uyajitaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dul", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AlabatIslandAgta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dum", + "Part2b": "dum", + "Part2t": "dum", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MiddleDutch(ca.1050-1350)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dun", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DusunDeyah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "duo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DupaninanAgta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dup", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "duq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DusunMalang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dur", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dii", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dus", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dumi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "duu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Drung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "duv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duvle", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "duw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DusunWitu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dux", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duungooma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "duy", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "DicamayAgta", + "Comment": null + }, + { + "Id": "duz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Duli-Gey", + "Comment": null + }, + { + "Id": "dva", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Diri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dwk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DawikKui", + "Comment": null + }, + { + "Id": "dwr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dawro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dws", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "DuttonWorldSpeedwords", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dwu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dhuwal", + "Comment": null + }, + { + "Id": "dww", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dawawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dwy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dhuwaya", + "Comment": null + }, + { + "Id": "dwz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DewasRai", + "Comment": null + }, + { + "Id": "dya", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dyan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dyb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Dyaberdyaber", + "Comment": null + }, + { + "Id": "dyd", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Dyugun", + "Comment": null + }, + { + "Id": "dyg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "VillaViciosaAgta", + "Comment": null + }, + { + "Id": "dyi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DjiminiSenoufo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dym", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YandaDomDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dyn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dyangadi", + "Comment": null + }, + { + "Id": "dyo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jola-Fonyi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dyr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dyarim", + "Comment": null + }, + { + "Id": "dyu", + "Part2b": "dyu", + "Part2t": "dyu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dyula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dyy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Djabugay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dza", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tunzu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dzd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Daza", + "Comment": null + }, + { + "Id": "dze", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Djiwarli", + "Comment": null + }, + { + "Id": "dzg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dazaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dzl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dzalakha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dzn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dzando", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "dzo", + "Part2b": "dzo", + "Part2t": "dzo", + "Part1": "dz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dzongkha", + "Comment": null + }, + { + "Id": "eaa", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Karenggapa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ebc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Beginci", + "Comment": null + }, + { + "Id": "ebg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ebughu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ebk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternBontok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ebo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Teke-Ebo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ebr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ebrié", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ebu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Embu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ecr", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Eteocretan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ecs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EcuadorianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ecy", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Eteocypriot", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eee", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "E", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "efa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Efai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "efe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Efe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "efi", + "Part2b": "efi", + "Part2t": "efi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Efik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ega", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ega", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "egl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Emilian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "egm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Benamanga", + "Comment": null + }, + { + "Id": "ego", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eggon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "egy", + "Part2b": "egy", + "Part2t": "egy", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Egyptian(Ancient)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ehs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MiyakuboSignLanguage", + "Comment": null + }, + { + "Id": "ehu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ehueun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eip", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eipomek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eit", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eitiep", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eiv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Askopan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eja", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ejamat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eka", + "Part2b": "eka", + "Part2t": "eka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ekajuk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eke", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ekit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ekg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ekari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eki", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ekk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "StandardEstonian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ekl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kol(Bangladesh)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ekm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Elip", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eko", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ekp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ekpeye", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ekr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yace", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eky", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternKayah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ele", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Elepi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "elh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ElHugeirat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eli", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nding", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "elk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Elkei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ell", + "Part2b": "gre", + "Part2t": "ell", + "Part1": "el", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ModernGreek(1453-)", + "Comment": null + }, + { + "Id": "elm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eleme", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "elo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ElMolo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "elu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Elu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "elx", + "Part2b": "elx", + "Part2t": "elx", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Elamite", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ema", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Emai-Iuleha-Ora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "emb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Embaloh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eme", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Emerillon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "emg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternMeohang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "emi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mussau-Emira", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "emk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternManinkakan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "emm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mamulique", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "emn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "emp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernEmberá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "emq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternMinyag", + "Comment": null + }, + { + "Id": "ems", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PacificGulfYupik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "emu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternMuria", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "emw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Emplawas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "emx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Erromintxela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "emy", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "EpigraphicMayan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "emz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbessa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ena", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Apali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "enb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Markweeta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "enc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "En", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "end", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ende", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "enf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ForestEnets", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eng", + "Part2b": "eng", + "Part2t": "eng", + "Part1": "en", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "English", + "Comment": null + }, + { + "Id": "enh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TundraEnets", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "enl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Enlhet", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "enm", + "Part2b": "enm", + "Part2t": "enm", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MiddleEnglish(1100-1500)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "enn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Engenni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eno", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Enggano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "enq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Enga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "enr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Emumu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "enu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Enu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "env", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Enwan(EdoState)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "enw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Enwan(AkwaIbomState)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "enx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Enxet", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eot", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Beti(Côted'Ivoire)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "epi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Epie", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "epo", + "Part2b": "epo", + "Part2t": "epo", + "Part1": "eo", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Esperanto", + "Comment": null + }, + { + "Id": "era", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eravallan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "erg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sie", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "erh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eruwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eri", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ogea", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "erk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthEfate", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ero", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Horpa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "err", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Erre", + "Comment": null + }, + { + "Id": "ers", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ersu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ert", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eritai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "erw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Erokwanas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ese", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EseEjja", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "esg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AheriGondi", + "Comment": null + }, + { + "Id": "esh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eshtehardi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "esi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthAlaskanInupiatun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "esk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthwestAlaskaInupiatun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "esl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EgyptSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "esm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Esuma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "esn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SalvadoranSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eso", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EstonianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "esq", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Esselen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ess", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralSiberianYupik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "est", + "Part2b": "est", + "Part2t": "est", + "Part1": "et", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Estonian", + "Comment": null + }, + { + "Id": "esu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralYupik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "esy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eskayan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "etb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Etebi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "etc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Etchemin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eth", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EthiopianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "etn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eton(Vanuatu)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eto", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eton(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "etr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Edolo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ets", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yekhee", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ett", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Etruscan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "etu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ejagham", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "etx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eten", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "etz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Semimi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eud", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Eudeve", + "Comment": null + }, + { + "Id": "eus", + "Part2b": "baq", + "Part2t": "eus", + "Part1": "eu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Basque", + "Comment": null + }, + { + "Id": "eve", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Even", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "evh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uvbie", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "evn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Evenki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ewe", + "Part2b": "ewe", + "Part2t": "ewe", + "Part1": "ee", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ewe", + "Comment": null + }, + { + "Id": "ewo", + "Part2b": "ewo", + "Part2t": "ewo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ewondo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ext", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Extremaduran", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eya", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Eyak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eyo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Keiyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eza", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ezaa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "eze", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uzekwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "faa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fasu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fad'Ambu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wagi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "faf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fagani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Finongan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BaissaFali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fai", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Faiwol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "faj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Faita", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fang(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fal", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthFali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fam", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fan", + "Part2b": "fan", + "Part2t": "fan", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fang(EquatorialGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fao", + "Part2b": "fao", + "Part2t": "fao", + "Part1": "fo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Faroese", + "Comment": null + }, + { + "Id": "fap", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paloor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "far", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fataleka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fas", + "Part2b": "per", + "Part2t": "fas", + "Part1": "fa", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Persian", + "Comment": null + }, + { + "Id": "fat", + "Part2b": "fat", + "Part2t": "fat", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fanti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fayu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fay", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthwesternFars", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "faz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthwesternFars", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fbl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestAlbayBikol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fcs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "QuebecSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fer", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Feroge", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ffi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "FoiaFoia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ffm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MaasinaFulfulde", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fgr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fongoro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nobiin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fie", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fyer", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fif", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Faifi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fij", + "Part2b": "fij", + "Part2t": "fij", + "Part1": "fj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fijian", + "Comment": null + }, + { + "Id": "fil", + "Part2b": "fil", + "Part2t": "fil", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Filipino", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fin", + "Part2b": "fin", + "Part2t": "fin", + "Part1": "fi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Finnish", + "Comment": null + }, + { + "Id": "fip", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fipa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fir", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Firan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fit", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TornedalenFinnish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fiw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fiwaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fkk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kirya-Konzəl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fkv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KvenFinnish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fla", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalispel-Pendd'Oreille", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "flh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Foau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fli", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fll", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthFali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fln", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "FlindersIsland", + "Comment": null + }, + { + "Id": "flr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fuliiru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fly", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Flaaitaal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fmp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fe'fe'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fmu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "FarWesternMuria", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fnb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fanbak", + "Comment": null + }, + { + "Id": "fng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fanagalo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fania", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fod", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Foodo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "foi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Foi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fom", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Foma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fon", + "Part2b": "fon", + "Part2t": "fon", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "for", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fore", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fos", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Siraya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fpe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "FernandoPoCreoleEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fqs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fra", + "Part2b": "fre", + "Part2t": "fra", + "Part1": "fr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "French", + "Comment": null + }, + { + "Id": "frc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CajunFrench", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "frd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fordata", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "frk", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Frankish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "frm", + "Part2b": "frm", + "Part2t": "frm", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MiddleFrench(ca.1400-1600)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fro", + "Part2b": "fro", + "Part2t": "fro", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldFrench(842-ca.1400)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "frp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arpitan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "frq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Forak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "frr", + "Part2b": "frr", + "Part2t": "frr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernFrisian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "frs", + "Part2b": "frs", + "Part2t": "frs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternFrisian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "frt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fortsenal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fry", + "Part2b": "fry", + "Part2t": "fry", + "Part1": "fy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternFrisian", + "Comment": null + }, + { + "Id": "fse", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "FinnishSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fsl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "FrenchSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fss", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Finland-SwedishSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AdamawaFulfulde", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fuc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pulaar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fud", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EastFutuna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fue", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BorguFulfulde", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fuf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pular", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fuh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternNigerFulfulde", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BagirmiFulfulde", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fuj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ful", + "Part2b": "ful", + "Part2t": "ful", + "Part1": "ff", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Fulah", + "Comment": null + }, + { + "Id": "fum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fun", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fulniô", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fuq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Central-EasternNigerFulfulde", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fur", + "Part2b": "fur", + "Part2t": "fur", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Friulian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fut", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Futuna-Aniwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fuu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Furu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fuv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NigerianFulfulde", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fuy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fuyug", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fvr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fwâi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "fwe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gaa", + "Part2b": "gaa", + "Part2t": "gaa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gabri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MixedGreatAndamanese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gaddang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gae", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guarequena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gaf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gende", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gagauz", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alekano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gai", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Borei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gaj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gadsup", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gamkonora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gal", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Galolen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gam", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kandawo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gan", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GanChinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gants", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gap", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gaq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gata'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gar", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Galeya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gas", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AdiwasiGarasia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gat", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kenati", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MudhiliGadaba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gaw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nobonob", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Borana-Arsi-GujiOromo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gay", + "Part2b": "gay", + "Part2t": "gay", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gayo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gaz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestCentralOromo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gba", + "Part2b": "gba", + "Part2t": "gba", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Gbaya(CentralAfricanRepublic)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaytetye", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karajarri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Niksek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gaikundi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gbanziri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DefiGbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Galela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BodoGadaba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gaddi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gamit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Garhwali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mo'da", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernGrebo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gbaya-Bossangoa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gbaya-Bozoum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gbagyi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GbesiGbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gagadu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gbanu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gabi-Gabi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternXwlaGbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gby", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gbari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gbz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ZoroastrianDari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gcc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gcd", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ganggalida", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gce", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Galice", + "Comment": null + }, + { + "Id": "gcf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GuadeloupeanCreoleFrench", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gcl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GrenadianCreoleEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gcn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gaina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gcr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GuianeseCreoleFrench", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gct", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ColoniaTovarGerman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gda", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GadeLohar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PottangiOllarGadaba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "GuguBadhun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gedaged", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gde", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gude", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guduf-Gava", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ga'dang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gadjerawang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gundi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gurdjar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gadang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dirasha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Umanakaina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ghodoberi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mehri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wipi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gds", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GhandrukSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kungardutyi", + "Comment": null + }, + { + "Id": "gdu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gudu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gdx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Godwari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gea", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Geruma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "geb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kire", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gec", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GbolooGrebo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ged", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gade", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gef", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gerai", + "Comment": null + }, + { + "Id": "geg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gengle", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "geh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HutteriteGerman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gei", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gebe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gej", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gek", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ywom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gel", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ut-Ma'in", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "geq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Geme", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ges", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Geser-Gorom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gev", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Eviya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gew", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gex", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Garre", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gey", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Enya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gez", + "Part2b": "gez", + "Part2t": "gez", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Geez", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gfk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Patpatar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gft", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Gafat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gga", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ggb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gbii", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ggd", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Gugadj", + "Comment": null + }, + { + "Id": "gge", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gurr-goni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ggg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gurgula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ggk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kungarakany", + "Comment": null + }, + { + "Id": "ggl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ganglau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ggt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gitua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ggu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gagu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ggw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gogodala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gha", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ghadamès", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ghc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Hiberno-ScottishGaelic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ghe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernGhale", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ghh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernGhale", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ghk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GekoKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ghl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ghulfan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ghn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ghanongga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gho", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ghomara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ghr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ghera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ghs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guhu-Samane", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ght", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuke", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kija", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gib", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gibanawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gic", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gail", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gid", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gidar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gie", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gaɓogbo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gig", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Goaria", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gih", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Githabul", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gii", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Girirra", + "Comment": null + }, + { + "Id": "gil", + "Part2b": "gil", + "Part2t": "gil", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gilbertese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gim", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gimi(EasternHighlands)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gin", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hinukh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gip", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gimi(WestNewBritain)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "giq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GreenGelao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gir", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RedGelao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gis", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthGiziga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "git", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gitxsan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "giu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mulao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "giw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WhiteGelao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gix", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gilima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "giy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Giyug", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "giz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthGiziga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gjk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KachiKoli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gjm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Gunditjmara", + "Comment": null + }, + { + "Id": "gjn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gonja", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gjr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GurindjiKriol", + "Comment": null + }, + { + "Id": "gju", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gujari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gkd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Magɨ(MadangProvince)", + "Comment": null + }, + { + "Id": "gke", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gkn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gokana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gko", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kok-Nar", + "Comment": null + }, + { + "Id": "gkp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GuineaKpelle", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gku", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "ǂUngkue", + "Comment": null + }, + { + "Id": "gla", + "Part2b": "gla", + "Part2t": "gla", + "Part1": "gd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ScottishGaelic", + "Comment": null + }, + { + "Id": "glb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Belning", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "glc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BonGula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gld", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nanai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gle", + "Part2b": "gle", + "Part2t": "gle", + "Part1": "ga", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Irish", + "Comment": null + }, + { + "Id": "glg", + "Part2b": "glg", + "Part2t": "glg", + "Part1": "gl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Galician", + "Comment": null + }, + { + "Id": "glh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthwestPashai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "glj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GulaIro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "glk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gilaki", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "gll", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Garlali", + "Comment": null + }, + { + "Id": "glo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Galambu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "glr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Glaro-Twabo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "glu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gula(Chad)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "glv", + "Part2b": "glv", + "Part2t": "glv", + "Part1": "gv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manx", + "Comment": null + }, + { + "Id": "glw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Glavda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gly", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Gule", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gma", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Gambera", + "Comment": null + }, + { + "Id": "gmb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gula'alaa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gmd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mághdì", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gmg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Magɨyi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gmh", + "Part2b": "gmh", + "Part2t": "gmh", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MiddleHighGerman(ca.1050-1500)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gml", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MiddleLowGerman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gmm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gbaya-Mbodomo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gmn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gimnime", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gmr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mirning", + "Comment": null + }, + { + "Id": "gmu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gumalu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gmv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gamo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gmx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Magoma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gmy", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MycenaeanGreek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gmz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mgbolizhia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gna", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaansa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gnb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gangte", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gnc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Guanche", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gnd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zulgo-Gemzek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gne", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ganang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngangam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gnh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gooniyandi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gnj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngen", + "Comment": null + }, + { + "Id": "gnk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ǁGana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gnl", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Gangulu", + "Comment": null + }, + { + "Id": "gnm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ginuman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gnn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gumatj", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gno", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernGondi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gnq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gnr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "GurengGureng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gnt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guntai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gnu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gnau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gnw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternBolivianGuaraní", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gnz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ganzi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "goa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gob", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Playero", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "goc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gorakor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "god", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Godié", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "goe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gongduk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gof", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gofa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gog", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gogo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "goh", + "Part2b": "goh", + "Part2t": "goh", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldHighGerman(ca.750-1050)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "goi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gobasi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "goj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gowlan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gok", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gowli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gol", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gola", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gom", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GoanKonkani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gon", + "Part2b": "gon", + "Part2t": "gon", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Gondi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "goo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GoneDau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gop", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yeretuar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "goq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gorap", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gor", + "Part2b": "gor", + "Part2t": "gor", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gorontalo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gos", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gronings", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "got", + "Part2b": "got", + "Part2t": "got", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Gothic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gou", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gavar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gov", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Goo", + "Comment": null + }, + { + "Id": "gow", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gorowa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gox", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gobu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "goy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Goundo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "goz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gozarkhani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gpa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gupa-Abawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gpe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GhanaianPidginEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gpn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taiap", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gqa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ga'anda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gqi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guiqiong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gqn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Guana(Brazil)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gqr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gqu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Qau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gra", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RajputGarasia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "grb", + "Part2b": "grb", + "Part2t": "grb", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Grebo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "grc", + "Part2b": "grc", + "Part2t": "grc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "AncientGreek(to1453)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "grd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guruntum-Mbaaru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "grg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Madi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "grh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gbiri-Niragu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gri", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ghari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "grj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernGrebo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "grm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KotaMaruduTalantang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "grn", + "Part2b": "grn", + "Part2t": "grn", + "Part1": "gn", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Guarani", + "Comment": null + }, + { + "Id": "gro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Groma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "grq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gorovu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "grr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taznatit", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "grs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gresi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "grt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Garo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kistane", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "grv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralGrebo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "grw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gweda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "grx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guriaso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gry", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BarclayvilleGrebo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "grz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guramalum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gse", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GhanaianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gsg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GermanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gsl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gusilay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gsm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GuatemalanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gsn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nema", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gso", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthwestGbaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gsp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wasembo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gss", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GreekSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gsw", + "Part2b": "gsw", + "Part2t": "gsw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SwissGerman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gta", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guató", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gtu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Aghu-Tharnggala", + "Comment": null + }, + { + "Id": "gua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shiki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guajajára", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "guc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wayuu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gud", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YocobouéDida", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gue", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gurindji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "guf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gupapuyngu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gug", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ParaguayanGuaraní", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "guh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guahibo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternBolivianGuaraní", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "guj", + "Part2b": "guj", + "Part2t": "guj", + "Part1": "gu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gujarati", + "Comment": null + }, + { + "Id": "guk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gumuz", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gul", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SeaIslandCreoleEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guambiano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gun", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MbyáGuaraní", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "guo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guayabero", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gup", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gunwinggu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "guq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aché", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gur", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Farefare", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gus", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GuineanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gut", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MalékuJaíka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "guu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yanomamö", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "guw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gux", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gourmanchéma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "guz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gusii", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gva", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guana(Paraguay)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gvc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guanano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gve", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duwet", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gvf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Golin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gvj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guajá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gvl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gulay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gvm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gurmana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gvn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuku-Yalanji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gvo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GaviãoDoJiparaná", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gvp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ParáGavião", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gvr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gurung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gvs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gumawana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gvy", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Guyani", + "Comment": null + }, + { + "Id": "gwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbato", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gwb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gwc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gawri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gwd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gawwada", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gwe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gweno", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gwf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gowro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gwg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gwi", + "Part2b": "gwi", + "Part2t": "gwi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gwichʼin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gwj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ǀGwi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gwm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Awngthim", + "Comment": null + }, + { + "Id": "gwn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gwandara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gwr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gwere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gwt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gawar-Bati", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gwu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Guwamu", + "Comment": null + }, + { + "Id": "gww", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwini", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gwx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gxx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WèSouthern", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gya", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthwestGbaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gyb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Garus", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gyd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kayardild", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gye", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gyem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gyf", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Gungabula", + "Comment": null + }, + { + "Id": "gyg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gbayi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gyi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gyele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gyl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gayil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gym", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngäbere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gyn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GuyaneseCreoleEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gyo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gyalsumdo", + "Comment": null + }, + { + "Id": "gyr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guarayu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gyy", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Gunya", + "Comment": null + }, + { + "Id": "gyz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Geji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gza", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ganza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gzi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gazi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "gzn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gane", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "haa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Han", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HanoiSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gurani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "had", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hatam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hae", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternOromo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "haf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HaiphongSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hahon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hai", + "Part2b": "hai", + "Part2t": "hai", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Haida", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "haj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hajong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HakkaChinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hal", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Halang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ham", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hewa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "han", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hangaza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hakö", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hap", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hupla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "haq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "har", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Harari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "has", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Haisla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hat", + "Part2b": "hat", + "Part2t": "hat", + "Part1": "ht", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Haitian", + "Comment": null + }, + { + "Id": "hau", + "Part2b": "hau", + "Part2t": "hau", + "Part1": "ha", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hausa", + "Comment": null + }, + { + "Id": "hav", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Havu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "haw", + "Part2b": "haw", + "Part2t": "haw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hawaiian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernHaida", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hay", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Haya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "haz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hazaragi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hba", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hamba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hbb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Huba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hbn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Heiban", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hbo", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "AncientHebrew", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "hbs", + "Part1": "sh", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Serbo-Croatian", + "Comment": "Codeelementfor639-1hasbeendeprecated", + "ScriptDirection": "ltr" + }, + { + "Id": "hbu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Habu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hca", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AndamanCreoleHindi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hch", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Huichol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hdn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernHaida", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hds", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HondurasSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hdy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hadiyya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hea", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernQiandongMiao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "heb", + "Part2b": "heb", + "Part2t": "heb", + "Part1": "he", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hebrew", + "Comment": null + }, + { + "Id": "hed", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Herdé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "heg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Helong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "heh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hehe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hei", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Heiltsuk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hem", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hemba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "her", + "Part2b": "her", + "Part2t": "her", + "Part1": "hz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Herero", + "Comment": null + }, + { + "Id": "hgm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Haiǁom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hgw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Haigwai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hhi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HoiaHoia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hhr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kerak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hhy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hoyahoya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lamang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hib", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Hibito", + "Comment": null + }, + { + "Id": "hid", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hidatsa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hif", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "FijiHindi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hig", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hih", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pamosu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hii", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hinduri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hij", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hijuk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hik", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Seit-Kaitetu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hil", + "Part2b": "hil", + "Part2t": "hil", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hiligaynon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hin", + "Part2b": "hin", + "Part2t": "hin", + "Part1": "hi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hindi", + "Comment": null + }, + { + "Id": "hio", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsoa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hir", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Himarimã", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hit", + "Part2b": "hit", + "Part2t": "hit", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Hittite", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hiw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hiw", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hix", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hixkaryána", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hji", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Haji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kahe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hke", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hunde", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hkh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khah", + "Comment": null + }, + { + "Id": "hkk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hunjara-KainaKe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hkn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mel-Khaonh", + "Comment": null + }, + { + "Id": "hks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HongKongSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hla", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Halia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hlb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Halbi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hld", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HalangDoan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hle", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hlersu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hlt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MatuChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hlu", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "HieroglyphicLuwian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernMashanHmong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HumburiSenniSonghay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralHuishuiHmong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LargeFloweryMiao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hme", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternHuishuiHmong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HmongDon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthwesternGuiyangHmong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthwesternHuishuiHmong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernHuishuiHmong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ge", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmk", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Maek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LuopoheHmong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralMashanHmong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmn", + "Part2b": "hmn", + "Part2t": "hmn", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Hmong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmo", + "Part2b": "hmo", + "Part2t": "hmo", + "Part1": "ho", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HiriMotu", + "Comment": null + }, + { + "Id": "hmp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernMashanHmong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternQiandongMiao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hmar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hms", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernQiandongMiao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hamtai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hamap", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HmongDô", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternMashanHmong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernGuiyangHmong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hmz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HmongShua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hna", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mina(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hnd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernHindko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hne", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chhattisgarhi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hungu", + "Comment": null + }, + { + "Id": "hnh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ǁAni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hnj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HmongNjua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hnn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hanunoo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hno", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernHindko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hns", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CaribbeanHindustani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hnu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hoa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hoava", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hob", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mari(MadangProvince)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hoc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ho", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hod", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Holma", + "Comment": null + }, + { + "Id": "hoe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Horom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hoh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hobyót", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hoi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Holikachuk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hoj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hadothi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hol", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Holu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hom", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Homa", + "Comment": null + }, + { + "Id": "hoo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Holoholo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hop", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hopi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hor", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Horo", + "Comment": null + }, + { + "Id": "hos", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HoChiMinhCitySignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hot", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hote", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hov", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hovongan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "how", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Honi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hoy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Holiya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hoz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hozo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hpo", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Hpon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hps", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hawai'iSignLanguage(HSL)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hra", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hrangkhol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hrc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NiwerMil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hre", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hre", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hrk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Haruku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hrm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HornedMiao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Haroi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hrp", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nhirrpi", + "Comment": null + }, + { + "Id": "hrt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hértevin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hruso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hrv", + "Part2b": "hrv", + "Part2t": "hrv", + "Part1": "hr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Croatian", + "Comment": null + }, + { + "Id": "hrw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WarwarFeni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hrx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hunsrik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hrz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Harzani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hsb", + "Part2b": "hsb", + "Part2t": "hsb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UpperSorbian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hsh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HungarianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hsl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HausaSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hsn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "XiangChinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hss", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Harsusi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hti", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Hoti", + "Comment": null + }, + { + "Id": "hto", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MinicaHuitoto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hts", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hadza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "htu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hitu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "htx", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MiddleHittite", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Huambisa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "huc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ǂHua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hud", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Huaulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hue", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanFranciscoDelMarHuave", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "huf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Humene", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hug", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Huachipaeri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "huh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Huilliche", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Huli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "huj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernGuiyangHmong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "huk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Hulung", + "Comment": null + }, + { + "Id": "hul", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hungana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hun", + "Part2b": "hun", + "Part2t": "hun", + "Part1": "hu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hungarian", + "Comment": null + }, + { + "Id": "huo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hup", + "Part2b": "hup", + "Part2t": "hup", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hupa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "huq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hur", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Halkomelem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hus", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Huastec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hut", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Humla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "huu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MuruiHuitoto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "huv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanMateoDelMarHuave", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "huw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Hukumina", + "Comment": null + }, + { + "Id": "hux", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NüpodeHuitoto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "huy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hulaulá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "huz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hunzib", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hvc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HaitianVodounCultureLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hve", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanDionisioDelMarHuave", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hvk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Haveke", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hvn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sabu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hvv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SantaMaríaDelMarHuave", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wané", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hwc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hawai'iCreoleEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hwo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hwana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hya", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "hye", + "Part2b": "arm", + "Part2t": "hye", + "Part1": "hy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Armenian", + "Comment": null + }, + { + "Id": "hyw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternArmenian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iai", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iaai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ian", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iatmul", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iar", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Purari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iba", + "Part2b": "iba", + "Part2t": "iba", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iban", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ibb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ibibio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ibd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iwaidja", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ibe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akpes", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ibg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ibanag", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ibh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bih", + "Comment": null + }, + { + "Id": "ibl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ibaloi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ibm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Agoi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ibn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ibino", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ibo", + "Part2b": "ibo", + "Part2t": "ibo", + "Part1": "ig", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Igbo", + "Comment": null + }, + { + "Id": "ibr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ibuoro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ibu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ibu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iby", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ibani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ica", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EdeIca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ich", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Etkywan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "icl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IcelandicSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "icr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IslanderCreoleEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ida", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Idakho-Isukha-Tiriki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "idb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Indo-Portuguese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "idc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Idon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "idd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EdeIdaca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ide", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Idere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "idi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Idi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ido", + "Part2b": "ido", + "Part2t": "ido", + "Part1": "io", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Ido", + "Comment": null + }, + { + "Id": "idr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Indri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ids", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Idesa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "idt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Idaté", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "idu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Idoma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ifa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AmganadIfugao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ifb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BatadIfugao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ife", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ifè", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iff", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ifo", + "Comment": null + }, + { + "Id": "ifk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TuwaliIfugao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ifm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Teke-Fuumu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ifu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MayoyaoIfugao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ify", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Keley-IKallahan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "igb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ebira", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ige", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Igede", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "igg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Igana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "igl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Igala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "igm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanggape", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ign", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ignaciano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "igo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Isebe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "igs", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Interglossa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "igw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Igwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ihb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IhaBasedPidgin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ihi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ihievbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ihp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ihw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Bidhawal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iii", + "Part2b": "iii", + "Part2t": "iii", + "Part1": "ii", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SichuanYi", + "Comment": null + }, + { + "Id": "iin", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Thiin", + "Comment": null + }, + { + "Id": "ijc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Izon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ije", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Biseni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ijj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EdeIje", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ijn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalabari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ijs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SoutheastIjo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ike", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternCanadianInuktitut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ikh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ikhin-Arokho", + "Comment": null + }, + { + "Id": "iki", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ikk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ika", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ikl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ikulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iko", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Olulumo-Ikom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ikp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ikpeshi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ikr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ikaranggal", + "Comment": null + }, + { + "Id": "iks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "InuitSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ikt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Inuinnaqtun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iku", + "Part2b": "iku", + "Part2t": "iku", + "Part1": "iu", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Inuktitut", + "Comment": null + }, + { + "Id": "ikv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iku-Gora-Ankwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ikw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ikwere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ikx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ikz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ikizu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ila", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IleApe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ilb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ila", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ile", + "Part2b": "ile", + "Part2t": "ile", + "Part1": "ie", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Interlingue", + "Comment": null + }, + { + "Id": "ilg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Garig-Ilgar", + "Comment": null + }, + { + "Id": "ili", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IliTurki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ilk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ilongot", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ilm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iranun(Malaysia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ilo", + "Part2b": "ilo", + "Part2t": "ilo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iloko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ilp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iranun(Philippines)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ils", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "InternationalSign", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ilu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ili'uun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ilv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ilue", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ima", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MalaMalasar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "imi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anamgura", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iml", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Miluk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "imn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Imonda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "imo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Imbongu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "imr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Imroing", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ims", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Marsian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "imt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Imotong", + "Comment": null + }, + { + "Id": "imy", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Milyan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ina", + "Part2b": "ina", + "Part2t": "ina", + "Part1": "ia", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Interlingua(InternationalAuxiliaryLanguageAssociation)", + "Comment": null + }, + { + "Id": "inb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Inga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ind", + "Part2b": "ind", + "Part2t": "ind", + "Part1": "id", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Indonesian", + "Comment": null + }, + { + "Id": "ing", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Degexit'an", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "inh", + "Part2b": "inh", + "Part2t": "inh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ingush", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "inj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JungleInga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "inl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IndonesianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "inm", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Minaean", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "inn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Isinai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ino", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Inoke-Yate", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "inp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iñapari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ins", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IndianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "int", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Intha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "inz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ineseño", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ior", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Inor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iou", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tuma-Irumu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iow", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Iowa-Oto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ipi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ipili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ipk", + "Part2b": "ipk", + "Part2t": "ipk", + "Part1": "ik", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Inupiaq", + "Comment": null + }, + { + "Id": "ipo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ipiko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iqu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iquito", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iqw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ikwo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ire", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iresim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "irh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Irarutu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iri", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rigwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "irk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iraqw", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "irn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Irántxe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "irr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ir", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Irula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "irx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamberau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iry", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iraya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "isa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Isabi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "isc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Isconahua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "isd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Isnag", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ise", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ItalianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "isg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IrishSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ish", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Esan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "isi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nkem-Nkum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "isk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ishkashimi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "isl", + "Part2b": "ice", + "Part2t": "isl", + "Part1": "is", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Icelandic", + "Comment": null + }, + { + "Id": "ism", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Masimasi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "isn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Isanzu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iso", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Isoko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "isr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IsraeliSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ist", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Istriot", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "isu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Isu(MenchumDivision)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ita", + "Part2b": "ita", + "Part2t": "ita", + "Part1": "it", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Italian", + "Comment": null + }, + { + "Id": "itb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BinonganItneg", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "itd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernTidung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ite", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Itene", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iti", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "InlaodItneg", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "itk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Judeo-Italian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "itl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Itelmen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "itm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ItuMbonUzo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ito", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Itonama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "itr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iteri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "its", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Isekiri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "itt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MaengItneg", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "itv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Itawit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "itw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ito", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "itx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Itik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ity", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MoyadanItneg", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "itz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Itzá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ium", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IuMien", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ivb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ibatan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ivv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ivatan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iwk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "I-Wak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iwm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iwam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iwo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iwur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iws", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SepikIwam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ixc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ixcatec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ixl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ixil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iya", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iyayu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iyo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mesaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "iyx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yaka(Congo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "izh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ingrian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "izm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kizamani", + "Comment": null + }, + { + "Id": "izr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Izere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "izz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Izii", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jaa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jamamadí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hyam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Popti'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jahanka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jae", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yabem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jaf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JahHut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jaj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zazao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jakun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jal", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yalahatan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jam", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JamaicanCreoleEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jan", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Jandai", + "Comment": null + }, + { + "Id": "jao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yanyuwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jaq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yaqay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jas", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NewCaledonianJavanese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jat", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jakati", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yaur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jav", + "Part2b": "jav", + "Part2t": "jav", + "Part1": "jv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Javanese", + "Comment": null + }, + { + "Id": "jax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JambiMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jay", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yan-nhangu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jaz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jawe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jbe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Judeo-Berber", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jbi", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Badjiri", + "Comment": null + }, + { + "Id": "jbj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arandai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jbk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Barikewa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jbm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bijim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jbn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nafusi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jbo", + "Part2b": "jbo", + "Part2t": "jbo", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Lojban", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jbr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jofotek-Bromnya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jbt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jabutí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jbu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JukunTakum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jbw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yawijibaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jcs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JamaicanCountrySignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jct", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Krymchak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jda", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jad", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jdg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jadgali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jdt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Judeo-Tat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jeb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jebero", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jee", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jerung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jeh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jeh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jei", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jek", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JeriKuo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jel", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yelmek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jen", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jer", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jet", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jeu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JonkorBourmataguil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jgb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ngbee", + "Comment": null + }, + { + "Id": "jge", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Judeo-Georgian", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "jgk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gwak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jgo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngomba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jhi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jehai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jhs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JhankotSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jib", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jibu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jic", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jid", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bu(KadunaState)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jie", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jilbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jig", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jingulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jih", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "sTodsde", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jii", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jiiddu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jil", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jilim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jim", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jimi(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jio", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jiamao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jiq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guanyinqiao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jit", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jita", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jiu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YouleJinuo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jiv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shuar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jiy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BuyuanJinuo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jje", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jejueo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jjr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bankal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaera", + "Comment": null + }, + { + "Id": "jkm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MobwaKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jko", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kubo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jkp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PakuKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jkr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koro(India)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AmamiKoniyaSignLanguage", + "Comment": null + }, + { + "Id": "jku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Labir", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jle", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngile", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jls", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JamaicanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jmb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zumbun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jmc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Machame", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jmd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yamdena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jmi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jimi(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jumli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jmn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MakuriNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jmr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jms", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mashi(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jmw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mouwase", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jmx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternJuxtlahuacaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jna", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jangshung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jnd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jandavra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jng", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yangman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Janji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jnj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yemsa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jnl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rawat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jns", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jaunsari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "job", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Joba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jod", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wojenaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jog", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jogi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jor", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Jorá", + "Comment": null + }, + { + "Id": "jos", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JordanianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jow", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jowulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jpa", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "JewishPalestinianAramaic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jpn", + "Part2b": "jpn", + "Part2t": "jpn", + "Part1": "ja", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Japanese", + "Comment": null + }, + { + "Id": "jpr", + "Part2b": "jpr", + "Part2t": "jpr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Judeo-Persian", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "jqr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jaqaru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jra", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jarai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jrb", + "Part2b": "jrb", + "Part2t": "jrb", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Judeo-Arabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "jrr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jiru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jrt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jakattoe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Japrería", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jsl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JapaneseSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Júma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wannu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "juc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Jurchen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jud", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Worodougou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "juh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hõne", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jui", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ngadjuri", + "Comment": null + }, + { + "Id": "juk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wapan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jul", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jirel", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jumjum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jun", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Juang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "juo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jiba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jup", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hupdë", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jur", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jurúna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jus", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JumlaSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jut", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Jutish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "juu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ju", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "juw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wãpha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "juy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Juray", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jvd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Javindo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jvn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CaribbeanJavanese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jwi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jwira-Pepesa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jya", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jiarong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "jye", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Judeo-YemeniArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "jyy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kaa", + "Part2b": "kaa", + "Part2t": "kaa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kara-Kalpak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kab", + "Part2b": "kab", + "Part2t": "kab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kabyle", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kac", + "Part2b": "kac", + "Part2t": "kac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kachin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Adara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kae", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ketangalan", + "Comment": null + }, + { + "Id": "kaf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Katso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kajaman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kara(CentralAfricanRepublic)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kai", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karekare", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kaj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jju", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalanguya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kal", + "Part2b": "kal", + "Part2t": "kal", + "Part1": "kl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalaallisut", + "Comment": null + }, + { + "Id": "kam", + "Part2b": "kam", + "Part2t": "kam", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamba(Kenya)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kan", + "Part2b": "kan", + "Part2t": "kan", + "Part1": "kn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kannada", + "Comment": null + }, + { + "Id": "kao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Xaasongaxango", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kap", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bezhta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kaq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Capanahua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kas", + "Part2b": "kas", + "Part2t": "kas", + "Part1": "ks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kashmiri", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "kat", + "Part2b": "geo", + "Part2t": "kat", + "Part1": "ka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Georgian", + "Comment": null + }, + { + "Id": "kau", + "Part2b": "kau", + "Part2t": "kau", + "Part1": "kr", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Kanuri", + "Comment": null + }, + { + "Id": "kav", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Katukína", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kaw", + "Part2b": "kaw", + "Part2t": "kaw", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Kawi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kay", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamayurá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kaz", + "Part2b": "kaz", + "Part2t": "kaz", + "Part1": "kk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kazakh", + "Comment": null + }, + { + "Id": "kba", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kalarko", + "Comment": null + }, + { + "Id": "kbb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kaxuiâna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kadiwéu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbd", + "Part2b": "kbd", + "Part2t": "kbd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kabardian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanju", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khamba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Camsá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaptiau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GrassKoiari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanembu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iwal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kare(CentralAfricanRepublic)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Keliko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kabiyè", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kafa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kande", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abadi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kabutra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dera(Indonesia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaiep", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ApMa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kby", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MangaKanuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kbz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duhwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kca", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khanty", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kawacha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lubila", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NgkâlmpwKanum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kce", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaivi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ukaan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tyap", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kch", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vono", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kci", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamantan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kobiana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kck", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kela(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gula(CentralAfricanRepublic)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nubi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kco", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kinalakna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Katla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koenoem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kct", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kami(Tanzania)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kete", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kabwari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kachama-Ganjule", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Korandje", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kcz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Konongo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kda", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Worimi", + "Comment": null + }, + { + "Id": "kdc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kutu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yankunytjatjara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kde", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Makonde", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mamusi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Seba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kumam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karamojong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Numèè", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsikimba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kagoma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kunda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaningdon-Nindem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koch", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karaim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kadaru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koneraw", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Keder", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kdz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwaja", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kea", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kabuverdianu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "keb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kélé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kec", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Keiga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ked", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kerewe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kee", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternKeres", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kef", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kpessi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "keg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "keh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Keak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kei", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kej", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kadar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kek", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kekchí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kel", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kela(DemocraticRepublicofCongo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kem", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kemak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ken", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kenyang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "keo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kakwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kep", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaikadi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "keq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ker", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kes", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kugbo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ket", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ket", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "keu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akebu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kev", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanikkaran", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kew", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestKewa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kex", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kukna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "key", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kupia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kez", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kukele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kodava", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthwesternKolami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Konda-Dora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KorraKoraga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kota(India)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kff", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kudiya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kurichiya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KannadaKurumba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kemiehua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kinnauri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khunsari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koro(Côted'Ivoire)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Korwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Korku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kachhi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bilaspuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kft", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanjari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Katkari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kurmukar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KharamNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KulluPahari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kumaoni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kfz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koromfé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kga", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koyaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kawe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kge", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Komering", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kube", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kusunda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SelangorSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GamaleKham", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaiwá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgl", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kunggari", + "Comment": null + }, + { + "Id": "kgn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karingani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Krongo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaingang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamoro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kumbainggar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Somyev", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kobol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KaronDori", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamaru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kgy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kyerung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kha", + "Part2b": "kha", + "Part2t": "kha", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khasi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lü", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TukangBesiNorth", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BädiKanum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Korowai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khuen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KhamsTibetan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kehu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuturmi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HalhMongolian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lusi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khm", + "Part2b": "khm", + "Part2t": "khm", + "Part1": "km", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khmer", + "Comment": null + }, + { + "Id": "khn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khandesi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kho", + "Part2b": "kho", + "Part2t": "kho", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Khotanese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kapori", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KoyraChiiniSonghay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kharia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kasua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kht", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khamti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nkhumbi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khvarshi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khowar", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "khx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kele(DemocraticRepublicofCongo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "khz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Keapara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kib", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koalib", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kic", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kickapoo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kid", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koshin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kie", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kibet", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kif", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternParbateKham", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kig", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kimaama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kih", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kilmeri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kii", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kitsai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kij", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kilivila", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kik", + "Part2b": "kik", + "Part2t": "kik", + "Part1": "ki", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kikuyu", + "Comment": null + }, + { + "Id": "kil", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kariya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kim", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karagas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kin", + "Part2b": "kin", + "Part2t": "kin", + "Part1": "rw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kinyarwanda", + "Comment": null + }, + { + "Id": "kio", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kiowa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kip", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SheshiKham", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kiq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kosadle", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kir", + "Part2b": "kir", + "Part2t": "kir", + "Part1": "ky", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kirghiz", + "Comment": null + }, + { + "Id": "kis", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kis", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kit", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Agob", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kiu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kirmanjki(individuallanguage)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kiv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kimbu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kiw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NortheastKiwai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kix", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KhiamniunganNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kiy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kirikiri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kiz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kisi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kja", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mlap", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Q'anjob'al", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CoastalKonjo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernKiwai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kje", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kisar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khmu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khakas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kji", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zabana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khinalugh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HighlandKonjo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternParbateKham", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kháng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kunjen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HarijanKinnauri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PwoEasternKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternKeres", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kurudu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EastKewa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PhraePwoKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kju", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kashaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjv", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "KaikavianLiteraryLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ramopa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Erave", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kjz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bumthangkha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kakanda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwerisa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Odoodee", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kinuku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kke", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kakabe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KalaktangMonpa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MabakaValleyKalinga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khün", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kki", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kagulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kako", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kokota", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KosarekYale", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kiong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KonKeu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kko", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gugubera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaeku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kir-Balar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Giiwo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tumi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kangean", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Teke-Kukuya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kohin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kky", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GuuguYimidhirr", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kkz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaska", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kla", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Klamath-Modoc", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kiliwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kolbila", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kld", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gamilaraay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kle", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kulung(Nepal)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kendeje", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tagakaulo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Weliki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kli", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalumpang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khalaj", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kono(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kll", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KaganKalagan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Migum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kln", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Kalenjin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kapya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamasa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rumu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khaling", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kls", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalasha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nukna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Klao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maskelynes", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tado", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koluwawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kly", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "klz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kabola", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Konni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmb", + "Part2b": "kmb", + "Part2t": "kmb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kimbundu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernDong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MajukayangKalinga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kme", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bakole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kare(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kâte", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kami(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KumarbhagPaharia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LimosKalinga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TanudanKalinga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kom(India)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awtuw", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwoma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gimme", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernKurdish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kms", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamasau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kemtuik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanite", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KaripúnaCreoleFrench", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Komo(DemocraticRepublicofCongo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waboda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kmz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KhorasaniTurkish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kna", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dera(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LubuaganKalinga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralKanuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Konda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kne", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kankanaey", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mankanya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koongo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanufi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternKanjobal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuranko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Keninjal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanamarí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Konkani(individuallanguage)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kno", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kono(SierraLeone)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwanja", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kintaq", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaningra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kns", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kensiu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PanoanKatukína", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kono(Guinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tabo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kung-Ekoka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kendayan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kny", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanyok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "knz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalamsé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "koa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Konomala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "koc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kpati", + "Comment": null + }, + { + "Id": "kod", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kodi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "koe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kacipo-BaleSuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kof", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kubi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kog", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Cogui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "koh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "koi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Komi-Permyak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kok", + "Part2b": "kok", + "Part2t": "kok", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Konkani(macrolanguage)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kol", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kol(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kom", + "Part2b": "kom", + "Part2t": "kom", + "Part1": "kv", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Komi", + "Comment": null + }, + { + "Id": "kon", + "Part2b": "kon", + "Part2t": "kon", + "Part1": "kg", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Kongo", + "Comment": null + }, + { + "Id": "koo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Konzo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kop", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waube", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "koq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kota(Gabon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kor", + "Part2b": "kor", + "Part2t": "kor", + "Part1": "ko", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Korean", + "Comment": null + }, + { + "Id": "kos", + "Part2b": "kos", + "Part2t": "kos", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kosraean", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kot", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lagwan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kou", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koke", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kov", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kudu-Camo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kow", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kugama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "koy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koyukon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "koz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Korak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kutto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MulluKurumba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Curripaco", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpe", + "Part2b": "kpe", + "Part2t": "kpe", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Kpelle", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Komba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kapingamarangi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kph", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kplang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kofei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karajá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kpan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kpala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koho", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kepkiriwát", + "Comment": null + }, + { + "Id": "kpo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ikposo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Korupun-Sela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Korafe-Yegha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kps", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tehit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karata", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kafoa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Komi-Zyrian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kobon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MountainKoiali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koryak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kpz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kupsabiny", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kovai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Doromu-Koki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KoySanjaqSurat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalagan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kakabai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kisankasa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koitabu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koromira", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KotafonGbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kql", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kyenele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khisa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaonde", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternKrahn", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kimré", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Krenak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kimaragang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernKissi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KliasRiverKadazan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Seroa", + "Comment": null + }, + { + "Id": "kqv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Okolod", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kandas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mser", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koorete", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kqz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Korana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kra", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kumhali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Karkin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krc", + "Part2b": "krc", + "Part2t": "krc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karachay-Balkar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kairui-Midiki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kre", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Panará", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koro(Vanuatu)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kurama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kri", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Krio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kinaray-A", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kerek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krl", + "Part2b": "krl", + "Part2t": "krl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karelian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sapo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Durop", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Krung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gbaya(Sudan)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TumariKanuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kru", + "Part2b": "kru", + "Part2t": "kru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kurukh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kavet", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternKrahn", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kry", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kryts", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "krz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SotaKanum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shambala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernKalinga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuanua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kse", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bafia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kusaghe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kölsch", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Krisa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uare", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kansa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kumalu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kumba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kasiguranin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kso", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kofa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwaami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Borong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kss", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernKisi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kst", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Winyé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khamyang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kusu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "S'gawKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kedang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KhariaThar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ksz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kodaku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kta", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Katua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kambaata", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kholok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kokata", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kte", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nubri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kalkutung", + "Comment": null + }, + { + "Id": "kth", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kti", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthMuyu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PlapoKrumen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kaniet", + "Comment": null + }, + { + "Id": "ktl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koroshi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kurti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karitiâna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kto", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuot", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaduo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktq", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Katabaga", + "Comment": null + }, + { + "Id": "kts", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthMuyu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ketum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kituba(DemocraticRepublicofCongo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternKatu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kato", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaxararí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kty", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kango(Bas-UéléDistrict)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ktz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Juǀʼhoan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kua", + "Part2b": "kua", + "Part2t": "kua", + "Part1": "kj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuanyama", + "Comment": null + }, + { + "Id": "kub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kutep", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kuc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwinsu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kud", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "'Auhelawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kue", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuman(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kuf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternKatu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kug", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kupa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kuh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kushi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuikúro-Kalapálo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kuj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuria", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kuk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kepo'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kul", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kulere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kum", + "Part2b": "kum", + "Part2t": "kum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kumyk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kun", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kunama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kuo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kumukio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kup", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kunimaipa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kuq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karipuna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kur", + "Part2b": "kur", + "Part2t": "kur", + "Part1": "ku", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Kurdish", + "Comment": null + }, + { + "Id": "kus", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kusaal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kut", + "Part2b": "kut", + "Part2t": "kut", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kutenai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kuu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UpperKuskokwim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kuv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kuw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kpagua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kux", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kukatja", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kuy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuuku-Ya'u", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kuz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kunza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kva", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bagvalal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kubu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kove", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kui(Indonesia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kve", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalabakan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kabalai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuni-Boazi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Komodo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Psikye", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KoreanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kayaw", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kendem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BorderKuna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dobel", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kompane", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GebaKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kerinci", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LahtaKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YinbawKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kola", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wersing", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ParkariKoli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YintaleKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kvz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsakwambo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dâw", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Likwala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwaio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwerba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwara'ae", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SaraKabaDeme", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kowiai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awa-Cuaiquer", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwakiutl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kofyar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwambi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwangali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwomtari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kodia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwer", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kws", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwesten", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwakum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SaraKabaNáà", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kww", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwinti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khirwar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanSalvadorKongo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kwz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kwadi", + "Comment": null + }, + { + "Id": "kxa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kairiru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Krobu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Konso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Brunei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ManumanawKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karo(Ethiopia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KeningauMurut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kulfa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ZayeinKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernKhmer", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanowit-TanjongMelanau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxo", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kanoé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WadiyaraKoli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SmärkyKanum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koro(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kangjia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koiwat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuvi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Konai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Likuba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kayong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kxz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kerewo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kya", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ButbutKalinga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kyaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karey", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kye", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Krache", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kouya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Keyagana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kiput", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamayo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalapuya", + "Comment": null + }, + { + "Id": "kym", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kpatili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernBinukidnon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kelon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kenga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuruáya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kys", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BaramKayan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kayagar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternKayah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kayort", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kudmali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rapoisi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kambaira", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kyz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kayabí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kza", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternKaraboro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaibobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BondoukouKulango", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kadai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kze", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kosena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Da'aKaili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kikai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kelabit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kazukuru", + "Comment": null + }, + { + "Id": "kzl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kayeli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kais", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kokola", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaningi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaidipang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaike", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SugutDusun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kayupulau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Komyandaret", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Karirí-Xocó", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzx", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kamarian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kango(TshopoDistrict)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "kzz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalabra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "laa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernSubanen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lab", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "LinearA", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lacandon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lad", + "Part2b": "lad", + "Part2t": "lad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ladino", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lae", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pattani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "laf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lafofa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rangi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lah", + "Part2b": "lah", + "Part2t": "lah", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Lahnda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lai", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lambya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "laj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lango(Uganda)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lal", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lalia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lam", + "Part2b": "lam", + "Part2t": "lam", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lamba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lan", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lao", + "Part2b": "lao", + "Part2t": "lao", + "Part1": "lo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lao", + "Comment": null + }, + { + "Id": "lap", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laka(Chad)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "laq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Qabiao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lar", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Larteh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "las", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lama(Togo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lat", + "Part2b": "lat", + "Part2t": "lat", + "Part1": "la", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Latin", + "Comment": null + }, + { + "Id": "lau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lav", + "Part2b": "lav", + "Part2t": "lav", + "Part1": "lv", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Latvian", + "Comment": null + }, + { + "Id": "law", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lauje", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tiwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lay", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LamaBai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "laz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Aribwatsa", + "Comment": null + }, + { + "Id": "lbb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Label", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lakkia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tinani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laopang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "La'bi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ladakhi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralBontok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LibonBikol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lodhi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rmeet", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laven", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wampar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lohorung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LibyanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lachi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Labu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lavatbura-Lamusong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tolaki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lawangan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lby", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Lamalama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lbz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lardil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lcc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Legenyem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lcd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lola", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lce", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Loncong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lcf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lubu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lch", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luchazi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lcl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lisela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lcm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tungag", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lcp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternLawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lcq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luhu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lcs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lisabata-Nuniali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lda", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kla-Dan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ldb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dũya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ldd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luri", + "Comment": null + }, + { + "Id": "ldg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lenyima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ldh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lamja-Dengsa-Tola", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ldi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ldj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lemoro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ldk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Leelau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ldl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ldm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Landoma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ldn", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Láadan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ldo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Loo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ldp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ldq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lufu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lea", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lega-Shabunda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "leb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lala-Bisa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lec", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Leco", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "led", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lendu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lee", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lyélé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lef", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lelemi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "leh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lenje", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lei", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lemio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lej", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lengola", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lek", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Leipon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lel", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lele(DemocraticRepublicofCongo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lem", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nomaande", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "len", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Lenca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "leo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Leti(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lep", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lepcha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "leq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lembena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ler", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lenkau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "les", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "let", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lesing-Gelimi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "leu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kara(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lev", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lamma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lew", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LedoKaili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lex", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ley", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lemolang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lez", + "Part2b": "lez", + "Part2t": "lez", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lezghian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lfa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lefa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lfn", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "LinguaFrancaNova", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lga", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lungga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lgb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laghu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lgg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lugbara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lgh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laghuu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lgi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lengilu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lgk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lingarak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lgl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lgm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lega-Mwenga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lgn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "T'apo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lgo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lango(SouthSudan)", + "Comment": null + }, + { + "Id": "lgq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Logba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lgr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lengo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lgs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Guinea-BissauSignLanguage", + "Comment": null + }, + { + "Id": "lgt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pahi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lgu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Longgu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lgz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ligenza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lha", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laha(VietNam)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lhh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laha(Indonesia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lhi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LahuShi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lhl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LahulLohar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lhm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lhomi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lhn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lahanan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lhp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lhokpu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lhs", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mlahsö", + "Comment": null + }, + { + "Id": "lht", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lo-Toga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lhu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lahu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "West-CentralLimba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lib", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Likum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lic", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hlai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lid", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyindrou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lie", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Likila", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lif", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Limbu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lig", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ligbi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lih", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lihir", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lij", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ligurian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lik", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lika", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lil", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lillooet", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lim", + "Part2b": "lim", + "Part2t": "lim", + "Part1": "li", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Limburgan", + "Comment": null + }, + { + "Id": "lin", + "Part2b": "lin", + "Part2t": "lin", + "Part1": "ln", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lingala", + "Comment": null + }, + { + "Id": "lio", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Liki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lip", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sekpele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "liq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Libido", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lir", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LiberianEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lis", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lisu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lit", + "Part2b": "lit", + "Part2t": "lit", + "Part1": "lt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lithuanian", + "Comment": null + }, + { + "Id": "liu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Logorik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "liv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Liv", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "liw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Col", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lix", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Liabuku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "liy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Banda-Bambari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "liz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Libinza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lja", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Golpa", + "Comment": null + }, + { + "Id": "lje", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rampi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lji", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laiyolo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ljl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Li'o", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ljp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LampungApi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ljw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yirandali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ljx", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yuru", + "Comment": null + }, + { + "Id": "lka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lakalei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lkb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kabras", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lkc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kucong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lkd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lakondê", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lke", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kenyi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lkh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lakha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lki", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laki", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "lkj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Remun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lkl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laeko-Libuat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lkm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kalaamaya", + "Comment": null + }, + { + "Id": "lkn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lakon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lko", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khayo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lkr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Päri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kisa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lkt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lakota", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lku", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kungkari", + "Comment": null + }, + { + "Id": "lky", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lokoya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lla", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lala-Roba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "llb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lolo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "llc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lele(Guinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lld", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ladin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lle", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lele(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "llf", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Hermit", + "Comment": null + }, + { + "Id": "llg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "llh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lamu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lli", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Teke-Laali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "llj", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "LadjiLadji", + "Comment": null + }, + { + "Id": "llk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Lelak", + "Comment": null + }, + { + "Id": "lll", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lilau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "llm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lasalimu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lln", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lele(Chad)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "llp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthEfate", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "llq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lolak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lls", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LithuanianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "llu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "llx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lauan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EastLimba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Merei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Limilngan", + "Comment": null + }, + { + "Id": "lmd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lumun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lme", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pévé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthLembata", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lamogai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lambichhong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lombi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestLembata", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lamkang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lambadi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lombard", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Limbum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lamatuka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lamalera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lamenu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lomaiviti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LakeMiwok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laimbue", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lmy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lamboya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lna", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Langbashe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lnb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbalanhu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lnd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lundayeh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lng", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Langobardic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lnh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lanoh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Daantanai'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lnj", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Leningitij", + "Comment": null + }, + { + "Id": "lnl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthCentralBanda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lnm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Langam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lnn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lorediakarkar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lns", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lamnso'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lnu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Longuda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lnw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Lanima", + "Comment": null + }, + { + "Id": "lnz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lonzo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "loa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Loloda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lob", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lobi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "loc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Inonhan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "loe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saluan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lof", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Logol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "log", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Logo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "loh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laarim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "loi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Loma(Côted'Ivoire)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "loj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lok", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Loko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lol", + "Part2b": "lol", + "Part2t": "lol", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mongo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lom", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Loma(Liberia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lon", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MalawiLomwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "loo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lombo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lop", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lopa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "loq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lobala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lor", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Téén", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "los", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Loniu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lot", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Otuho", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lou", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LouisianaCreole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lov", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lopi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "low", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TampiasLobu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lox", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Loun", + "Comment": null + }, + { + "Id": "loy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Loke", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "loz", + "Part2b": "loz", + "Part2t": "loz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lozi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lpa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lelepa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lpe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lepki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lpn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LongPhuriNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lpo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lipo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lpx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lopit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lqr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Logir", + "Comment": null + }, + { + "Id": "lra", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RaraBakati'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lrc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernLuri", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "lre", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Laurentian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lrg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Laragia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lri", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marachi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lrk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Loarki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lrl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lari", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "lrm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lrn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lorang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lrr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernYamphu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lrt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LarantukaMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lrv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Larevat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lrz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lemerig", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lsa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lasgerdi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lsb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BurundianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lsc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AlbarradasSignLanguage", + "Comment": null + }, + { + "Id": "lsd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LishanaDeni", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "lse", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lusengo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lsh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lsi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lashi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lsl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LatvianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lsm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saamia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lsn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TibetanSignLanguage", + "Comment": null + }, + { + "Id": "lso", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LaosSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lsp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PanamanianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lsr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aruop", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lss", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lasi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lst", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TrinidadandTobagoSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lsv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SiviaSignLanguage", + "Comment": null + }, + { + "Id": "lsw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SeychellesSignLanguage", + "Comment": null + }, + { + "Id": "lsy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MauritianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ltc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "LateMiddleChinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ltg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Latgalian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lth", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Thur", + "Comment": null + }, + { + "Id": "lti", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Leti(Indonesia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ltn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Latundê", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lto", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsotso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lts", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tachoni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ltu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Latu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ltz", + "Part2b": "ltz", + "Part2t": "ltz", + "Part1": "lb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luxembourgish", + "Comment": null + }, + { + "Id": "lua", + "Part2b": "lua", + "Part2t": "lua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luba-Lulua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lub", + "Part2b": "lub", + "Part2t": "lub", + "Part1": "lu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luba-Katanga", + "Comment": null + }, + { + "Id": "luc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aringa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lud", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ludian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lue", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luvale", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "luf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laua", + "Comment": null + }, + { + "Id": "lug", + "Part2b": "lug", + "Part2t": "lug", + "Part1": "lg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ganda", + "Comment": null + }, + { + "Id": "lui", + "Part2b": "lui", + "Part2t": "lui", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Luiseno", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "luj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "luk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lunanakha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lul", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Olu'bo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luimbi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lun", + "Part2b": "lun", + "Part2t": "lun", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lunda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "luo", + "Part2b": "luo", + "Part2t": "luo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luo(KenyaandTanzania)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lup", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lumbu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "luq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lucumi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lur", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laura", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lus", + "Part2b": "lus", + "Part2t": "lus", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lushai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lut", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lushootseed", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "luu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lumba-Yakkha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "luv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luwati", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "luw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luo(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "luy", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Luyia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "luz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernLuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lva", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maku'a", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lvi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lavi", + "Comment": null + }, + { + "Id": "lvk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lavukaleve", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lvl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lwel", + "Comment": null + }, + { + "Id": "lvs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "StandardLatvian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lvu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Levuka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lwalu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lwe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LewoEleng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lwg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lwh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WhiteLachi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lwl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternLawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lwm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laomian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lwo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luwo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lws", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MalawianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lwt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lewotobi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lwu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lawu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lww", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lewo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lxm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lakurumau", + "Comment": null + }, + { + "Id": "lya", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Layakha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lyg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lyngngam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lyn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luyana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lzh", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "LiteraryChinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lzl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Litzlitz", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lzn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LeinongNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "lzz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Laz", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "maa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanJerónimoTecóatlMazatec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YutanduchiMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mad", + "Part2b": "mad", + "Part2t": "mad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Madurese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mae", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bo-Rukul", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "maf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mafa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mag", + "Part2b": "mag", + "Part2t": "mag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Magahi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mah", + "Part2b": "mah", + "Part2t": "mah", + "Part1": "mh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marshallese", + "Comment": null + }, + { + "Id": "mai", + "Part2b": "mai", + "Part2t": "mai", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maithili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "maj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JalapaDeDíazMazatec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mak", + "Part2b": "mak", + "Part2t": "mak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Makasar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mal", + "Part2b": "mal", + "Part2t": "mal", + "Part1": "ml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malayalam", + "Comment": null + }, + { + "Id": "mam", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "man", + "Part2b": "man", + "Part2t": "man", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Mandingo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "maq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChiquihuitlánMazatec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mar", + "Part2b": "mar", + "Part2t": "mar", + "Part1": "mr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marathi", + "Comment": null + }, + { + "Id": "mas", + "Part2b": "mas", + "Part2t": "mas", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Masai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mat", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanFranciscoMatlatzinca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HuautlaMazatec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mav", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sateré-Mawé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "maw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mampruli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "max", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthMoluccanMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "maz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralMazahua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mba", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Higaonon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternBukidnonManobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Macushi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DibabawonManobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbe", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Molale", + "Comment": null + }, + { + "Id": "mbf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BabaMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mangseng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IlianenManobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nadëb", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maxakalí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ombamba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Macaguán", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbo(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malayo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maisin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NukakMakú", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SaranganiManobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MatigsalugManobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbula-Bwazza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbulungish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maring", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mari(EastSepikProvince)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mby", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Memoni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mbz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AmoltepecMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mca", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Machiguenga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bitur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sharanahua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mce", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ItundujiaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Matsés", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mapoyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mch", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maquiritari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mci", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mvanip", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mck", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbunda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcl", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Macaguaje", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MalaccanCreolePortuguese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Masana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mco", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CoatlánMixe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Makaa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Menya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mambai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mct", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mengisa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CameroonMambila", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Minanibai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mawa(Chad)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mpiemo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthWatut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mcz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mawan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mda", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mada(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Morigi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Male(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mde", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maba(Chad)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdf", + "Part2b": "mdf", + "Part2t": "mdf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moksha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Massalat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maguindanaon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mamvu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mangbetu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mangbutu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MalteseSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mayogo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbati", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdr", + "Part2b": "mdr", + "Part2t": "mdr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mandar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mds", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maria(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mboko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SantaLucíaMonteverdeMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbosi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dizin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Male(Ethiopia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mdz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SuruíDoPará", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mea", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Menka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "meb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ikobi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mec", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "med", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Melpa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mee", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mengen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mef", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Megam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "meh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthwesternTlaxiacoMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mei", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Midob", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mej", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Meyah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mek", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mekeo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mel", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralMelanau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mem", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mangala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "men", + "Part2b": "men", + "Part2t": "men", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mende(SierraLeone)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "meo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KedahMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mep", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Miriwoong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "meq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Merey", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mer", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Meru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mes", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Masmaje", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "met", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mato", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "meu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Motu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mev", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mew", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mey", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hassaniyya", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "mez", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Menominee", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PattaniMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bangka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mendankwe-Nkwen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Morisyen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mff", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Naki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mogofin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Matal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wandala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mefele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthMofu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Putai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MarghiSouth", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CrossRiverMbembe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MakassarMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marrithiyel", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MexicanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mft", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mokerang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbwela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mandjak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mulaha", + "Comment": null + }, + { + "Id": "mfx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Melo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mayo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mfz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mabaan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mga", + "Part2b": "mga", + "Part2t": "mga", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MiddleIrish(900-1200)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mararit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Morokodo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mge", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mango", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maklew", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mpumpong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Makhuwa-Meetto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lijili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abureni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mawes", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maleu-Kilenge", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mambae", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbangi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Meta'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternMagar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malila", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mambwe-Lungu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manda(Tanzania)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mongol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mailu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Matengo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Matumbi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbunga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mgz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbugwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mha", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manda(India)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mahongwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mocho", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbugu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Besisi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mamaa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Margu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ma'di", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mogholi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mungaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mauwake", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Makhuwa-Moniga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mócheno", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mho", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mashi(Zambia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BalineseMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mandan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternMari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buru(Indonesia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mht", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mandahuaca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Digaro-Mishmi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbukushu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ma'anyan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mhz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mor(MorIslands)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Miami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mib", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AtatláhucaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mic", + "Part2b": "mic", + "Part2t": "mic", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mi'kmaq", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mid", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mandaic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mie", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OcotepecMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mif", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mofu-Gudur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mig", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanMiguelElGrandeMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mih", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChayucoMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mii", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChigmecatitlánMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mij", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Abar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mik", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mikasuki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mil", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PeñolesMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mim", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AlacatlatzalaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "min", + "Part2b": "min", + "Part2t": "min", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Minangkabau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mio", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PinotepaNacionalMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mip", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Apasco-ApoalaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "miq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mískito", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mir", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IsthmusMixe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mis", + "Part2b": "mis", + "Part2t": "mis", + "Scope": "S", + "Language_Type": "S", + "Ref_Name": "Uncodedlanguages", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mit", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernPueblaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "miu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CacaloxtepecMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "miw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akoye", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mix", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MixtepecMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "miy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AyutlaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "miz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CoatzospanMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Makalero", + "Comment": null + }, + { + "Id": "mjc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanJuanColoradoMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthwestMaidu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mje", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Muskum", + "Comment": null + }, + { + "Id": "mjg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mwera(Nyasa)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mji", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KimMun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mawak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Matukar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mandeali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Medebur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ma(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malankuravan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malapandaram", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjq", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Malaryan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malavedan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Miship", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SauriaPaharia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mju", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manna-Dora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mannan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karbi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mahali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjy", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mahican", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mjz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Majhi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbre", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MalPaharia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Siliput", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkd", + "Part2b": "mac", + "Part2t": "mkd", + "Part1": "mk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Macedonian", + "Comment": null + }, + { + "Id": "mke", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mawchi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Miya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mak(China)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mki", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dhatki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mokilese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Byep", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mokole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moklen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KupangMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mko", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MingangDoso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moikodi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkq", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "BayMiwok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SilacayoapanMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vamale", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KonyankaManinka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mafea", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kituba(Congo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KinamigingManobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mky", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EastMakian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mkz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Makasae", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mla", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbule", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CaoLan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mle", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manambu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlg", + "Part2b": "mlg", + "Part2t": "mlg", + "Part1": "mg", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Malagasy", + "Comment": null + }, + { + "Id": "mlh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mape", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mli", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malimpung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Miltu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ilwana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mll", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MaluaBay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mulam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mln", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malango", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mlomp", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bargam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternManinkakan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vame", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mls", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Masalit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlt", + "Part2b": "mlt", + "Part2t": "mlt", + "Part1": "mt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maltese", + "Comment": null + }, + { + "Id": "mlu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "To'abaita", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Motlav", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moloko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malfaxal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mlz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malaynon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Momina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MichoacánMazahua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maonan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mme", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mae", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mundat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthAmbrym", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mehináku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Musar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Majhwar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mukha-Dora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ManMet", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maii", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mamanwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ManggaBuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Siawi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Musak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternXiangxiMiao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malalamai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mmaala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Miriti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Emae", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Madak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Migaama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mmz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mabaale", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mna", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Muna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnc", + "Part2b": "mnc", + "Part2t": "mnc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manchu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mondé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mne", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Naba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mundani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternMnong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mono(DemocraticRepublicofCongo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mni", + "Part2b": "mni", + "Part2t": "mni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manipuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Munji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mandinka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tiale", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mapena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernMnong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MinBeiChinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Minriq", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mono(USA)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mns", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mansi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mer", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rennell-Bellona", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manikion", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mny", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manyawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mnz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "moa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mwan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "moc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mocoví", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mod", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mobilian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "moe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Innu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mog", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mongondow", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "moh", + "Part2b": "moh", + "Part2t": "moh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mohawk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "moi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mboi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "moj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Monzombo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mok", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Morori", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mom", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mangue", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mon", + "Part2b": "mon", + "Part2t": "mon", + "Part1": "mn", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Mongolian", + "Comment": null + }, + { + "Id": "moo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Monom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mop", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MopánMaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "moq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mor(BomberaiPeninsula)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mor", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mos", + "Part2b": "mos", + "Part2t": "mos", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mossi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mot", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Barí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mou", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mogum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mov", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mohave", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mow", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moi(Congo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mox", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Molima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "moy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shekkacho", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "moz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mukulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mpoto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MalakMalak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mangarrayi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Machinere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Majang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mph", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mpade", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MartuWangka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbara(Chad)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MiddleWatut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YosondúaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mindiri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Miu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Migabac", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Matís", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vangunu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mps", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dadibi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Makuráp", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mungkip", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mapidian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Misima-Panaeati", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mpy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mapia", + "Comment": null + }, + { + "Id": "mpz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mpi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maba(Indonesia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbuko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mangole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Matepi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Momuna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KotaBangunKutaiMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TlazoyaltepecMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mariri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mamasa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RajahKabunsuwanManobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mql", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbelime", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthMarquesan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moronene", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Modole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manipa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Minokok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mander", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestMakian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mandari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mosimo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Murupi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mamuju", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manggarai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mqz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mra", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mlabri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marino", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maricopa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternMagar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mre", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Martha'sVineyardSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Elseng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mising", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MaraChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mri", + "Part2b": "mao", + "Part2t": "mri", + "Part1": "mi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maori", + "Comment": null + }, + { + "Id": "mrj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternMari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hmwaveke", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mortlockese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Merlav", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChekeHolo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Morouas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthMarquesan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maria(India)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maragus", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MarghiCentral", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mono(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mangareva", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maranao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maremgi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mry", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mandaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mrz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marind", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msa", + "Part2b": "may", + "Part2t": "msa", + "Part1": "ms", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Malay(macrolanguage)", + "Comment": null + }, + { + "Id": "msb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Masbatenyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SankaranManinka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YucatecMayaSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mse", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Musey", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mekwei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moraid", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MasikoroMalagasy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SabahMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ma(DemocraticRepublicofCongo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mansaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Molof", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AgusanManobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vurës", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mso", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mombum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msp", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Maritsauá", + "Comment": null + }, + { + "Id": "msq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Caac", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MongolianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mss", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestMasela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Musom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maslam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mansoanka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moresada", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aruamu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "msz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Momare", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mta", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CotabatoManobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AnyinMorofo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Munit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mualang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mte", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mono(SolomonIslands)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Murik(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Una", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mth", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Munggui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mti", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maiwa(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moskona", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbe'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Montol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mator", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Matagalpa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mto", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TotontepecMixe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WichíLhamtésNocten", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Muong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mewari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mts", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mota", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TututepecMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Asaro'o", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernBinukidnon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mtx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TidaáMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mty", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nabi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mundang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mubi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "muc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ajumbu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mud", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MednyjAleut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mue", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MediaLengua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mug", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Musgu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "muh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mündü", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Musi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "muj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mabire", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "muk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mugom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mul", + "Part2b": "mul", + "Part2t": "mul", + "Scope": "S", + "Language_Type": "S", + "Ref_Name": "Multiplelanguages", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maiwala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "muo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mup", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malvi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "muq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternXiangxiMiao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mur", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Murle", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mus", + "Part2b": "mus", + "Part2t": "mus", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Creek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mut", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternMuria", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "muu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yaaku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "muv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Muthuvan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mux", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bo-Ung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "muy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Muyang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "muz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mursi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mva", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mattole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mamboru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mve", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marwari(Pakistan)", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "mvf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PeripheralMongolian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YucuañeMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mulgi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Miyako", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mekmek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvl", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mbara(Australia)", + "Comment": null + }, + { + "Id": "mvn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Minaveha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marovo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Massep", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mpotovoro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marfa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TagalMurut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Machinga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Meoswar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IndusKohistani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mvz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mesqan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mwatebu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Juwal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Are", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mwera(Chimwera)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Murrinh-Patha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aiklep", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mouk-Aria", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Labo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KitaManinkakan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwl", + "Part2b": "mwl", + "Part2t": "mwl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mirandese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyamwanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralMaewo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KalaLagawYa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MünChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwr", + "Part2b": "mwr", + "Part2t": "mwr", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Marwari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mws", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mwimbi-Muthambi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moken", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mittu", + "Comment": null + }, + { + "Id": "mwv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mentawai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mww", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HmongDaw", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mwz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moingi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthwestOaxacaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TezoatlánMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manyika", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Modang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mele-Fila", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malgbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbangala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mvuba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxi", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Mozarabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "mxj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Miju-Mishmi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Monumbo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MaxiGbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Meramera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moi(Indonesia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbowe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TlahuitoltepecMixe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JuquilaMixe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Murik(Malaysia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HuitepecMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JamiltepecMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mada(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MetlatónocMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Namo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mahou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SoutheasternNochixtlánMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mxz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralMasela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mya", + "Part2b": "bur", + "Part2t": "mya", + "Part1": "my", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Burmese", + "Comment": null + }, + { + "Id": "myb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "myc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mayeka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mye", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Myene", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "myf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bambassi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "myg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "myh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Makah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "myj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mangayat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "myk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MamaraSenoufo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "myl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mym", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Me'en", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "myo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anfillo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "myp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pirahã", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "myr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Muniche", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mys", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mesmes", + "Comment": null + }, + { + "Id": "myu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mundurukú", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "myv", + "Part2b": "myv", + "Part2t": "myv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Erzya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "myw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Muyuw", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "myx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Masaaba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "myy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Macuna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "myz", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "ClassicalMandaic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mza", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SantaMaríaZacatepecMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tumzabt", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "mzc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MadagascarSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malimba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mze", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Morawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MonasticSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WichíLhamtésGüisnay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IxcatlánMazatec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NigeriaMambila", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MazatlánMixe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mumuye", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mazanderani", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "mzo", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Matipuhy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Movima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MoriAtas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marúbo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Macanese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mintil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Inapang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Deg", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mawayana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MozambicanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "mzz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maiadomu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "naa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Namla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernNambikuára", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Narak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nae", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Naka'ela", + "Comment": null + }, + { + "Id": "naf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nabak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NagaPidgin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "naj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nalu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nakanai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nal", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nalik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nam", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngan'gityemerri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MinNanChinese", + "Comment": null + }, + { + "Id": "nao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Naaba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nap", + "Part2b": "nap", + "Part2t": "nap", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Neapolitan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "naq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khoekhoe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nar", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iguta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nas", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Naasioi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nat", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ca̱hungwa̱rya̱", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nau", + "Part2b": "nau", + "Part2t": "nau", + "Part1": "na", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nauru", + "Comment": null + }, + { + "Id": "nav", + "Part2b": "nav", + "Part2t": "nav", + "Part1": "nv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Navajo", + "Comment": null + }, + { + "Id": "naw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nawuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nakwi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nay", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ngarrindjeri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "naz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CoatepecNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nba", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyemba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndoe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChangNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngbinda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KonyakNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nagarchal", + "Comment": null + }, + { + "Id": "nbh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngamo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MaoNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngarinyman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nake", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbl", + "Part2b": "nbl", + "Part2t": "nbl", + "Part1": "nr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthNdebele", + "Comment": null + }, + { + "Id": "nbm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NgbakaMa'bo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nkukoli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nnam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nggem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Numana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NamibianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Na", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RongmeiNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngamambo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nbw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernNgbandi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nby", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ningera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nca", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ncb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralNicobarese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ncc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ponam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ncd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nachering", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nce", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yale", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ncf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Notsi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ncg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nisga'a", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nch", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralHuastecaNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nci", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "ClassicalNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ncj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernPueblaNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nck", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Na-kara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ncl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MichoacánNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ncm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nambo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ncn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nauna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nco", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sibe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ncq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernKatang", + "Comment": null + }, + { + "Id": "ncr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ncane", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ncs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NicaraguanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nct", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChotheNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ncu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chumburung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ncx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralPueblaNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ncz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Natchez", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nda", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndasa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KensweiNsei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nde-Nsele-Nta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nde", + "Part2b": "nde", + "Part2t": "nde", + "Part1": "nd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthNdebele", + "Comment": null + }, + { + "Id": "ndf", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Nadruvian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndengereko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SambaLeko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndamba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndolo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngundi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndo", + "Part2b": "ndo", + "Part2t": "ndo", + "Part1": "ng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndonga", + "Comment": null + }, + { + "Id": "ndp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndombe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndoola", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nds", + "Part2b": "nds", + "Part2t": "nds", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LowGerman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndunga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dugun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nduga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lutos", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ndz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndogo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nea", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternNgad'a", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "neb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Toura(Côted'Ivoire)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nec", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nedebang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ned", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nde-Gbite", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nee", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nêlêmwa-Nixumwak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nef", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nefamese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "neg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Negidal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "neh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyenkha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nei", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Neo-Hittite", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nej", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Neko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nek", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Neku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nem", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nemi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nen", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nengone", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "neo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ná-Meo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nep", + "Part2b": "nep", + "Part2t": "nep", + "Part1": "ne", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Nepali(macrolanguage)", + "Comment": null + }, + { + "Id": "neq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthCentralMixe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ner", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yahadian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nes", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BhotiKinnauri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "net", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nete", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "neu", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Neo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nev", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyaheun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "new", + "Part2b": "new", + "Part2t": "new", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Newari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nex", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Neme", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ney", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Neyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nez", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NezPerce", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nfa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dhao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nfd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ahwai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nfl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ayiwo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nfr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nafaanra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nfu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mfumte", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nga", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngbaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernNgbandi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngombe(DemocraticRepublicofCongo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngando(CentralAfricanRepublic)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nge", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngemba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NgbakaManza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nǁng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngizim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngie", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dalabon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lomwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NgatikMen'sCreole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngwo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngurimi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Engdewu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gvoko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kriang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GuerreroNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nagumi", + "Comment": null + }, + { + "Id": "ngw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngwaba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nggwahyi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tibea", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ngz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngungwel", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nha", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nhanda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Beng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "TabascoNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chiripá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternHuastecaNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nhuwala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TetelcingoNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nahari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zacatlán-Ahuacatlán-TepetzintlaNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Isthmus-CosoleacaqueNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MorelosNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nho", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Takuu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Isthmus-PajapanNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HuaxcalecaNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Naro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nht", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OmetepecNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Noone", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TemascaltepecNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternHuastecaNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Isthmus-MecayapanNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernOaxacaNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nhz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SantaMaríaLaAltaNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nia", + "Part2b": "nia", + "Part2t": "nia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nias", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nib", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nakame", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nid", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ngandi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nie", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Niellim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nif", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nig", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ngalakgan", + "Comment": null + }, + { + "Id": "nih", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyiha(Tanzania)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nii", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nii", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nij", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngaju", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nik", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernNicobarese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nil", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nila", + "Comment": null + }, + { + "Id": "nim", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nilamba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nin", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ninzo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nio", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nganasan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "niq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nandi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nir", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nimboran", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nis", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nimi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nit", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SoutheasternKolami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "niu", + "Part2b": "niu", + "Part2t": "niu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Niuean", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "niv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gilyak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "niw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nimo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nix", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hema", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "niy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngiti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "niz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ningil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nja", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nzanyi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "njb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NocteNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "njd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NdondeHamba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "njh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LothaNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nji", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gudanji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "njj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Njen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "njl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Njalgulgule", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "njm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AngamiNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "njn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LiangmaiNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "njo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AoNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "njr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Njerep", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "njs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nisa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "njt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndyuka-TrioPidgin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nju", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngadjunmaya", + "Comment": null + }, + { + "Id": "njx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kunyi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "njy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Njyem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "njz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyishi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nkoya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KhoibuNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nkongho", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koireng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nke", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duke", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "InpuiNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nekgini", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KhezhaNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nki", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ThangalNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nakai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nokuku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Namat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nkangala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nko", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nkonya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkp", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Niuatoputapu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nkami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nukuoro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthAsmat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyika(Tanzania)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BounaKulango", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyika(MalawiandZambia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nkutu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nkoroo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nkz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nkari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nla", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngombale", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nlc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nalca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nld", + "Part2b": "dut", + "Part2t": "nld", + "Part1": "nl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dutch", + "Comment": null + }, + { + "Id": "nle", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EastNyala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nlg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nli", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Grangali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nlj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nlk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NiniaYali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nll", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nihali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nlm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mankiyali", + "Comment": null + }, + { + "Id": "nlo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngul", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nlq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LaoNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nlu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nchumbulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nlv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OrizabaNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nlw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Walangama", + "Comment": null + }, + { + "Id": "nlx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nahali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nly", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyamal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nlz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nalögo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MaramNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BigNambas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndumu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nme", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MziemeNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TangkhulNaga(India)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwasio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MonsangNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngombe(CentralAfricanRepublic)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Namakura", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndemli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manangba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ǃXóõ", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MoyonNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmp", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nimanbur", + "Comment": null + }, + { + "Id": "nmq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nambya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nimbari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nms", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Letemboi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Namonuito", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NortheastMaidu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ngamini", + "Comment": null + }, + { + "Id": "nmw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nimoa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nama(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Namuyi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nmz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nawdm", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nna", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyangumarta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nnb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nande", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nnc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nancere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nnd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestAmbae", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nne", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngandyera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nnf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngaing", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MaringNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nnh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngiemboon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthNuaulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nnj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyangatom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nnk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nankina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nnl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernRengmaNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nnm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Namia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nnn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngete", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nno", + "Part2b": "nno", + "Part2t": "nno", + "Part1": "nn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorwegianNynorsk", + "Comment": null + }, + { + "Id": "nnp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WanchoNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nnq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngindo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nnr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Narungga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nnt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nanticoke", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nnu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dwang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nnv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nugunu(Australia)", + "Comment": null + }, + { + "Id": "nnw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernNuni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nny", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nyangga", + "Comment": null + }, + { + "Id": "nnz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nda'nda'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "noa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WounMeu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nob", + "Part2b": "nob", + "Part2t": "nob", + "Part1": "nb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorwegianBokmål", + "Comment": null + }, + { + "Id": "noc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nuk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nod", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernThai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "noe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nimadi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nof", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nomane", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nog", + "Part2b": "nog", + "Part2t": "nog", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nogai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "noh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nomu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "noi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Noiri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "noj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nonuya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nok", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nooksack", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nol", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nomlaki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "non", + "Part2b": "non", + "Part2t": "non", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldNorse", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nop", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Numanggang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "noq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngongo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nor", + "Part2b": "nor", + "Part2t": "nor", + "Part1": "no", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Norwegian", + "Comment": null + }, + { + "Id": "nos", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternNisu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "not", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nomatsiguenga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nou", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ewage-Notu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nov", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Novial", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "now", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyambo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "noy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Noy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "noz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nayi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "npa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NarPhu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "npb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nupbikha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "npg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ponyo-GongwangNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nph", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PhomNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "npi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nepali(individuallanguage)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "npl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SoutheasternPueblaNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "npn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mondropolon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "npo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PochuriNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nps", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nipsan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "npu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PuimeiNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "npx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Noipx", + "Comment": null + }, + { + "Id": "npy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Napu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nqg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernNago", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nqk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KuraEdeNago", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nql", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngendelengo", + "Comment": null + }, + { + "Id": "nqm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nqn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nqo", + "Part2b": "nqo", + "Part2t": "nqo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "N'Ko", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "nqq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kyan-KaryawNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nqt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nteng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nqy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AkyaungAriNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nra", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nrb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nrc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Noric", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nre", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernRengmaNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nrf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jèrriais", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nrg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Narango", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nri", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChokriNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nrk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngarla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nrl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngarluma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nrm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Narom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nrn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Norn", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nrp", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "NorthPicene", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nrr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Norra", + "Comment": null + }, + { + "Id": "nrt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "NorthernKalapuya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Narua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nrx", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ngurmbur", + "Comment": null + }, + { + "Id": "nrz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SangtamNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "LowerNossob", + "Comment": null + }, + { + "Id": "nsc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nshi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernNisu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nse", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nsenga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthwesternNisu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngasa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngoshie", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NigerianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Naskapi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorwegianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SumiNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nehan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nso", + "Part2b": "nso", + "Part2t": "nso", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pedi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NepaleseSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernSierraMiwok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MaritimeSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nss", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nst", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TaseNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SierraNegraNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthwesternNisu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Navut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nsongo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nasal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nsz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nisenan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ntd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernTidung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nte", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nathembo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ntg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ngantangarra", + "Comment": null + }, + { + "Id": "nti", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Natioro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ntj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngaanyatjarra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ntk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ikoma-Nata-Isenye", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ntm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nateni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nto", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ntomba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ntp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernTepehuan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ntr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Delo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ntu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Natügu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ntw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nottoway", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ntx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TangkhulNaga(Myanmar)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nty", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mantsi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ntz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Natanzi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yuanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nuc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nukuini", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nud", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nue", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngundu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nuf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nusu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nug", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nungali", + "Comment": null + }, + { + "Id": "nuh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndunda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngumbi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nuj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nuk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nuu-chah-nulth", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nul", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "NusaLaut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "num", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Niuafo'ou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nun", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nuo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nguôn", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nup", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nupe-Nupe-Tako", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nuq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nukumanu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nur", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nukuria", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nus", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nuer", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nut", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nung(VietNam)", + "Comment": null + }, + { + "Id": "nuu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngbundu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nuv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernNuni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nuw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nguluwan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nux", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mehek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nuy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nunggubuyu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nuz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TlamacazapaNahuatl", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nvh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nasarian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nvm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Namiae", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nvo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyokon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nwa", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nawathinehena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nwb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyabwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nwc", + "Part2b": "nwc", + "Part2t": "nwc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "ClassicalNewari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nwe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nwg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ngayawung", + "Comment": null + }, + { + "Id": "nwi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthwestTanna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nwm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyamusa-Molo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nwo", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nauo", + "Comment": null + }, + { + "Id": "nwr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nawaru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nww", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndwewe", + "Comment": null + }, + { + "Id": "nwx", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MiddleNewar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nwy", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nottoway-Meherrin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nxa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nauete", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nxd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngando(DemocraticRepublicofCongo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nxe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nxg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngad'a", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nxi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nindi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nxk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KokiNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nxl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthNuaulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nxm", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Numidian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nxn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ngawun", + "Comment": null + }, + { + "Id": "nxo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ndambomo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nxq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Naxi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nxr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ninggerum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nxx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nafri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nya", + "Part2b": "nya", + "Part2t": "nya", + "Part1": "ny", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyanja", + "Comment": null + }, + { + "Id": "nyb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyangbo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyanga-li", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyore", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nye", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyengo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Giryama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyindu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyikina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ama(Sudan)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyaneka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyeu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nym", + "Part2b": "nym", + "Part2t": "nym", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyamwezi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyn", + "Part2b": "nyn", + "Part2t": "nyn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyankole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyo", + "Part2b": "nyo", + "Part2t": "nyo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyoro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyp", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nyang'i", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nayini", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyiha(Malawi)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nys", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyungar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nyawaygi", + "Comment": null + }, + { + "Id": "nyu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyungwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nyulnyul", + "Comment": null + }, + { + "Id": "nyw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyaw", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nyx", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nganyaywana", + "Comment": null + }, + { + "Id": "nyy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyakyusa-Ngonde", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nza", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TigonMbembe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nzb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Njebi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nzd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nzadi", + "Comment": null + }, + { + "Id": "nzi", + "Part2b": "nzi", + "Part2t": "nzi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nzima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nzk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nzakara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nzm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ZemeNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nzr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dir-Nyamzak-Mbarimi", + "Comment": null + }, + { + "Id": "nzs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NewZealandSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nzu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Teke-Nzikou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nzy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nzakambay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "nzz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NangaDamaDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oaa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Orok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oroch", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oar", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldAramaic(upto700BCE)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oav", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldAvar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "obi", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Obispeño", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "obk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernBontok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "obl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oblo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "obm", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Moabite", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "obo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OboManobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "obr", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldBurmese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "obt", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldBreton", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "obu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Obulom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oca", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ocaina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "och", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldChinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oci", + "Part2b": "oci", + "Part2t": "oci", + "Part1": "oc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Occitan(post1500)", + "Comment": null + }, + { + "Id": "ocm", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldCham", + "Comment": null + }, + { + "Id": "oco", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldCornish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ocu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AtzingoMatlatzinca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oda", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Odut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "odk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Od", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "odt", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldDutch", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "odu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Odual", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ofo", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ofo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ofs", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldFrisian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ofu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Efutop", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ogb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ogbia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ogc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ogbah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oge", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldGeorgian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ogg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ogbogolo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ogo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ogu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ogbronuagum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oht", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldHittite", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ohu", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldHungarian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oirata", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oie", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Okolie", + "Comment": null + }, + { + "Id": "oin", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "InebuOne", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ojb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthwesternOjibwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ojc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralOjibwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ojg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternOjibwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oji", + "Part2b": "oji", + "Part2t": "oji", + "Part1": "oj", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Ojibwa", + "Comment": null + }, + { + "Id": "ojp", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldJapanese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ojs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SevernOjibwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ojv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OntongJava", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ojw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternOjibwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Okanagan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "okb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Okobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "okc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kobo", + "Comment": null + }, + { + "Id": "okd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Okodia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oke", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Okpe(SouthwesternEdo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "okg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "KokoBabangk", + "Comment": null + }, + { + "Id": "okh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koresh-eRostam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oki", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Okiek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "okj", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Oko-Juwoi", + "Comment": null + }, + { + "Id": "okk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KwamtimOne", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "okl", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "OldKentishSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "okm", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MiddleKorean(10th-16thcent.)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "okn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oki-No-Erabu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oko", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldKorean(3rd-9thcent.)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "okr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kirike", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oko-Eni-Osayen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "okv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Orokaiva", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "okx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Okpe(NorthwesternEdo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "okz", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldKhmer", + "Comment": null + }, + { + "Id": "ola", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Walungge", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "old", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mochi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ole", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Olekha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "olk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Olkol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "olm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oloma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "olo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Livvi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "olr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Olrat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "olt", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldLithuanian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "olu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuvale", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Omaha-Ponca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "omb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EastAmbae", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "omc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mochica", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "omg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Omagua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "omi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Omi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "omk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Omok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ombo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "omn", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Minoan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "omo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Utarmbung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "omp", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldManipuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "omr", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldMarathi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "omt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Omotik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "omu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Omurano", + "Comment": null + }, + { + "Id": "omw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthTairora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "omx", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldMon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "omy", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldMalay", + "Comment": null + }, + { + "Id": "ona", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ona", + "Comment": null + }, + { + "Id": "onb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lingao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "one", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oneida", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ong", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Olo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Onin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "onj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Onjob", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "onk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KaboreOne", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "onn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Onobasulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ono", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Onondaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "onp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sartang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "onr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernOne", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ons", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ono", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ont", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ontenu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "onu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Unua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "onw", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldNubian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "onx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OninBasedPidgin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ood", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TohonoO'odham", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oog", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oon", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Önge", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oor", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oorlams", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oos", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldOssetic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "opa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Okpamheri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "opk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kopkaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "opm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oksapmin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "opo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Opao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "opt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Opata", + "Comment": null + }, + { + "Id": "opy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ofayé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ora", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oroha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "orc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Orma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ore", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Orejón", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "org", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oring", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "orh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oroqen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ori", + "Part2b": "ori", + "Part2t": "ori", + "Part1": "or", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Oriya(macrolanguage)", + "Comment": null + }, + { + "Id": "orm", + "Part2b": "orm", + "Part2t": "orm", + "Part1": "om", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Oromo", + "Comment": null + }, + { + "Id": "orn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OrangKanaq", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Orokolo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "orr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oruma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ors", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OrangSeletar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ort", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AdivasiOriya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ormuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "orv", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldRussian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "orw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OroWin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "orx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ory", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Odia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "orz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ormu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "osa", + "Part2b": "osa", + "Part2t": "osa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Osage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "osc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Oscan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "osi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Osing", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "osn", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldSundanese", + "Comment": null + }, + { + "Id": "oso", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ososo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "osp", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldSpanish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oss", + "Part2b": "oss", + "Part2t": "oss", + "Part1": "os", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ossetian", + "Comment": null + }, + { + "Id": "ost", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Osatu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "osu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernOne", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "osx", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldSaxon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ota", + "Part2b": "ota", + "Part2t": "ota", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OttomanTurkish(1500-1928)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "otb", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldTibetan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "otd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OtDanum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ote", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MezquitalOtomi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oti", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Oti", + "Comment": null + }, + { + "Id": "otk", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldTurkish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "otl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TilapaOtomi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "otm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternHighlandOtomi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "otn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TenangoOtomi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "otq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "QuerétaroOtomi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "otr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Otoro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ots", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EstadodeMéxicoOtomi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ott", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TemoayaOtomi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "otu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Otuke", + "Comment": null + }, + { + "Id": "otw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ottawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "otx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TexcatepecOtomi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oty", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldTamil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "otz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IxtencoOtomi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tagargrent", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Glio-Oubi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oue", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oune", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oui", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldUighur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oum", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ouma", + "Comment": null + }, + { + "Id": "ovd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Elfdalian", + "Comment": null + }, + { + "Id": "owi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Owiniga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "owl", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldWelsh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oyb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oyd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oyda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oym", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wayampi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "oyy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Oya'oya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ozm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koonzime", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Parecís", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pacoh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paumarí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pae", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pagibete", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "paf", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Paranawát", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pag", + "Part2b": "pag", + "Part2t": "pag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pangasinan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tenharim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pai", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Parakanã", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pal", + "Part2b": "pal", + "Part2t": "pal", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Pahlavi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pam", + "Part2b": "pam", + "Part2t": "pam", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pampanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pan", + "Part2b": "pan", + "Part2t": "pan", + "Part1": "pa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Panjabi", + "Comment": null + }, + { + "Id": "pao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernPaiute", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pap", + "Part2b": "pap", + "Part2t": "pap", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Papiamento", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "paq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Parya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "par", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Panamint", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pas", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Papasena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pau", + "Part2b": "pau", + "Part2t": "pau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Palauan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pav", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pakaásnovos", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "paw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pawnee", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pax", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Pankararé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pay", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pech", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "paz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Pankararú", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Páez", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Patamona", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MezontlaPopoloca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CoyotepecPopoloca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Paraujano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "E'ñapaWoromaipu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Parkwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mak(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PueblaMazatec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kpasam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Papel", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Badyara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pangwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralPame", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernPashto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernPashto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pbv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pnar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pby", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pyu(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pca", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SantaInésAhuatempanPopoloca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pcb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pear", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pcc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bouyei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pcd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Picard", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pce", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RuchingPalaung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pcf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paliyan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pcg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paniya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pch", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pardhan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pci", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Duruwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pcj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Parenga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pck", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PaiteChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pcl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pardhi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pcm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NigerianPidgin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pcn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Piti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pcp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pacahuara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pcw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pyapun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pda", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Anam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pdc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PennsylvaniaGerman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pdi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PaDi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pdn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Podena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pdo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Padoe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pdt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Plautdietsch", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pdu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kayan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pea", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PeranakanIndonesian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "peb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "EasternPomo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ped", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mala(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pee", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taje", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pef", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "NortheasternPomo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "peg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pengo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "peh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bonan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pei", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chichimeca-Jonaz", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pej", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "NorthernPomo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pek", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Penchal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pel", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pekal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pem", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phende", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "peo", + "Part2b": "peo", + "Part2t": "peo", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldPersian(ca.600-400B.C.)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pep", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kunja", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "peq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernPomo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pes", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IranianPersian", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "pev", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pémono", + "Comment": null + }, + { + "Id": "pex", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Petats", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pey", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Petjo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pez", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternPenan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pfa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pááfang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pfe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pfl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pfaelzisch", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pga", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SudaneseCreoleArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "pgd", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Gāndhārī", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pgg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pangwali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pgi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pagi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pgk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rerep", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pgl", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "PrimitiveIrish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pgn", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Paelignian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pgs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pangseng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pgu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pagu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pgz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PapuaNewGuineanSignLanguage", + "Comment": null + }, + { + "Id": "pha", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pa-Hng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "phd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phudagi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "phg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phuong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "phh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phukha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "phj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pahari", + "Comment": null + }, + { + "Id": "phk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phake", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "phl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phalura", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "phm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phimbi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "phn", + "Part2b": "phn", + "Part2t": "phn", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Phoenician", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pho", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phunoi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "phq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phana'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "phr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pahari-Potwari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pht", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PhuThai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "phu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phuan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "phv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pahlavani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "phw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phangduwali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PimaBajo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pib", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yine", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pic", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pinji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pid", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Piaroa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pie", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Piro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pif", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pingelapese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pig", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pisabo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pih", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pitcairn-Norfolk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pij", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Pijao", + "Comment": null + }, + { + "Id": "pil", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pim", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Powhatan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pin", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Piame", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pio", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Piapoco", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pip", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pero", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pir", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Piratapuyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pis", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pijin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pit", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "PittaPitta", + "Comment": null + }, + { + "Id": "piu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pintupi-Luritja", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "piv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pileni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "piw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pimbwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pix", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Piu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "piy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Piya-Kwonci", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "piz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pije", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pjt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pitjantjatjara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pka", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "ArdhamāgadhīPrākrit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pkb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pokomo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pkc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Paekche", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pkg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pak-Tong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pkh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pankhu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pkn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pakanha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pko", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pökoot", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pkp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pukapuka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pkr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AttapadyKurumba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PakistanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pkt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maleng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pla", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Miani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "plb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Polonombauk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "plc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralPalawano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pld", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Polari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ple", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Palu'e", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "plg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pilagá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "plh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paulohi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pli", + "Part2b": "pli", + "Part2t": "pli", + "Part1": "pi", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Pali", + "Comment": null + }, + { + "Id": "plk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KohistaniShina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pll", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ShwePalaung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pln", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Palenquero", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "plo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OlutaPopoluca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "plq", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Palaic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "plr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PalakaSenoufo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pls", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanMarcosTlacoyalcoPopoloca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "plt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PlateauMalagasy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "plu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Palikúr", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "plv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthwestPalawano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "plw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Brooke'sPointPalawano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ply", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bolyu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "plz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paluan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pmb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pambia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pmd", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Pallanganmiddang", + "Comment": null + }, + { + "Id": "pme", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pwaamei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pmf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pamona", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pmh", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MāhārāṣṭriPrākrit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pmi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernPumi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pmj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernPumi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pml", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "LinguaFranca", + "Comment": null + }, + { + "Id": "pmm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pomo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pmn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pmo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pmq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernPame", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pmr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paynamar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pms", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Piemontese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pmt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tuamotuan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pmw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PlainsMiwok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pmx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PoumeiNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pmy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PapuanMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pmz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "SouthernPame", + "Comment": null + }, + { + "Id": "pna", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PunanBah-Biau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pnb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternPanjabi", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "pnc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pannei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pnd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mpinda", + "Comment": null + }, + { + "Id": "pne", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternPenan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "png", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pangu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pnh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Penrhyn", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aoheng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pnj", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Pinjarup", + "Comment": null + }, + { + "Id": "pnk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paunaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pnl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paleni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pnm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PunanBatu1", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pnn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pinai-Hagahai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pno", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Panobo", + "Comment": null + }, + { + "Id": "pnp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pancana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pnq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pana(BurkinaFaso)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pnr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Panim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pns", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ponosakan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pnt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pontic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pnu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JiongnaiBunu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pnv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pinigura", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pnw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Banyjima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pnx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phong-Kniang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pny", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pinyin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pnz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pana(CentralAfricanRepublic)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "poc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Poqomam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "poe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanJuanAtzingoPopoloca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pof", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Poke", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pog", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Potiguára", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "poh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Poqomchi'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "poi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HighlandPopoluca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pok", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pokangá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pol", + "Part2b": "pol", + "Part2t": "pol", + "Part1": "pl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Polish", + "Comment": null + }, + { + "Id": "pom", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SoutheasternPomo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pon", + "Part2b": "pon", + "Part2t": "pon", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pohnpeian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "poo", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "CentralPomo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pop", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pwapwâ", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "poq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TexistepecPopoluca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "por", + "Part2b": "por", + "Part2t": "por", + "Part1": "pt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Portuguese", + "Comment": null + }, + { + "Id": "pos", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SayulaPopoluca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pot", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Potawatomi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pov", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UpperGuineaCrioulo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pow", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanFelipeOtlaltepecPopoloca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pox", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Polabian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "poy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pogolo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ppe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Papi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ppi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paipai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ppk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ppl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pipil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ppm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Papuma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ppn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Papapana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ppo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Folopa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ppp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pelende", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ppq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pps", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanLuísTemalacayucaPopoloca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ppt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pare", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ppu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Papora", + "Comment": null + }, + { + "Id": "pqa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pa'a", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pqm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malecite-Passamaquoddy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "prc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Parachi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "prd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Parsi-Dari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pre", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Principense", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "prf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paranan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "prg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Prussian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "prh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Porohanon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pri", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paicî", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "prk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Parauk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "prl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PeruvianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "prm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kibiri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "prn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Prasuni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pro", + "Part2b": "pro", + "Part2t": "pro", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldProvençal(to1500)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "prq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AshéninkaPerené", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "prr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Puri", + "Comment": null + }, + { + "Id": "prs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "prt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Puragi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "prw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Parawen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "prx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Purik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "prz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ProvidenciaSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "psa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AsueAwyu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "psc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IranianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "psd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PlainsIndianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pse", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "psg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PenangSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "psh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthwestPashai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "psi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SoutheastPashai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "psl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PuertoRicanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "psm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Pauserna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "psn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Panasuan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pso", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PolishSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "psp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PhilippineSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "psq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pasi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "psr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PortugueseSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pss", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaulong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pst", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralPashto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "psu", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "SauraseniPrākrit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "psw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PortSandwich", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "psy", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Piscataway", + "Comment": null + }, + { + "Id": "pta", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PaiTavytera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pth", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "PataxóHã-Ha-Hãe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pti", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pindiini", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ptn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Patani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pto", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zo'é", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ptp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Patep", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ptq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pattapu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ptr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Piamatsina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ptt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Enrekang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ptu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bambam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ptv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PortVato", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ptw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Pentlatch", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pty", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pathiya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternHighlandPurepecha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Purum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "puc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PunanMerap", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pud", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PunanAput", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pue", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Puelche", + "Comment": null + }, + { + "Id": "puf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PunanMerah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pug", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phuie", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Puinave", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "puj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PunanTubu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Puma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "puo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Puoc", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pup", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pulabu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "puq", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Puquina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pur", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Puruborá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pus", + "Part2b": "pus", + "Part2t": "pus", + "Part1": "ps", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Pushto", + "Comment": null + }, + { + "Id": "put", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Putoh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "puu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Punu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "puw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Puluwatese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pux", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Puare", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "puy", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Purisimeño", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pawaia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pwb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Panawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pwg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gapapaiwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pwi", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Patwin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pwm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Molbog", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pwn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paiwan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pwo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PwoWesternKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pwr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Powari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pww", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PwoNorthernKaren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pxm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "QuetzaltepecMixe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pye", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PyeKrumen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pym", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fyam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pyn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Poyanáwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pys", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ParaguayanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pyu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Puyuma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pyx", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Pyu(Myanmar)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pyy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pyen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "pze", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pesse", + "Comment": null + }, + { + "Id": "pzh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pazeh", + "Comment": null + }, + { + "Id": "pzn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JejaraNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Quapaw", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HuallagaHuánucoQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "quc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "K'iche'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qud", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CalderónHighlandQuichua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "que", + "Part2b": "que", + "Part2t": "que", + "Part1": "qu", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Quechua", + "Comment": null + }, + { + "Id": "quf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LambayequeQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qug", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChimborazoHighlandQuichua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "quh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthBolivianQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Quileute", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "quk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChachapoyasQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qul", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthBolivianQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sipacapense", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qun", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Quinault", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qup", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernPastazaQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "quq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Quinqui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qur", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YanahuancaPascoQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qus", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SantiagodelEsteroQuichua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "quv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sacapulteco", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "quw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TenaLowlandQuichua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qux", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YauyosQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "quy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AyacuchoQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "quz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CuscoQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qva", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ambo-PascoQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qvc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CajamarcaQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qve", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternApurímacQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qvh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Huamalíes-DosdeMayoHuánucoQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qvi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ImbaburaHighlandQuichua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qvj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LojaHighlandQuichua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qvl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CajatamboNorthLimaQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qvm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Margos-Yarowilca-LauricochaQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qvn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthJunínQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qvo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NapoLowlandQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qvp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PacaraosQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qvs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanMartínQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qvw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HuayllaWancaQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qvy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Queyu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qvz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernPastazaQuichua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CorongoAncashQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qwc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "ClassicalQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qwh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HuaylasAncashQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qwm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kuman(Russia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qws", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SihuasAncashQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qwt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kwalhioqua-Tlatskanai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qxa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChiquiánAncashQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qxc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChinchaQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qxh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PanaoHuánucoQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qxl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SalasacaHighlandQuichua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qxn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernConchucosAncashQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qxo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernConchucosAncashQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qxp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PunoQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qxq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Qashqa'i", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "qxr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CañarHighlandQuichua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qxs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernQiang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qxt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SantaAnadeTusiPascoQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qxu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arequipa-LaUniónQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qxw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JaujaWancaQuechua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qya", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Quenya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "qyp", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Quiripi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "raa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dungmali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Camling", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rasawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rade", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "raf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternMeohang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Logooli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rabha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rai", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ramoaaina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "raj", + "Part2b": "raj", + "Part2t": "raj", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Rajasthani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tulu-Bohuai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ral", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ralte", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ram", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Canela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ran", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Riantana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rap", + "Part2b": "rap", + "Part2t": "rap", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rapanui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "raq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rar", + "Part2b": "rar", + "Part2t": "rar", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rarotongan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ras", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tegali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rat", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Razajerdi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Raute", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rav", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sampang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "raw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rawang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ray", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rapa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "raz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rahambuu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rbb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RumaiPalaung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rbk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernBontok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rbl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MirayaBikol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rbp", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Barababaraba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rcf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RéunionCreoleFrench", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rdb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rudbari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rea", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rerau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "reb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rembong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ree", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RejangKayan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "reg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kara(Tanzania)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rei", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Reli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rej", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rejang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rel", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rendille", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rem", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Remo", + "Comment": null + }, + { + "Id": "ren", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rengao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rer", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "RerBare", + "Comment": null + }, + { + "Id": "res", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Reshe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ret", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Retta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rey", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Reyesano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rga", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Roria", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rge", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Romano-Greek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rgk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Rangkas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rgn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Romagnol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rgr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Resígaro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rgs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernRoglai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rgu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ringgou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rhg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rohingya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rhp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yahang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ria", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Riang(India)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rib", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BribriSignLanguage", + "Comment": null + }, + { + "Id": "rif", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tarifit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ril", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RiangLang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rim", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyaturu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rin", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nungu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rir", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ribun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rit", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ritharrngu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "riu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Riung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rjg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rajong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rji", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Raji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rjs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rajbanshi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kraol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rkb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rikbaktsa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rkh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rakahanga-Manihiki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rki", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rakhine", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rkm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rkt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rangpuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rkw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Arakwal", + "Comment": null + }, + { + "Id": "rma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rembarrnga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CarpathianRomani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmd", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "TravellerDanish", + "Comment": null + }, + { + "Id": "rme", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Angloromani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KaloFinnishRomani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TravellerNorwegian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Murkim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lomavren", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Romkun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BalticRomani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Roma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BalkanRomani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SinteRomani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rempi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Caló", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rms", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RomanianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Domari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TavringerRomani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmv", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Romanova", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WelshRomani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Romam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "VlaxRomani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rmz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rnb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BruncaSignLanguage", + "Comment": null + }, + { + "Id": "rnd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ruund", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ronga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rnl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ranglong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rnn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Roon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rnp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rongpo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rnr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "NariNari", + "Comment": null + }, + { + "Id": "rnw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rungwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rob", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tae'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "roc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CacgiaRoglai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rod", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rogo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "roe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ronji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rof", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rombo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rog", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernRoglai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "roh", + "Part2b": "roh", + "Part2t": "roh", + "Part1": "rm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Romansh", + "Comment": null + }, + { + "Id": "rol", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Romblomanon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rom", + "Part2b": "rom", + "Part2t": "rom", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Romany", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ron", + "Part2b": "rum", + "Part2t": "ron", + "Part1": "ro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Romanian", + "Comment": null + }, + { + "Id": "roo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rotokas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rop", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kriol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ror", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rongga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rou", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Runga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "row", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dela-Oenale", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rpn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Repanbitip", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rpt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rapting", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rri", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ririo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rrm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Moriori", + "Comment": null + }, + { + "Id": "rro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rrt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Arritinngithigh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rsb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Romano-Serbian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rsk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ruthenian", + "Comment": null + }, + { + "Id": "rsl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RussianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rsm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MiriwoongSignLanguage", + "Comment": null + }, + { + "Id": "rsn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RwandanSignLanguage", + "Comment": null + }, + { + "Id": "rsw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rishiwa", + "Comment": null + }, + { + "Id": "rtc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RungtuChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rth", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ratahan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rtm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rotuman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rts", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yurats", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rtw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rathawi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gungu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ruc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ruuli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rue", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rusyn", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ruf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Luguru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rug", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Roviana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ruh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ruga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rufiji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ruk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Che", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "run", + "Part2b": "run", + "Part2t": "run", + "Part1": "rn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rundi", + "Comment": null + }, + { + "Id": "ruo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IstroRomanian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rup", + "Part2b": "rup", + "Part2t": "rup", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Macedo-Romanian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ruq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MeglenoRomanian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rus", + "Part2b": "rus", + "Part2t": "rus", + "Part1": "ru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Russian", + "Comment": null + }, + { + "Id": "rut", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rutul", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ruu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LanasLobu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ruy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mala(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ruz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ruma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rawo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rwk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rwl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ruwila", + "Comment": null + }, + { + "Id": "rwm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amba(Uganda)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rwo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rwr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marwari(India)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rxd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngardi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rxw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Karuwali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ryn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernAmami-Oshima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rys", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yaeyama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ryu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralOkinawan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "rzh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Rāziḥī", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "saa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buglere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Meskwaki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sad", + "Part2b": "sad", + "Part2t": "sad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sandawe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sae", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sabanê", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "saf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Safaliba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sag", + "Part2b": "sag", + "Part2t": "sag", + "Part1": "sg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sango", + "Comment": null + }, + { + "Id": "sah", + "Part2b": "sah", + "Part2t": "sah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yakut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "saj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sahu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sake", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sam", + "Part2b": "sam", + "Part2t": "sam", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "SamaritanAramaic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "san", + "Part2b": "san", + "Part2t": "san", + "Part1": "sa", + "Scope": "M", + "Language_Type": "H", + "Ref_Name": "Sanskrit", + "Comment": null + }, + { + "Id": "sao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sause", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "saq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Samburu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sar", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Saraveca", + "Comment": null + }, + { + "Id": "sas", + "Part2b": "sas", + "Part2t": "sas", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sasak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sat", + "Part2b": "sat", + "Part2t": "sat", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Santali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saleman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sav", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saafi-Saafi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "saw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sawi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "say", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "saz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saurashtra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sba", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngambay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Simbo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kele(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernSamo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saliba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chabu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Seget", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sori-Harengan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Seti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Surbakhal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Safwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BotolanSambal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sagala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SindhiBhil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sabüm", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sangu(Tanzania)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sileibi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SembakungMurut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Subiya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kimki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "StodBhoti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbv", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Sabine", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Simba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Seberuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sby", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Soli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sbz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SaraKaba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "scb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sce", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Dongxiang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "scf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanMiguelCreoleFrench", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "scg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sanggau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sch", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sakachep", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sci", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SriLankanCreoleMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sck", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sadri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "scl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "scn", + "Part2b": "scn", + "Part2t": "scn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sicilian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sco", + "Part2b": "sco", + "Part2t": "sco", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Scots", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "scp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hyolmo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "scq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sa'och", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "scs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthSlavey", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sct", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernKatang", + "Comment": null + }, + { + "Id": "scu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shumcho", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "scv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sheni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "scw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "scx", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Sicel", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sda", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Toraja-Sa'dan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sdb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shabak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sdc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SassareseSardinian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sde", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Surubu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sdf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sarli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sdg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Savi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sdh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernKurdish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sdj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suundi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sdk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SosKundi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sdl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SaudiArabianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sdn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GallureseSardinian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sdo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bukar-SadungBidayuh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sdp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sherdukpen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sdq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Semandang", + "Comment": null + }, + { + "Id": "sdr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OraonSadri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sds", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Sened", + "Comment": null + }, + { + "Id": "sdt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Shuadit", + "Comment": null + }, + { + "Id": "sdu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sarudu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sdx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SibuMelanau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sdz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sallands", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sea", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Semai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "seb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ShempireSenoufo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sec", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sechelt", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sed", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sedang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "see", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Seneca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sef", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CebaaraSenoufo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "seg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Segeju", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "seh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sei", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Seri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sej", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sene", + "Comment": null + }, + { + "Id": "sek", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sekani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sel", + "Part2b": "sel", + "Part2t": "sel", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Selkup", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sen", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NanerigéSénoufo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "seo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suarmin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sep", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SìcìtéSénoufo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "seq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SenaraSénoufo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ser", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Serrano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ses", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KoyraboroSenniSonghai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "set", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sentani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "seu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Serui-Laut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sev", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NyarafoloSenoufo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sew", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SewaBay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sey", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Secoya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sez", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SenthangChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sfb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LanguedessignesdeBelgiqueFrancophone", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sfe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternSubanen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sfm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SmallFloweryMiao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sfs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthAfricanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sfw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sehwi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sga", + "Part2b": "sga", + "Part2t": "sga", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "OldIrish(to900)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mag-antsiAyta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kipsigis", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Surigaonon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sge", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Segai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Swiss-GermanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shughni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Surgujia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sangkong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Singa", + "Comment": null + }, + { + "Id": "sgp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Singpho", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sangisari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Samogitian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Brokpake", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Salas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SebatBetGurage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SierraLeoneSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sanglechi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sgz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sursurunga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sha", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shall-Zwall", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ninam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sonde", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KundalShahi", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "she", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sheko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shoshoni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tachelhit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shatt", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shilluk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shendu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shahrudi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shn", + "Part2b": "shn", + "Part2t": "shn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sho", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shipibo-Conibo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shuswap", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sht", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Shasta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChadianArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "shv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shehri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shwai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "She", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tachawit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "shz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SyenaraSenoufo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sia", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "AkkalaSami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sib", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sebop", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sid", + "Part2b": "sid", + "Part2t": "sid", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sidamo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sie", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Simaa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sif", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Siamou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sig", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Paasaal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sih", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zire", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sii", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ShomPeng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sij", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Numbami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sik", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sikiana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sil", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TumulungSisaala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sim", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mende(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sin", + "Part2b": "sin", + "Part2t": "sin", + "Part1": "si", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sinhala", + "Comment": null + }, + { + "Id": "sip", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sikkimese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "siq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sonia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sir", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Siri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sis", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Siuslaw", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "siu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sinagen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "siv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sumariup", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "siw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Siwai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "six", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sumau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "siy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sivandi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "siz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Siwi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sja", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Epena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sjb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SajauBasap", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sjd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KildinSami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sje", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PiteSami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sjg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Assangori", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sjk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "KemiSami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sjl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sajalong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sjm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mapun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sjn", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Sindarin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sjo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Xibe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sjp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Surjapuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sjr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Siar-Lak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sjs", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "SenhajaDeSrair", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sjt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TerSami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sju", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UmeSami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sjw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shawnee", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ska", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Skagit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MaManda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernSierraMiwok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ske", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Seke(Vanuatu)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sakirabiá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SakalavaMalagasy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sikule", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ski", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sika", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Seke(Nepal)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kutong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KolibuganSubanon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sko", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SekoTengah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sekapan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sininkere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saraiki", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "sks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sakata", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sakao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Skou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "SkepiCreoleDutch", + "Comment": null + }, + { + "Id": "skx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SekoPadang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sky", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sikaiana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "skz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sekar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "slc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sáliba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sld", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sissala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sle", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sholaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "slf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Swiss-ItalianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "slg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SelungaiMurut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "slh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernPugetSoundSalish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sli", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LowerSilesian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "slj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Salumá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "slk", + "Part2b": "slo", + "Part2t": "slk", + "Part1": "sk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Slovak", + "Comment": null + }, + { + "Id": "sll", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Salt-Yui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "slm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PangutaranSama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sln", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Salinan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "slp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lamaholot", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "slr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Salar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sls", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SingaporeSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "slt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sila", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "slu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Selaru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "slv", + "Part2b": "slv", + "Part2t": "slv", + "Part1": "sl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Slovenian", + "Comment": null + }, + { + "Id": "slw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sialum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "slx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Salampasu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sly", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Selayar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "slz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ma'ya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sma", + "Part2b": "sma", + "Part2t": "sma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernSami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Simbari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Som", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sme", + "Part2b": "sme", + "Part2t": "sme", + "Part1": "se", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernSami", + "Comment": null + }, + { + "Id": "smf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Auwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Simbali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Samei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smj", + "Part2b": "smj", + "Part2t": "smj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LuleSami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bolinao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralSama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Musasa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smn", + "Part2b": "smn", + "Part2t": "smn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "InariSami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smo", + "Part2b": "smo", + "Part2t": "smo", + "Part1": "sm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Samoan", + "Comment": null + }, + { + "Id": "smp", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Samaritan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Samo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Simeulue", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sms", + "Part2b": "sms", + "Part2t": "sms", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SkoltSami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Simte", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Somray", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Samvedi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sumbawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Samba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Semnani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "smz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Simeku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sna", + "Part2b": "sna", + "Part2t": "sna", + "Part1": "sn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shona", + "Comment": null + }, + { + "Id": "snc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sinaugoro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "snd", + "Part2b": "snd", + "Part2t": "snd", + "Part1": "sd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sindhi", + "Comment": null + }, + { + "Id": "sne", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BauBidayuh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "snf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Noon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sanga(DemocraticRepublicofCongo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sni", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Sensi", + "Comment": null + }, + { + "Id": "snj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RiverainSango", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "snk", + "Part2b": "snk", + "Part2t": "snk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Soninke", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "snl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sangil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "snm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernMa'di", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "snn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Siona", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sno", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Snohomish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "snp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Siane", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "snq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sangu(Gabon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "snr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sihan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sns", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthWestBay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "snu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Senggi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "snv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sa'ban", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "snw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Selee", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "snx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sny", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saniyo-Hiyewe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "snz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "soa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ThaiSong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sob", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sobei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "soc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "So(DemocraticRepublicofCongo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sod", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Songoora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "soe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Songomeno", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sog", + "Part2b": "sog", + "Part2t": "sog", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Sogdian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "soh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "soi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sonha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "soj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Soi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sok", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sokoro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sol", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Solos", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "som", + "Part2b": "som", + "Part2t": "som", + "Part1": "so", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Somali", + "Comment": null + }, + { + "Id": "soo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Songo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sop", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Songe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "soq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanasi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sor", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Somrai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sos", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Seeku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sot", + "Part2b": "sot", + "Part2t": "sot", + "Part1": "st", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernSotho", + "Comment": null + }, + { + "Id": "sou", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernThai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sov", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sonsorol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sow", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sowanda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sox", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Swo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "soy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Miyobe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "soz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Temi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spa", + "Part2b": "spa", + "Part2t": "spa", + "Part1": "es", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Spanish", + "Comment": null + }, + { + "Id": "spb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sepa(Indonesia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sapé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saep", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sepa(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saponi", + "Comment": null + }, + { + "Id": "spk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sengo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Selepet", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akukem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sanapaná", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Spokane", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SupyireSenoufo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Loreto-UcayaliSpanish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saparua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sps", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saposa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SpitiBhoti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sapuan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sambalpuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spx", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "SouthPicene", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "spy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sabaot", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sqa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shama-Sambuga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sqh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sqi", + "Part2b": "alb", + "Part2t": "sqi", + "Part1": "sq", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Albanian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sqk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AlbanianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sqm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sqn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Susquehannock", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sqo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sorkhei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sqq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sqr", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "SiculoArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "sqs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SriLankanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sqt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Soqotri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "squ", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Squamish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sqx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KufrQassemSignLanguage(KQSL)", + "Comment": null + }, + { + "Id": "sra", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saruga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "src", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LogudoreseSardinian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srd", + "Part2b": "srd", + "Part2t": "srd", + "Part1": "sc", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Sardinian", + "Comment": null + }, + { + "Id": "sre", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nafi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sulod", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sarikoli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sri", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Siriano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SerudungMurut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Isirawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saramaccan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srn", + "Part2b": "srn", + "Part2t": "srn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SrananTongo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CampidaneseSardinian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srp", + "Part2b": "srp", + "Part2t": "srp", + "Part1": "sr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Serbian", + "Comment": null + }, + { + "Id": "srq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sirionó", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srr", + "Part2b": "srr", + "Part2t": "srr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Serer", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sarsi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sauri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suruí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernSorsoganon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Serua", + "Comment": null + }, + { + "Id": "srx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sirmauri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sry", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "srz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shahmirzadi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernSama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suba-Simbiti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Siroi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sse", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Balangingi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Thao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Seimat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ShihhiArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "ssi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sansi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sausi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sunam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternSisaala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Semnam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waata", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sso", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sissano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SpanishSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "So'a", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Swiss-FrenchSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sss", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sô", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sst", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sinasina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Susuami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SharkBay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssw", + "Part2b": "ssw", + "Part2t": "ssw", + "Part1": "ss", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Swati", + "Comment": null + }, + { + "Id": "ssx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Samberigi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saho", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ssz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sengseng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sta", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Settla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "stb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernSubanen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "std", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sentinel", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ste", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Liana-Seti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "stf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Seta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "stg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Trieng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sth", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shelta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sti", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BuloStieng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "stj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MatyaSamo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "stk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Arammba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "stl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Stellingwerfs", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "stm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Setaman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "stn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Owa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sto", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Stoney", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "stp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SoutheasternTepehuan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "stq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saterfriesisch", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "str", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "StraitsSalish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sts", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shumashti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "stt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BudehStieng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "stu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Samtao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "stv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Silt'e", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "stw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Satawalese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sty", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SiberianTatar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sulka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "suc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternSubanon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sue", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sug", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suganga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "suj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shubi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "suk", + "Part2b": "suk", + "Part2t": "suk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sukuma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sun", + "Part2b": "sun", + "Part2t": "sun", + "Part1": "su", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sundanese", + "Comment": null + }, + { + "Id": "suo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bouni", + "Comment": null + }, + { + "Id": "suq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tirmaga-ChaiSuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sur", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mwaghavul", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sus", + "Part2b": "sus", + "Part2t": "sus", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Susu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sut", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Subtiaba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "suv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Puroik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "suw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sumbwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sux", + "Part2b": "sux", + "Part2t": "sux", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Sumerian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "suy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suyá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "suz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sunwar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sva", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Svan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "svb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ulau-Suain", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "svc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "VincentianCreoleEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sve", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Serili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "svk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SlovakianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "svm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Slavomolisano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "svs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Savosavo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "svx", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Skalvian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swa", + "Part2b": "swa", + "Part2t": "swa", + "Part1": "sw", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Swahili(macrolanguage)", + "Comment": null + }, + { + "Id": "swb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MaoreComorian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CongoSwahili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swe", + "Part2b": "swe", + "Part2t": "swe", + "Part1": "sv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Swedish", + "Comment": null + }, + { + "Id": "swf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Swabian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Swahili(individuallanguage)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sira", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MalawiSena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SwedishSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Samosa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sawknah", + "Comment": null + }, + { + "Id": "swo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shanenawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sharwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saweru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sws", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Seluwasan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sawila", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suwawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shekhawati", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sww", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Sowa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suruahá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "swy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sarua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sxb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sxc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Sicanian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sxe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sighu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sxg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shuhi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sxk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "SouthernKalapuya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sxl", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Selian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sxm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Samre", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sxn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sangir", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sxo", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Sorothaptic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sxr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saaroa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sxs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sasaru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sxu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UpperSaxon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sxw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SaxweGbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sya", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Siang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "syb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralSubanen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "syc", + "Part2b": "syc", + "Part2t": "syc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "ClassicalSyriac", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "syi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Seki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "syk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sukur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "syl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sylheti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sym", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MayaSamo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "syn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Senaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "syo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suoy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "syr", + "Part2b": "syr", + "Part2t": "syr", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Syriac", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sys", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sinyar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "syw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kagate", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "syx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Samay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "syy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Al-SayyidBedouinSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sza", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Semelai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "szb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngalum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "szc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SemaqBeri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "sze", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Seze", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "szg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sengele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "szl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Silesian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "szn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "szp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Suabo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "szs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SolomonIslandsSignLanguage", + "Comment": null + }, + { + "Id": "szv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Isu(FakoDivision)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "szw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sawai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "szy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sakizaya", + "Comment": null + }, + { + "Id": "taa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LowerTanana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tabassaran", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LowlandTarahumara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tause", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tae", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tariana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "taf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tapirapé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tagoi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tah", + "Part2b": "tah", + "Part2t": "tah", + "Part1": "ty", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tahitian", + "Comment": null + }, + { + "Id": "taj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternTamang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tal", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tam", + "Part2b": "tam", + "Part2t": "tam", + "Part1": "ta", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tamil", + "Comment": null + }, + { + "Id": "tan", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tangale", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tap", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taabwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "taq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tamasheq", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tar", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralTarahumara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tas", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "TayBoi", + "Comment": null + }, + { + "Id": "tat", + "Part2b": "tat", + "Part2t": "tat", + "Part1": "tt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tatar", + "Comment": null + }, + { + "Id": "tau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UpperTanana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tav", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tatuyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "taw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tamki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tay", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Atayal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "taz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tocho", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tba", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aikanã", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Takia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KakiAe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tanimbili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mandara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthTairora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbh", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Dharawal", + "Comment": null + }, + { + "Id": "tbi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gaam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tiang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CalamianTagbanwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tboli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tagbu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BarroNegroTunebo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tawala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taworta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tumtum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tanguat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tembo(Kitembo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tubar", + "Comment": null + }, + { + "Id": "tbv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tagbanwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kapin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tby", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tabaru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tbz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ditammari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tca", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ticuna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tanacross", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Datooga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tafi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tce", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernTutchone", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MalinaltepecMe'phaa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tamagario", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tch", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TurksAndCaicosCreoleEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tci", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wára", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tck", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tchitchege", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcl", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Taman(Myanmar)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tanahmerah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tichurong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tco", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taungyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TawrChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaiy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TorresStraitCreole", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tct", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "T'en", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SoutheasternTarahumara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TecpatlánTotonac", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Toda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tcz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ThadoChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tda", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tagdal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Panchpargania", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Emberá-Tadó", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TaiNüa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tde", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TiranigeDigaDogon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Talieng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternTamang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Thulung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tomadino", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tajio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tambas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taruma", + "Comment": null + }, + { + "Id": "tdn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tondano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Teme", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tita", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Todrah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tds", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Doutai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TetunDili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Toro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tandroy-MahafalyMalagasy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tdy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tadyawan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tea", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Temiar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "teb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tetete", + "Comment": null + }, + { + "Id": "tec", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Terik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ted", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TepoKrumen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tee", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HuehuetlaTepehua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tef", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Teressa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "teg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Teke-Tege", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "teh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tehuelche", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tei", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Torricelli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tek", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IbaliTeke", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tel", + "Part2b": "tel", + "Part2t": "tel", + "Part1": "te", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Telugu", + "Comment": null + }, + { + "Id": "tem", + "Part2b": "tem", + "Part2t": "tem", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Timne", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ten", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tama(Colombia)", + "Comment": null + }, + { + "Id": "teo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Teso", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tep", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tepecano", + "Comment": null + }, + { + "Id": "teq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Temein", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ter", + "Part2b": "ter", + "Part2t": "ter", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tereno", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tes", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tengger", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tet", + "Part2b": "tet", + "Part2t": "tet", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tetum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "teu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Soo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tev", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Teor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tew", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tewa(USA)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tex", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tennet", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tey", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tulishi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tez", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tetserret", + "Comment": null + }, + { + "Id": "tfi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TofinGbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tfn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tanaina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tfo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tefaro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tfr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Teribe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tft", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ternate", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tga", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sagalla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tobilung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tigak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ciwogai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tge", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternGorkhaTamang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chalikha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TobagonianCreoleEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lawunuia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tagin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgk", + "Part2b": "tgk", + "Part2t": "tgk", + "Part1": "tg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tajik", + "Comment": null + }, + { + "Id": "tgl", + "Part2b": "tgl", + "Part2t": "tgl", + "Part1": "tl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tagalog", + "Comment": null + }, + { + "Id": "tgn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tandaganon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sudest", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tangoa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tring", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tareng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nume", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralTagbanwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tanggu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tingui-Boto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TagwanaSenoufo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tagish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tgy", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Togoyo", + "Comment": null + }, + { + "Id": "tgz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tagalaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tha", + "Part2b": "tha", + "Part2t": "tha", + "Part1": "th", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Thai", + "Comment": null + }, + { + "Id": "thd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KuukThaayorre", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "the", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChitwaniaTharu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "thf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Thangmi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "thh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernTarahumara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "thi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TaiLong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "thk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tharaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "thl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DangauraTharu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "thm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aheu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "thn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Thachanadan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "thp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Thompson", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "thq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KochilaTharu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "thr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RanaTharu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ths", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Thakali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tht", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tahltan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "thu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Thuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "thv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TahaggartTamahaq", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "thy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "thz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TayartTamajeq", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TidikeltTamazight", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tic", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tira", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tif", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tifal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tig", + "Part2b": "tig", + "Part2t": "tig", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tigre", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tih", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TimugonMurut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tii", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tiene", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tij", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tilung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tik", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tikar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "til", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tillamook", + "Comment": null + }, + { + "Id": "tim", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Timbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tin", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tindi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tio", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Teop", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tip", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Trimuris", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tiq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tiéfo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tir", + "Part2b": "tir", + "Part2t": "tir", + "Part1": "ti", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tigrinya", + "Comment": null + }, + { + "Id": "tis", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MasadiitItneg", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tit", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tinigua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tiu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Adasen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tiv", + "Part2b": "tiv", + "Part2t": "tiv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tiv", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tiw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tiwi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tix", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernTiwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tiy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tiruray", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tiz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TaiHongjin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tja", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tajuasohn", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tjg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tunjung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tji", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernTujia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tjj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tjungundji", + "Comment": null + }, + { + "Id": "tjl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TaiLaing", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tjm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Timucua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tjn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tonjon", + "Comment": null + }, + { + "Id": "tjo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TemacineTamazight", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tjp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tjupany", + "Comment": null + }, + { + "Id": "tjs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernTujia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tju", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tjurruru", + "Comment": null + }, + { + "Id": "tjw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Djabwurrung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tka", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Truká", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tkb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buksa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tkd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tukudede", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tke", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Takwane", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tkf", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tukumanféd", + "Comment": null + }, + { + "Id": "tkg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TesakaMalagasy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tkl", + "Part2b": "tkl", + "Part2t": "tkl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tokelau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tkm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Takelma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tkn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Toku-No-Shima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tkp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tikopia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tkq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tee", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tkr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsakhur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Takestani", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "tkt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KathoriyaTharu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UpperNecaxaTotonac", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tkv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MurPano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tkw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Teanu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tkx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tangko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tkz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Takua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tla", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthwesternTepehuan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tobelo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YecuatlaTotonac", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tld", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Talaud", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Telefol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tofanma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlh", + "Part2b": "tlh", + "Part2t": "tlh", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Klingon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tli", + "Part2b": "tli", + "Part2t": "tli", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tlingit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Talinga-Bwisi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taloki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tll", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tetela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tolomako", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tln", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Talondo'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Talodi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "FilomenaMata-CoahuitlánTotonac", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TaiLoi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Talise", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tls", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tambotalo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouNama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tulehu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taliabu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tlx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khehek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tly", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Talysh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tama(Chad)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Katbol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tumak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Haruai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tme", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tremembé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Toba-Maskoy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ternateño", + "Comment": null + }, + { + "Id": "tmh", + "Part2b": "tmh", + "Part2t": "tmh", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Tamashek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tutuba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Samarokena", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TamnimCitak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TaiThanh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taman(Indonesia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Temoq", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tumleo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "JewishBabylonianAramaic(ca.200-1200CE)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tms", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tasmate", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tembo(Motembo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Temuan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tmz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tamanaku", + "Comment": null + }, + { + "Id": "tna", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tacana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternTunebo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tanimuca-Retuarã", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AngosturasTunebo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tobanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maiani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tandia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwamera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lenakel", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tabla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthTanna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tno", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Toromono", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Whitesands", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnq", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Taino", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ménik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tns", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tenis", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tontemboan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TayKhang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tangchangya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tonsawang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tanema", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tny", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tongwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tnz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ten'edn", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tob", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Toba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "toc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CoyutlaTotonac", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tod", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Toma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tof", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gizrra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tog", + "Part2b": "tog", + "Part2t": "tog", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tonga(Nyasa)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "toh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gitonga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "toi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tonga(Zambia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "toj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tojolabal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tok", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "TokiPona", + "Comment": null + }, + { + "Id": "tol", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tolowa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tom", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tombulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ton", + "Part2b": "ton", + "Part2t": "ton", + "Part1": "to", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tonga(TongaIslands)", + "Comment": null + }, + { + "Id": "too", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "XicotepecDeJuárezTotonac", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "top", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PapantlaTotonac", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "toq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Toposa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tor", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Togbo-VaraBanda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tos", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HighlandTotonac", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tou", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tho", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tov", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UpperTaromi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tow", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Jemez", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tox", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tobian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "toy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Topoiyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "toz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "To", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taupota", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AzoyúMe'phaa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tippera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tarpia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpi", + "Part2b": "tpi", + "Part2t": "tpi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TokPisin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tapieté", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tupinikin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TlacoapaMe'phaa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tampulma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tupinambá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TaiPao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PisafloresTepehua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tukpa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tuparí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TlachichilcoTepehua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tampuan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tanapag", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AcatepecMe'phaa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Trumai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tpz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tinputz", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tqb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tembé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tql", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lehali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tqm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Turumsa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tqn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tenino", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tqo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Toaripi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tqp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tomoip", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tqq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tunni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tqr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Torona", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tqt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternTotonac", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tqu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Touo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tqw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tonkawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tra", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tirahi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Terebu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CopalaTriqui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Turi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tre", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EastTarangan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TrinidadianCreoleEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LishánDidán", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "trh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Turaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tri", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Trió", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Toram", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TravellerScottish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tregami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Trinitario", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TaraoNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KokBorok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanMartínItunyosoTriqui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taushiro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChicahuaxtlaTriqui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tunggare", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Turoyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sediq", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Torwali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "trx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tringgus-SembaanBidayuh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "try", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Turung", + "Comment": null + }, + { + "Id": "trz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Torá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsaangi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsamai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tswa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsakonian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tse", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TunisianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tausug", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsuvan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsi", + "Part2b": "tsi", + "Part2t": "tsi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsimshian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tshangla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tseku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ts'ün-Lao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TurkishSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsn", + "Part2b": "tsn", + "Part2t": "tsn", + "Part1": "tn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tswana", + "Comment": null + }, + { + "Id": "tso", + "Part2b": "tso", + "Part2t": "tso", + "Part1": "ts", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsonga", + "Comment": null + }, + { + "Id": "tsp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernToussian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ThaiSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Akei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tss", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TaiwanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tst", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TondiSongwayKiini", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsogo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsishingini", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mubami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TebulSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tsz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Purepecha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tta", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tutelo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gaa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tektiteko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tauade", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tte", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bwanabwana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tuotomb", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tutong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tth", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UpperTa'oih", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tti", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tobati", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tooro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Totoro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Totela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernTutchone", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Towei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tto", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LowerTa'oih", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tombelala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TawallammatTamajaq", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tts", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NortheasternThai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MuslimTat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Torau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Titan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LongWat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tty", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sikaritai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ttz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wiarumus", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tub", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tübatulabal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tuc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mutu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tud", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tuxá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tue", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tuyuca", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tuf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralTunebo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tug", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tunia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tuh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taulil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tupuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tuj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tugutil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tuk", + "Part2b": "tuk", + "Part2t": "tuk", + "Part1": "tk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Turkmen", + "Comment": null + }, + { + "Id": "tul", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tum", + "Part2b": "tum", + "Part2t": "tum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tumbuka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tun", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tunica", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tuo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tucano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tuq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tedaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tur", + "Part2b": "tur", + "Part2t": "tur", + "Part1": "tr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Turkish", + "Comment": null + }, + { + "Id": "tus", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tuscarora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tuu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tututni", + "Comment": null + }, + { + "Id": "tuv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Turkana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tux", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tuxináwa", + "Comment": null + }, + { + "Id": "tuy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tugen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tuz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Turka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tva", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vaghua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tvd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tsuvadi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tve", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Te'un", + "Comment": null + }, + { + "Id": "tvi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tulai", + "Comment": null + }, + { + "Id": "tvk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SoutheastAmbrym", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tvl", + "Part2b": "tvl", + "Part2t": "tvl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tuvalu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tvm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tela-Masbuar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tvn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tavoyan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tvo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tidore", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tvs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Taveta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tvt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TutsaNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tvu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tunen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tvw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sedoa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tvx", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Taivoan", + "Comment": null + }, + { + "Id": "tvy", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "TimorPidgin", + "Comment": null + }, + { + "Id": "twa", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Twana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternTawbuid", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Teshenawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Twents", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tewa(Indonesia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernTiwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tereweng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TaiDón", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twi", + "Part2b": "twi", + "Part2t": "twi", + "Part1": "tw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Twi", + "Comment": null + }, + { + "Id": "twl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tawara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TawangMonpa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Twendi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "two", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tswapong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tasawaq", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthwesternTarahumara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Turiwára", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Termanu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tww", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tuwari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tewe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "twy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tawoyan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tombonuo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txb", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "TokharianB", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tsetsaut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Totoli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txg", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Tangut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txh", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Thracian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ikpeng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tarjumo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tomini", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestTarangan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Toto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tii", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txr", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Tartessian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tonsea", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Citak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kayapó", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tatana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "txy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TanosyMalagasy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tya", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tauya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tye", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kyanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tyh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "O'du", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tyi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Teke-Tsaayi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tyj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TaiDo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tyl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ThuLao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tyn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kombai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "typ", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Thaypan", + "Comment": null + }, + { + "Id": "tyr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TaiDaeng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tys", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TàySaPa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tyt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TàyTac", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tyu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tyv", + "Part2b": "tyv", + "Part2t": "tyv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tuvinian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tyx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Teke-Tyee", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tyy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tiyaa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tyz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tày", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tza", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TanzanianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tzh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tzeltal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tzj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tz'utujil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tzl", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Talossan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tzm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralAtlasTamazight", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tzn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tugun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tzo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tzotzil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "tzx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tabriak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uam", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Uamué", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uan", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uar", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tairuma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uba", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ubang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ubi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ubi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ubl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buhi'nonBikol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ubr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ubir", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ubu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Umbu-Ungu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uby", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ubykh", + "Comment": null + }, + { + "Id": "uda", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ude", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Udihe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "udg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Muduga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "udi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Udi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "udj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ujir", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "udl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wuzlam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "udm", + "Part2b": "udm", + "Part2t": "udm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Udmurt", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "udu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uduk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ues", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kioko", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ufi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ufim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uga", + "Part2b": "uga", + "Part2t": "uga", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Ugaritic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ugb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kuku-Ugbanh", + "Comment": null + }, + { + "Id": "uge", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ughele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ugh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kubachi", + "Comment": null + }, + { + "Id": "ugn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UgandanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ugo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ugong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ugy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UruguayanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uha", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uhami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uhn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Damal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uig", + "Part2b": "uig", + "Part2t": "uig", + "Part1": "ug", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uighur", + "Comment": null + }, + { + "Id": "uis", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uisai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uiv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iyive", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uji", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tanjijili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaburi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ukg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ukuriguma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ukh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ukhwejo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uki", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kui(India)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ukk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MuakSa-aak", + "Comment": null + }, + { + "Id": "ukl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UkrainianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ukp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ukpe-Bayobiri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ukq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ukwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ukr", + "Part2b": "ukr", + "Part2t": "ukr", + "Part1": "uk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ukrainian", + "Comment": null + }, + { + "Id": "uks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Urubú-KaaporSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ukue", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ukv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ukw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ukwuani-Aboh-Ndoni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uky", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kuuk-Yak", + "Comment": null + }, + { + "Id": "ula", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Fungwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ulb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ulukwumi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ulc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ulch", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ule", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Lule", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ulf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Usku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uli", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ulithian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ulk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MeriamMir", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ull", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ullatan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ulm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ulumanda'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uln", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Unserdeutsch", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ulu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uma'Lung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ulw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ulwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uly", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Buli", + "Comment": null + }, + { + "Id": "uma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Umatilla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "umb", + "Part2b": "umb", + "Part2t": "umb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Umbundu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "umc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Marrucinian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "umd", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Umbindhamu", + "Comment": null + }, + { + "Id": "umg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Morrobalama", + "Comment": null + }, + { + "Id": "umi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ukit", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "umm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Umon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "umn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MakyanNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "umo", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Umotína", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ump", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Umpila", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "umr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Umbugarla", + "Comment": null + }, + { + "Id": "ums", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pendau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "umu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Munsee", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "una", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthWatut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "und", + "Part2b": "und", + "Part2t": "und", + "Scope": "S", + "Language_Type": "S", + "Ref_Name": "Undetermined", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "une", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uneme", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ung", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngarinyin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uni", + "Comment": null + }, + { + "Id": "unk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Enawené-Nawé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "unm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Unami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "unn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kurnai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "unr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mundari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "unu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Unubahe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "unx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Munda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "unz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UndeKaili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uon", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kulon", + "Comment": null + }, + { + "Id": "upi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Umeda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "upv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uripiv-Wala-Rano-Atchin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ura", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Urarina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "urb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Urubú-Kaapor", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "urc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Urningangg", + "Comment": null + }, + { + "Id": "urd", + "Part2b": "urd", + "Part2t": "urd", + "Part1": "ur", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Urdu", + "Comment": null + }, + { + "Id": "ure", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "urf", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Uradhi", + "Comment": null + }, + { + "Id": "urg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Urigina", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "urh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Urhobo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uri", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Urim", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "urk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "UrakLawoi'", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "url", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Urali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "urm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Urapmin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "urn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uruangnirin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ura(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "urp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uru-Pa-In", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "urr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lehalurup", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "urt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Urat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uru", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Urumi", + "Comment": null + }, + { + "Id": "urv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Uruava", + "Comment": null + }, + { + "Id": "urw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sop", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "urx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Urimo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ury", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Orya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "urz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uru-Eu-Wau-Wau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "usa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Usarufa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ush", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ushojo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "usi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Usui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "usk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Usaghade", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "usp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uspanteco", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uss", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "us-Saare", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "usu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uta", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Otank", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ute", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ute-SouthernPaiute", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uth", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ut-Hun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "utp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Amba(SolomonIslands)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "utr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Etulo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "utu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Utu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Urum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uur", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ura(Vanuatu)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uuu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "U", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uve", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestUvean", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uvh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uvl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lote", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuku-Uwanh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uya", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Doko-Uyanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uzb", + "Part2b": "uzb", + "Part2t": "uzb", + "Part1": "uz", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Uzbek", + "Comment": null + }, + { + "Id": "uzn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernUzbek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "uzs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernUzbek", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vaa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "VaagriBooli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vae", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vale", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vaf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vafsi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vagla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Varhadi-Nagpuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vai", + "Part2b": "vai", + "Part2t": "vai", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vaj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sekele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "val", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vehes", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vam", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vanimo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "van", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Valman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vap", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vaiphei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "var", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Huarijio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vas", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vasavi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vanuma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vav", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Varli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vay", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wayu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vbb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SoutheastBabar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vbk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthwesternBontok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vec", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Venetian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ved", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Veddah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vel", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Veluws", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vem", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vemgo-Mabas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ven", + "Part2b": "ven", + "Part2t": "ven", + "Part1": "ve", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Venda", + "Comment": null + }, + { + "Id": "veo", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ventureño", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vep", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Veps", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ver", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MomJango", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vgr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vaghri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vgt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "VlaamseGebarentaal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vic", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "VirginIslandsCreoleEnglish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vid", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vidunda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vie", + "Part2b": "vie", + "Part2t": "vie", + "Part1": "vi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vietnamese", + "Comment": null + }, + { + "Id": "vif", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vig", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Viemo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vil", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vilela", + "Comment": null + }, + { + "Id": "vin", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vinza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vis", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vishavan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vit", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Viti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "viv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iduna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vjk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bajjika", + "Comment": null + }, + { + "Id": "vka", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kariyarra", + "Comment": null + }, + { + "Id": "vkj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kujarge", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vkk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vkl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kulisusu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vkm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kamakan", + "Comment": null + }, + { + "Id": "vkn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KoroNulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vko", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kodeoha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vkp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KorlaiCreolePortuguese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vkt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TenggarongKutaiMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kurrama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vkz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KoroZuba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vlp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Valpei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vls", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vlaams", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vma", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Martuyhunira", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vmb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Barbaram", + "Comment": null + }, + { + "Id": "vmc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JuxtlahuacaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vmd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MuduKoraga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vme", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EastMasela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vmf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mainfränkisch", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vmg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lungalunga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vmh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maraghei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vmi", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Miwa", + "Comment": null + }, + { + "Id": "vmj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IxtayutlaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vmk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Makhuwa-Shirima", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vml", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Malgana", + "Comment": null + }, + { + "Id": "vmm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MitlatongoMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vmp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SoyaltepecMazatec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vmq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SoyaltepecMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vmr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marenje", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vms", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Moksela", + "Comment": null + }, + { + "Id": "vmu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Muluridyi", + "Comment": null + }, + { + "Id": "vmv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "ValleyMaidu", + "Comment": null + }, + { + "Id": "vmw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Makhuwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vmx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TamazolaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vmy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AyautlaMazatec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vmz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MazatlánMazatec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vnk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vnm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vinmavis", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vnp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vunapu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vol", + "Part2b": "vol", + "Part2t": "vol", + "Part1": "vo", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Volapük", + "Comment": null + }, + { + "Id": "vor", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Voro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vot", + "Part2b": "vot", + "Part2t": "vot", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Votic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vra", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vera'a", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Võro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vrs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Varisi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vrt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Burmbar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vsi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MoldovaSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vsl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "VenezuelanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vsn", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "VedicSanskrit", + "Comment": null + }, + { + "Id": "vsv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ValencianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vto", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vitou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vumbu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vun", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vunjo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vut", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vute", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "vwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awa(China)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "waa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WallaWalla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wab", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wac", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wasco-Wishram", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wamesa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wae", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Walser", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "waf", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wakoná", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wa'ema", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Watubela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wai", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wares", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "waj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waffa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wal", + "Part2b": "wal", + "Part2t": "wal", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wolaytta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wam", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wampanoag", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wan", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wao", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wappo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wap", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wapishana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "waq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wagiman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "war", + "Part2b": "war", + "Part2t": "war", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waray(Philippines)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "was", + "Part2b": "was", + "Part2t": "was", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Washo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wat", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaninuwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waurá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wav", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "waw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waiwai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Watam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "way", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wayana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "waz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wampur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wba", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Warao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wabo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waritai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wanda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vwanji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Alagwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waigali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wakhi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Warlpiri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waddar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wagdi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestBengalSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Warnman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wajarri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wbw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Woi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wca", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yanomámi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wci", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WaciGbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wdd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wandji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wdg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wadaginam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wdj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wadjiginy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wdk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wadikali", + "Comment": null + }, + { + "Id": "wdt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wendat", + "Comment": null + }, + { + "Id": "wdu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wadjigu", + "Comment": null + }, + { + "Id": "wdy", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wadjabangayi", + "Comment": null + }, + { + "Id": "wea", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wewaw", + "Comment": null + }, + { + "Id": "wec", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WèWestern", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wed", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wedau", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "weg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wergaia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "weh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Weh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wei", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kiunum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wem", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WemeGbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "weo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wemale", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wep", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Westphalien", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wer", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Weri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wes", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CameroonPidgin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wet", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Perai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "weu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RawngtuChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wew", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wejewa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wfg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yafi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wga", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wagaya", + "Comment": null + }, + { + "Id": "wgb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wagawaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wgg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wangkangurru", + "Comment": null + }, + { + "Id": "wgi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wahgi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wgo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waigeo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wgu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wirangu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wgy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Warrgamay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wha", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouUpaa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "whg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthWahgi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "whk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WahauKenyah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "whu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WahauKayan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wib", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernToussian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wic", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wichita", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wie", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wik-Epa", + "Comment": null + }, + { + "Id": "wif", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wik-Keyangan", + "Comment": null + }, + { + "Id": "wig", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WikNgathan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wih", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wik-Me'anha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wii", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Minidien", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wij", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wik-Iiyanh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wik", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wikalkan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wil", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wilawila", + "Comment": null + }, + { + "Id": "wim", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wik-Mungkan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "win", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ho-Chunk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wir", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wiraféd", + "Comment": null + }, + { + "Id": "wiu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wiru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wiv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Vitu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wiy", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wiyot", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wja", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waja", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wji", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Warji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wka", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kw'adza", + "Comment": null + }, + { + "Id": "wkb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kumbaran", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wkd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wakde", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wkl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalanadi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wkr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Keerray-Woorroong", + "Comment": null + }, + { + "Id": "wku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kunduvadi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wkw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wakawaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wky", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wangkayutyuru", + "Comment": null + }, + { + "Id": "wla", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Walio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wlc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MwaliComorian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wle", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wolane", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wlg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kunbarlang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wlh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Welaun", + "Comment": null + }, + { + "Id": "wli", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waioli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wlk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wailaki", + "Comment": null + }, + { + "Id": "wll", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wali(Sudan)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wlm", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MiddleWelsh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wln", + "Part2b": "wln", + "Part2t": "wln", + "Part1": "wa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Walloon", + "Comment": null + }, + { + "Id": "wlo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wolio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wlr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wailapa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wls", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wallisian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wlu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wuliwuli", + "Comment": null + }, + { + "Id": "wlv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WichíLhamtésVejoz", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wlw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Walak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wlx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wali(Ghana)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wly", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Waling", + "Comment": null + }, + { + "Id": "wma", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mawa(Nigeria)", + "Comment": null + }, + { + "Id": "wmb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wambaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wmc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wamas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wmd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mamaindé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wme", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wambule", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wmg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternMinyag", + "Comment": null + }, + { + "Id": "wmh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waima'a", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wmi", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wamin", + "Comment": null + }, + { + "Id": "wmm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maiwa(Indonesia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wmn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Waamwang", + "Comment": null + }, + { + "Id": "wmo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wom(PapuaNewGuinea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wms", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wambon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wmt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Walmajarri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wmw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mwani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wmx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Womo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wnb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mokati", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wnc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wantoat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wnd", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wandarang", + "Comment": null + }, + { + "Id": "wne", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waneci", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wanggom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wni", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NdzwaniComorian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wnk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wanukaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wnm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wanggamala", + "Comment": null + }, + { + "Id": "wnn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wunumara", + "Comment": null + }, + { + "Id": "wno", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wnp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wanap", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wnu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Usan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wnw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wintu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wny", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wanyi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "woa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuwema", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wob", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WèNorthern", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "woc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wogeo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wod", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wolani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "woe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Woleaian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wof", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GambianWolof", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wog", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wogamusin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "woi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wok", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Longto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wol", + "Part2b": "wol", + "Part2t": "wol", + "Part1": "wo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wolof", + "Comment": null + }, + { + "Id": "wom", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wom(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "won", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wongo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "woo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manombai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wor", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Woria", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wos", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HangaHundi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wow", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wawonii", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "woy", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Weyto", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wpc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maco", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wrb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Waluwarra", + "Comment": null + }, + { + "Id": "wrg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Warungu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wrh", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wiradjuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wri", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wariyangga", + "Comment": null + }, + { + "Id": "wrk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Garrwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wrl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Warlmanpa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wrm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Warumungu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wrn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Warnang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wro", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Worrorra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wrp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waropen", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wrr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wardaman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wrs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waris", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wrv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waruna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wrw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "GuguWarra", + "Comment": null + }, + { + "Id": "wrx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WaeRana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wry", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Merwari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wrz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Waray(Australia)", + "Comment": null + }, + { + "Id": "wsa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Warembori", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wsg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AdilabadGondi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wsi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wusi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wsk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waskia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wsr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Owenia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wss", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wasa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wsu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wasu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wsv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wotapuri-Katarqalai", + "Comment": null + }, + { + "Id": "wtb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Matambwe", + "Comment": null + }, + { + "Id": "wtf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Watiwa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wth", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wathawurrung", + "Comment": null + }, + { + "Id": "wti", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Berta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wtk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Watakataui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wtm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mewati", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wtw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wotu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wikngenchera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wunambal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wud", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wudu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wuh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wutunhua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wul", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Silimo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wumbvu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wun", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bungu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wur", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wurrugu", + "Comment": null + }, + { + "Id": "wut", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wutung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wuu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WuChinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wuv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wuvulu-Aua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wux", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wulna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wuy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wauyai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wwb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wakabunga", + "Comment": null + }, + { + "Id": "wwo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wetamut", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wwr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Warrwa", + "Comment": null + }, + { + "Id": "www", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wxa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Waxianghua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wxw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wardandi", + "Comment": null + }, + { + "Id": "wyb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wangaaybuwan-Ngiyambaa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wyi", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Woiwurrung", + "Comment": null + }, + { + "Id": "wym", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wymysorys", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wyn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wyandot", + "Comment": null + }, + { + "Id": "wyr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wayoró", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "wyy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternFijian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xaa", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "AndalusianArabic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sambe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kachari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xad", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Adai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xae", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Aequian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xag", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Aghwan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xai", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kaimbé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xaj", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ararandewára", + "Comment": null + }, + { + "Id": "xak", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Máku", + "Comment": null + }, + { + "Id": "xal", + "Part2b": "xal", + "Part2t": "xal", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalmyk", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xam", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "ǀXam", + "Comment": null + }, + { + "Id": "xan", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Xamtanga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xap", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Apalachee", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xaq", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Aquitanian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xar", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Karami", + "Comment": null + }, + { + "Id": "xas", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kamas", + "Comment": null + }, + { + "Id": "xat", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Katawixi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kauwera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xav", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Xavánte", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xaw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kawaiisu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xay", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KayanMahakam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xbb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "LowerBurdekin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xbc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Bactrian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xbd", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Bindal", + "Comment": null + }, + { + "Id": "xbe", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Bigambal", + "Comment": null + }, + { + "Id": "xbg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Bunganditj", + "Comment": null + }, + { + "Id": "xbi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kombio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xbj", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Birrpayi", + "Comment": null + }, + { + "Id": "xbm", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MiddleBreton", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xbn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kenaboi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xbo", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Bolgarian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xbp", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Bibbulman", + "Comment": null + }, + { + "Id": "xbr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kambera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xbw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kambiwá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xby", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Batjala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xcb", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Cumbric", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xcc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Camunic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xce", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Celtiberian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xcg", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "CisalpineGaulish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xch", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Chemakum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xcl", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "ClassicalArmenian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xcm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Comecrudo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xcn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Cotoname", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xco", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Chorasmian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xcr", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Carian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xct", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "ClassicalTibetan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xcu", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Curonian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xcv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Chuvantsy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xcw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Coahuilteco", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xcy", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Cayuse", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xda", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Darkinyung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xdc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Dacian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xdk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Dharuk", + "Comment": null + }, + { + "Id": "xdm", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Edomite", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xdo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwandu", + "Comment": null + }, + { + "Id": "xdq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaitag", + "Comment": null + }, + { + "Id": "xdy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MalayicDayak", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xeb", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Eblan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xed", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hdi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xeg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "ǁXegwi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xel", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kelo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xem", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kembayan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xep", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Epi-Olmec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xer", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Xerénte", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xes", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kesawai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xet", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Xetá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xeu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Keoru-Ahia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xfa", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Faliscan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xga", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Galatian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xgb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Gbin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xgd", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Gudang", + "Comment": null + }, + { + "Id": "xgf", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Gabrielino-Fernandeño", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xgg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Goreng", + "Comment": null + }, + { + "Id": "xgi", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Garingbal", + "Comment": null + }, + { + "Id": "xgl", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Galindan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xgm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Dharumbal", + "Comment": null + }, + { + "Id": "xgr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Garza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xgu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Unggumi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xgw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Guwa", + "Comment": null + }, + { + "Id": "xha", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Harami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xhc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Hunnic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xhd", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Hadrami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xhe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khetrani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xhm", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MiddleKhmer(1400to1850CE)", + "Comment": null + }, + { + "Id": "xho", + "Part2b": "xho", + "Part2t": "xho", + "Part1": "xh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Xhosa", + "Comment": null + }, + { + "Id": "xhr", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Hernican", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xht", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Hattic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xhu", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Hurrian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xhv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xib", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Iberian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xii", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Xiri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xil", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Illyrian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xin", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Xinca", + "Comment": null + }, + { + "Id": "xir", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Xiriâna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xis", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kisan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xiv", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "IndusValleyLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xiy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Xipaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xjb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Minjungbal", + "Comment": null + }, + { + "Id": "xjt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Jaitmatang", + "Comment": null + }, + { + "Id": "xka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalkoti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernNago", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kho'ini", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MendalamKayan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xke", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kereho", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khengkha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kagoro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xki", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KenyanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kajali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kachok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MainstreamKenyah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KayanRiverKayan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xko", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kiorr", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kabatei", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Koroni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Xakriabá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xks", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kumbewaha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kantosi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaamba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kgalagadi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kembra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karore", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xky", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Uma'Lasan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xkz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kurtokha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xla", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xlb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "LoupB", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xlc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Lycian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xld", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Lydian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xle", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Lemnian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xlg", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Ligurian(Ancient)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xli", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Liburnian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xln", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Alanic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xlo", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "LoupA", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xlp", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Lepontic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xls", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Lusitanian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xlu", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "CuneiformLuwian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xly", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Elymian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mushungulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbonga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Makhuwa-Marrevone", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbudum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xme", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Median", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mingrelian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mengaka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kugu-Muminh", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Majera", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmk", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "AncientMacedonian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MalaysianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ManadoMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmn", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "ManichaeanMiddlePersian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Morerebi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmp", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kuku-Mu'inh", + "Comment": null + }, + { + "Id": "xmq", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kuku-Mangk", + "Comment": null + }, + { + "Id": "xmr", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Meroitic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xms", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MoroccanSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Matbat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kamu", + "Comment": null + }, + { + "Id": "xmv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AntankaranaMalagasy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TsimihetyMalagasy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Salawati", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xmy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mayaguduna", + "Comment": null + }, + { + "Id": "xmz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MoriBawah", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xna", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "AncientNorthArabian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xnb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanakanabu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xng", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "MiddleMongolian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xnh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuanhua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xni", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ngarigu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xnj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngoni(Tanzania)", + "Comment": null + }, + { + "Id": "xnk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nganakarti", + "Comment": null + }, + { + "Id": "xnm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ngumbarl", + "Comment": null + }, + { + "Id": "xnn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernKankanay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xno", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Anglo-Norman", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xnq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ngoni(Mozambique)", + "Comment": null + }, + { + "Id": "xnr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kangri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xns", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanashi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xnt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Narragansett", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xnu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Nukunul", + "Comment": null + }, + { + "Id": "xny", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyiyaparli", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xnz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kenzi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xoc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "O'chi'chi'", + "Comment": null + }, + { + "Id": "xod", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kokoda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xog", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Soga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xoi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kominimung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xok", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Xokleng", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xom", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Komo(Sudan)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xon", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Konkomba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xoo", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Xukurú", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xop", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kopar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xor", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Korubo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xow", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kowaki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xpa", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Pirriya", + "Comment": null + }, + { + "Id": "xpb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "NortheasternTasmanian", + "Comment": null + }, + { + "Id": "xpc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Pecheneg", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xpd", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "OysterBayTasmanian", + "Comment": null + }, + { + "Id": "xpe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LiberiaKpelle", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xpf", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "SoutheastTasmanian", + "Comment": null + }, + { + "Id": "xpg", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Phrygian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xph", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "NorthMidlandsTasmanian", + "Comment": null + }, + { + "Id": "xpi", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Pictish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xpj", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mpalitjanh", + "Comment": null + }, + { + "Id": "xpk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KulinaPano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xpl", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "PortSorellTasmanian", + "Comment": null + }, + { + "Id": "xpm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Pumpokol", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xpn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kapinawá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xpo", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Pochutec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xpp", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Puyo-Paekche", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xpq", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mohegan-Pequot", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xpr", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Parthian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xps", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Pisidian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xpt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Punthamara", + "Comment": null + }, + { + "Id": "xpu", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Punic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xpv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "NorthernTasmanian", + "Comment": null + }, + { + "Id": "xpw", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "NorthwesternTasmanian", + "Comment": null + }, + { + "Id": "xpx", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "SouthwesternTasmanian", + "Comment": null + }, + { + "Id": "xpy", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Puyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xpz", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "BrunyIslandTasmanian", + "Comment": null + }, + { + "Id": "xqa", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Karakhanid", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xqt", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Qatabanian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xra", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Krahô", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xrb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternKaraboro", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xrd", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Gundungurra", + "Comment": null + }, + { + "Id": "xre", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kreye", + "Comment": null + }, + { + "Id": "xrg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Minang", + "Comment": null + }, + { + "Id": "xri", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Krikati-Timbira", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xrm", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Armazic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xrn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Arin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xrr", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Raetic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xrt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Aranama-Tamique", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xru", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marriammu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xrw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsa", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Sabaean", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sambal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsc", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Scythian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsd", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Sidetic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xse", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sempan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Shamang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sio", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Subi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthSlavey", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kasem", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sanga(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xso", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Solano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Silopi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Makhuwa-Saka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sherpa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sanumá", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Sudovian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xsy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Saisiyat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xta", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AlcozaucaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xtb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChazumbaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xtc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Katcha-Kadugli-Miri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xtd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Diuxi-TilantongoMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xte", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ketengban", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xtg", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "TransalpineGaulish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xth", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "YithaYitha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xti", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SinicahuaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xtj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanJuanTeitaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xtl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TijaltepecMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xtm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MagdalenaPeñascoMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xtn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernTlaxiacoMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xto", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "TokharianA", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xtp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanMiguelPiedrasMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xtq", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Tumshuqese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xtr", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "EarlyTripuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xts", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SindihuiMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xtt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TacahuaMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xtu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CuyamecalcoMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xtv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Thawa", + "Comment": null + }, + { + "Id": "xtw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tawandê", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xty", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YoloxochitlMixtec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AluKurumba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xub", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BettaKurumba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xud", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Umiida", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xug", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kunigami", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xuj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "JennuKurumba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xul", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Ngunawal", + "Comment": null + }, + { + "Id": "xum", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Umbrian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xun", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Unggaranggu", + "Comment": null + }, + { + "Id": "xuo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xup", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "UpperUmpqua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xur", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Urartian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xut", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kuthant", + "Comment": null + }, + { + "Id": "xuu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kxoe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xve", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Venetic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xvi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kamviri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xvn", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Vandalic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xvo", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Volscian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xvs", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Vestinian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwaza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xwc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Woccon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xwd", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "WadiWadi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xwe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "XwelaGbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xwg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kwegu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xwj", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wajuk", + "Comment": null + }, + { + "Id": "xwk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wangkumara", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xwl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternXwlaGbe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xwo", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "WrittenOirat", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xwr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KwerbaMamberamo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xwt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Wotjobaluk", + "Comment": null + }, + { + "Id": "xww", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "WembaWemba", + "Comment": null + }, + { + "Id": "xxb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Boro(Ghana)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xxk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ke'o", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xxm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Minkin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xxr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Koropó", + "Comment": null + }, + { + "Id": "xxt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Tambora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xya", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yaygir", + "Comment": null + }, + { + "Id": "xyb", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yandjibara", + "Comment": null + }, + { + "Id": "xyj", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mayi-Yapi", + "Comment": null + }, + { + "Id": "xyk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mayi-Kulan", + "Comment": null + }, + { + "Id": "xyl", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yalakalore", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xyt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mayi-Thakurti", + "Comment": null + }, + { + "Id": "xyy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YortaYorta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xzh", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Zhang-Zhung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xzm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Zemgalian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "xzp", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "AncientZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yaa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yaminahua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yuhup", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PassValleyYali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yagua", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yae", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pumé", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yaf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yaka(DemocraticRepublicofCongo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yámana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yazgulyam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yai", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yagnobi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yaj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Banda-Yangere", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yakama", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yal", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yalunka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yam", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yamba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yan", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mayangna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yao", + "Part2b": "yao", + "Part2t": "yao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yap", + "Part2b": "yap", + "Part2t": "yap", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yapese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yaq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yaqui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yar", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yabarana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yas", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nugunu(Cameroon)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yat", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yambeta", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yuwana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yav", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yangben", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yaw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yawalapití", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yauma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yay", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Agwagwune", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yaz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lokaa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yba", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ybb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yemba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ybe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestYugur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ybh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yakha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ybi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yamphu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ybj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Hasha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ybk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bokha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ybl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yukuben", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ybm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yaben", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ybn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yabaâna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ybo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yabong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ybx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yawiyo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yby", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yaweyuha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ych", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chesu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ycl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lolopo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ycn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yucuna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ycp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Chepya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ycr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YilanCreole", + "Comment": null + }, + { + "Id": "yda", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yanda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ydd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternYiddish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yde", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YangumDey", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ydg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yidgha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ydk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yoidik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yea", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ravula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yec", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yeniche", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yee", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yimas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yei", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yeni", + "Comment": null + }, + { + "Id": "yej", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yevanic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "yel", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yela", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yer", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tarok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yes", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyankpa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yet", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yetfa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yeu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yerukula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yev", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yapunda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yey", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yeyi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yga", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Malyangapa", + "Comment": null + }, + { + "Id": "ygi", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yiningayi", + "Comment": null + }, + { + "Id": "ygl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YangumGel", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ygm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yagomi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ygp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Gepo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ygr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yagaria", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ygs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YolŋuSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ygu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yugul", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ygw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yagwoia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yha", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "BahaBuyang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yhd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Judeo-IraqiArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "yhl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "HlephoPhowa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yhs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yan-nhaŋuSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yinggarda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yid", + "Part2b": "yid", + "Part2t": "yid", + "Part1": "yi", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Yiddish", + "Comment": null + }, + { + "Id": "yif", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ache", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yig", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WusaNasu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yih", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "WesternYiddish", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yii", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yidiny", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yij", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yindjibarndi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yik", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DongshanbaLalo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yil", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yindjilandji", + "Comment": null + }, + { + "Id": "yim", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YimchungruNaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yin", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RiangLai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yip", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Pholo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yiq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Miqie", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yir", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthAwyu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yis", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yis", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yit", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternLalu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yiu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Awu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yiv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernNisu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yix", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AxiYi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yiz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Azhe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yakan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ykg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernYukaghir", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ykh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "KhamniganMongol", + "Comment": null + }, + { + "Id": "yki", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yoke", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ykk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yakaikeke", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ykl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Khlula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ykm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kap", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ykn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kua-nsi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yko", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yasa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ykr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yekora", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ykt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kathu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kuamasi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yky", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yakoma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yla", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yaul", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ylb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yaleba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yle", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ylg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yelogu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yli", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AnggurukYali", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yll", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yil", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ylm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Limi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yln", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LangnianBuyang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ylo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NaluoYi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ylr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yalarnnga", + "Comment": null + }, + { + "Id": "ylu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aribwaung", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yly", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nyâlayu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ymb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yambes", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ymc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernMuji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ymd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Muda", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yme", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yameo", + "Comment": null + }, + { + "Id": "ymg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yamongeri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ymh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mili", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ymi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Moji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ymk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Makwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yml", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Iamalele", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ymm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ymn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yamna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ymo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YangumMon", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ymp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yamap", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ymq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "QilaMuji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ymr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malasar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yms", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Mysian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ymx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NorthernMuji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ymz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Muzi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yna", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Aluo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ynd", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yandruwandha", + "Comment": null + }, + { + "Id": "yne", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lang'e", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yango", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ynk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NaukanYupik", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ynl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yangulam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ynn", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yana", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yno", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ynq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yendang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yns", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yansi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ynu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yahuna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yob", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yoba", + "Comment": null + }, + { + "Id": "yog", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yogad", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yoi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yonaguni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yok", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yokuts", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yol", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yola", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yom", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yombe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yon", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yongkom", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yor", + "Part2b": "yor", + "Part2t": "yor", + "Part1": "yo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yoruba", + "Comment": null + }, + { + "Id": "yot", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yotti", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yox", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yoron", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yoy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yoy", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ypa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ypb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LaboPhowa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ypg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phola", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yph", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phupha", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ypm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phuma", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ypn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AniPhowa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ypo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AloPhola", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ypp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phupa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ypz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Phuza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yra", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yerakai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yrb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yareba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yre", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yaouré", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yrk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nenets", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yrl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nhengatu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yrm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yirrk-Mel", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yrn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yerong", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yaroamë", + "Comment": null + }, + { + "Id": "yrs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yarsun", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yrw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yarawata", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yry", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yarluyandi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ysc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yassic", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ysd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Samatao", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ysg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sonaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ysl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YugoslavianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ysm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MyanmarSignLanguage", + "Comment": null + }, + { + "Id": "ysn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yso", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Nisi(China)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ysp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernLolopo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ysr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "SirenikYupik", + "Comment": null + }, + { + "Id": "yss", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yessan-Mayo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ysy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sanie", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yta", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Talu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ytl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tanglang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ytp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Thopho", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ytw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YoutWam", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yty", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yatay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yua", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yucateco", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yub", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yugambal", + "Comment": null + }, + { + "Id": "yuc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yuchi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yud", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Judeo-TripolitanianArabic", + "Comment": null, + "ScriptDirection": "rtl" + }, + { + "Id": "yue", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YueChinese", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yuf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Havasupai-Walapai-Yavapai", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yug", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yug", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yui", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yurutí", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yuj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Karkar-Yuri", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yuk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yuki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yul", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yulu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Quechan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yun", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bena(Nigeria)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yup", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yukpa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yuq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yuqui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yur", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yurok", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yut", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yopno", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yuw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yau(MorobeProvince)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yux", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernYukaghir", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yuy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EastYugur", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yuz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yuracare", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yva", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yvt", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yavitero", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ywa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kalou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ywg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yinhawangka", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ywl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternLalu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ywn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yawanawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ywq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Wuding-LuquanYi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ywr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yawuru", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ywt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "XishanbaLalo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ywu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WumengNasu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yww", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yawarawarga", + "Comment": null + }, + { + "Id": "yxa", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mayawali", + "Comment": null + }, + { + "Id": "yxg", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yagara", + "Comment": null + }, + { + "Id": "yxl", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yardliyawarra", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yxm", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yinwum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yxu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Yuyu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yxy", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "YabulaYabula", + "Comment": null + }, + { + "Id": "yyr", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "YirYoront", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yyu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Yau(SandaunProvince)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yyz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Ayizi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yzg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "E'maBuyang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "yzk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zokhuo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zaa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SierradeJuárezZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zab", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WesternTlacolulaValleyZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zac", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OcotlánZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zad", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CajonosZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zae", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YareniZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zaf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AyoquescoZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zag", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zaghawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zah", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zangwal", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zai", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "IsthmusZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zaj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zaramo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zak", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zanaki", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zal", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zauzou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zam", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MiahuatlánZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zao", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "OzolotepecZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zap", + "Part2b": "zap", + "Part2t": "zap", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Zapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zaq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AloápamZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zar", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RincónZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zas", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SantoDomingoAlbarradasZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zat", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TabaaZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zau", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zangskari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zav", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YatzachiZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zaw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MitlaZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zax", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "XadaniZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zay", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zayse-Zergulla", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zaz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zba", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Balaibalan", + "Comment": null + }, + { + "Id": "zbc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralBerawan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zbe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EastBerawan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zbl", + "Part2b": "zbl", + "Part2t": "zbl", + "Scope": "I", + "Language_Type": "C", + "Ref_Name": "Blissymbols", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zbt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Batui", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zbu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bu(BauchiState)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zbw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "WestBerawan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zca", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CoatecasAltasZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zcd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LasDeliciasZapotec", + "Comment": null + }, + { + "Id": "zch", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CentralHongshuiheZhuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zdj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NgazidjaComorian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zea", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zeeuws", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zeg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zenag", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zeh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "EasternHongshuiheZhuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zem", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zeem", + "Comment": null + }, + { + "Id": "zen", + "Part2b": "zen", + "Part2t": "zen", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zenaga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zga", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kinga", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zgb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GuibeiZhuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zgh", + "Part2b": "zgh", + "Part2t": "zgh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "StandardMoroccanTamazight", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zgm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MinzZhuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zgn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GuibianZhuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zgr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Magori", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zha", + "Part2b": "zha", + "Part2t": "zha", + "Part1": "za", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Zhuang", + "Comment": null + }, + { + "Id": "zhb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zhaba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zhd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "DaiZhuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zhi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zhire", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zhn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NongZhuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zho", + "Part2b": "chi", + "Part2t": "zho", + "Part1": "zh", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Chinese", + "Comment": null + }, + { + "Id": "zhw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zhoa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zia", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zia", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zib", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ZimbabweSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zik", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zimakani", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zil", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zialo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zim", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mesme", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zin", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zinza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ziw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zigula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ziz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zizilivakan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zka", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaimbulawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zkd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kadu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zkg", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Koguryo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zkh", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Khorezmian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zkk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Karankawa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zkn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kanan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zko", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Kott", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zkp", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "SãoPauloKaingáng", + "Comment": null + }, + { + "Id": "zkr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zakhring", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zkt", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Kitan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zku", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kaurna", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zkv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Krevinian", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zkz", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Khazar", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zla", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zula", + "Comment": null + }, + { + "Id": "zlj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LiujiangZhuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zlm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Malay(individuallanguage)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zln", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LianshanZhuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zlq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LiuqianZhuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zlu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zul", + "Comment": null + }, + { + "Id": "zma", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Manda(Australia)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zimba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmc", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Margany", + "Comment": null + }, + { + "Id": "zmd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maridan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zme", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mangerr", + "Comment": null + }, + { + "Id": "zmf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mfinu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MartiKe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmh", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Makolkol", + "Comment": null + }, + { + "Id": "zmi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "NegeriSembilanMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maridjabin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mandandanyi", + "Comment": null + }, + { + "Id": "zml", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Matngala", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Marimanindji", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbangwe", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Molo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mpuono", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mituku", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maranunggu", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zms", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbesa", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Maringarr", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmu", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Muruwari", + "Comment": null + }, + { + "Id": "zmv", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Mbariman-Gudhinma", + "Comment": null + }, + { + "Id": "zmw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbo(DemocraticRepublicofCongo)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Bomitaba", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mariyedi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zmz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mbandja", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zna", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ZanGula", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zne", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zande(individuallanguage)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zng", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "znk", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Manangkari", + "Comment": null + }, + { + "Id": "zns", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mangas", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zoc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CopainaláZoque", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zoh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChimalapaZoque", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zom", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zou", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zoo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AsunciónMixtepecZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zoq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TabascoZoque", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zor", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "RayónZoque", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zos", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "FranciscoLeónZoque", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LachiguiriZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YautepecZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpc", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChoapanZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpd", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SoutheasternIxtlánZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "PetapaZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpf", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanPedroQuiatoniZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GueveaDeHumboldtZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zph", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TotomachapanZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpi", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SantaMaríaQuiegolaniZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "QuiavicuzasZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpk", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TlacolulitaZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LachixíoZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MixtepecZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SantaInésYatzechiZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpo", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "AmatlánZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ElAltoZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ZoogochoZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SantiagoXanicaZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zps", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "CoatlánZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanVicenteCoatlánZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YalálagZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpv", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ChichicapanZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpw", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ZanizaZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanBaltazarLoxichaZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "MazaltepecZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zpz", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TexmelucanZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zqe", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "QiubeiZhuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zra", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Kara(Korea)", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zrg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mirgan", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zrn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zerenkel", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zro", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Záparo", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zrp", + "Scope": "I", + "Language_Type": "E", + "Ref_Name": "Zarphatic", + "Comment": null + }, + { + "Id": "zrs", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Mairasi", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zsa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sarasira", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zsk", + "Scope": "I", + "Language_Type": "H", + "Ref_Name": "Kaskean", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zsl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ZambianSignLanguage", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zsm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "StandardMalay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zsr", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SouthernRinconZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zsu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Sukurum", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zte", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ElotepecZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ztg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "XanaguíaZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ztl", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Lapaguía-GuiviniZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ztm", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SanAgustínMixtepecZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ztn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "SantaCatarinaAlbarradasZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ztp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "LoxichaZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ztq", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Quioquitani-QuieríZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zts", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TilquiapanZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ztt", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "TejalapanZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ztu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "GüiláZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "ztx", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ZaachilaZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zty", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YateeZapotec", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zuh", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Tokano", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zul", + "Part2b": "zul", + "Part2t": "zul", + "Part1": "zu", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zulu", + "Comment": null + }, + { + "Id": "zum", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Kumzari", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zun", + "Part2b": "zun", + "Part2t": "zun", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zuni", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zuy", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zumaya", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zwa", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "Zay", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zxx", + "Part2b": "zxx", + "Part2t": "zxx", + "Scope": "S", + "Language_Type": "S", + "Ref_Name": "Nolinguisticcontent", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zyb", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YongbeiZhuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zyg", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YangZhuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zyj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YoujiangZhuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zyn", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "YongnanZhuang", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zyp", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ZypheChin", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zza", + "Part2b": "zza", + "Part2t": "zza", + "Scope": "M", + "Language_Type": "L", + "Ref_Name": "Zaza", + "Comment": null, + "ScriptDirection": "ltr" + }, + { + "Id": "zzj", + "Scope": "I", + "Language_Type": "L", + "Ref_Name": "ZuojiangZhuang", + "Comment": null, + "ScriptDirection": "ltr" + } +] \ No newline at end of file diff --git a/src/utils/progressManager.ts b/src/utils/progressManager.ts deleted file mode 100644 index afd961842..000000000 --- a/src/utils/progressManager.ts +++ /dev/null @@ -1,38 +0,0 @@ -import * as vscode from 'vscode'; - -export interface ProgressStep { - name: string; - message: string; - weight: number; -} - -export class ProgressManager { - private currentStep: number = 0; - private totalWeight: number = 0; - private steps: ProgressStep[] = []; - - constructor( - private progress: vscode.Progress<{ message?: string; increment?: number }>, - steps: ProgressStep[] - ) { - this.steps = steps; - this.totalWeight = steps.reduce((sum, step) => sum + step.weight, 0); - } - - async nextStep(token?: vscode.CancellationToken): Promise { - if (token?.isCancellationRequested) { - throw new vscode.CancellationError(); - } - - const step = this.steps[this.currentStep]; - if (!step) return; - - const increment = (step.weight / this.totalWeight) * 100; - this.progress.report({ message: step.message, increment }); - this.currentStep++; - } - - getCurrentStep(): ProgressStep | undefined { - return this.steps[this.currentStep]; - } -} diff --git a/src/utils/typeDemo.ts b/src/utils/typeDemo.ts deleted file mode 100644 index 5c17f81c8..000000000 --- a/src/utils/typeDemo.ts +++ /dev/null @@ -1,105 +0,0 @@ -// Type demonstration - this file shows how the type system works -// It will have TypeScript errors if uncommented lines are invalid - -import { EditHistory, CodexData } from "../../types"; -import { EditMapUtils } from "./editMapUtils"; -import { EditType } from "../../types/enums"; - -// ✅ Valid: String value for cell content -const validValueEdit: EditHistory<["value"]> = { - editMap: EditMapUtils.value(), - value: "Hello", // ✅ Correctly inferred as string - author: "test", - timestamp: 123, - type: EditType.USER_EDIT -}; - -// ✅ Valid: String value for cell label -const validLabelEdit: EditHistory<["metadata", "cellLabel"]> = { - editMap: EditMapUtils.cellLabel(), - value: "Genesis 1:1", // ✅ Correctly inferred as string - author: "test", - timestamp: 123, - type: EditType.USER_EDIT -}; - -// ❌ Invalid examples (commented out to avoid compilation errors): - -/* -// This would cause a TypeScript error because value should be string, not number: -const invalidValueEdit: EditHistory<["value"]> = { - editMap: EditMapUtils.value(), - value: 123, // ❌ TypeScript error: Type 'number' is not assignable to type 'string' - author: "test", - timestamp: 123, - type: EditType.USER_EDIT -}; - -// This would cause a TypeScript error because value should be boolean, not string: -const invalidBoolEdit: EditHistory<["metadata", "data", "deleted"]> = { - editMap: EditMapUtils.dataDeleted(), - value: "true", // ❌ TypeScript error: Type 'string' is not assignable to type 'boolean' - author: "test", - timestamp: 123, - type: EditType.USER_EDIT -}; - -// This would cause a TypeScript error because value should be CodexData, not partial object: -const invalidObjectEdit: EditHistory<["metadata", "data"]> = { - editMap: EditMapUtils.data(), - value: { startTime: 100 }, // ❌ TypeScript error: Missing required properties - author: "test", - timestamp: 123, - type: EditType.USER_EDIT -}; -*/ - -// ✅ Valid: Boolean value for deleted flag -const validBoolEdit: EditHistory<["metadata", "data", "deleted"]> = { - editMap: EditMapUtils.dataDeleted(), - value: true, // ✅ Correctly inferred as boolean - author: "test", - timestamp: 123, - type: EditType.USER_EDIT -}; - -// ✅ Valid: Number value for timestamp -const validNumberEdit: EditHistory<["metadata", "data", "startTime"]> = { - editMap: EditMapUtils.dataStartTime(), - value: 1000, // ✅ Correctly inferred as number - author: "test", - timestamp: 123, - type: EditType.USER_EDIT -}; - -// ✅ Valid: Object value for data -const validObjectEdit: EditHistory<["metadata", "data"]> = { - editMap: EditMapUtils.data(), - value: { // ✅ Correctly inferred as CodexData - startTime: 0, - endTime: 1000, - deleted: false - } as CodexData, - author: "test", - timestamp: 123, - type: EditType.USER_EDIT -}; - -// Type-safe usage demonstration -function processValueEdit(edit: EditHistory<["value"]>) { - // TypeScript knows edit.value is a string - const htmlContent: string = edit.value; // ✅ No type assertion needed - console.log("Processing HTML:", htmlContent.toUpperCase()); // ✅ String methods available -} - -function processBoolEdit(edit: EditHistory<["metadata", "data", "deleted"]>) { - // TypeScript knows edit.value is a boolean - const isDeleted: boolean = edit.value; // ✅ No type assertion needed - console.log("Deleted status:", isDeleted ? "Yes" : "No"); // ✅ Boolean methods available -} - -// Usage -processValueEdit(validValueEdit); -processBoolEdit(validBoolEdit); - -export { validValueEdit, validLabelEdit, validBoolEdit, validNumberEdit, validObjectEdit }; diff --git a/src/utils/typeSystemTest.ts b/src/utils/typeSystemTest.ts deleted file mode 100644 index b671cc2ff..000000000 --- a/src/utils/typeSystemTest.ts +++ /dev/null @@ -1,81 +0,0 @@ -// Test file to demonstrate the type system is working correctly -import { EditHistory } from "../../types"; -import { EditMapUtils } from "./editMapUtils"; -import { EditType } from "../../types/enums"; - -// This file should compile without errors, demonstrating that the type system works - -// Test 1: Value edit should accept string -const valueEdit: EditHistory<["value"]> = { - editMap: EditMapUtils.value(), - value: "test", // Should be string - author: "test", - timestamp: 123, - type: EditType.USER_EDIT -}; - -// Test 2: Cell label edit should accept string -const labelEdit: EditHistory<["metadata", "cellLabel"]> = { - editMap: EditMapUtils.cellLabel(), - value: "Genesis 1:1", // Should be string - author: "test", - timestamp: 123, - type: EditType.USER_EDIT -}; - -// Test 3: Data edit should accept CodexData object -const dataEdit: EditHistory<["metadata", "data"]> = { - editMap: EditMapUtils.data(), - value: { // Should be CodexData object - startTime: 0, - endTime: 1000, - deleted: false - }, - author: "test", - timestamp: 123, - type: EditType.USER_EDIT -}; - -// Test 4: Boolean edit should accept boolean -const boolEdit: EditHistory<["metadata", "data", "deleted"]> = { - editMap: EditMapUtils.dataDeleted(), - value: true, // Should be boolean - author: "test", - timestamp: 123, - type: EditType.USER_EDIT -}; - -// Test 5: Number edit should accept number -const numberEdit: EditHistory<["metadata", "data", "startTime"]> = { - editMap: EditMapUtils.dataStartTime(), - value: 500, // Should be number - author: "test", - timestamp: 123, - type: EditType.USER_EDIT -}; - -// Type-safe usage demonstration -function processValueEdit(edit: EditHistory<["value"]>) { - // TypeScript knows edit.value is a string - const content: string = edit.value; - return content.toUpperCase(); // String methods work -} - -function processDataEdit(edit: EditHistory<["metadata", "data"]>) { - // TypeScript knows edit.value is a CodexData object - const data = edit.value; - return data.startTime; // Object properties work -} - -function processBoolEdit(edit: EditHistory<["metadata", "data", "deleted"]>) { - // TypeScript knows edit.value is a boolean - const isDeleted: boolean = edit.value; - return isDeleted ? "deleted" : "active"; -} - -// Test the functions -const content = processValueEdit(valueEdit); // Returns string -const startTime = processDataEdit(dataEdit); // Returns number -const status = processBoolEdit(boolEdit); // Returns string - -export { valueEdit, labelEdit, dataEdit, boolEdit, numberEdit, content, startTime, status }; From 886c496b96933a28325b3622c062fe1b838c8f9a Mon Sep 17 00:00:00 2001 From: dadukhankevin Date: Wed, 4 Feb 2026 11:50:01 -0600 Subject: [PATCH 03/13] Consolidated certain utils. --- .../contentIndexes/indexes/wordsIndex.ts | 21 +- src/extension.ts | 2 +- src/projectManager/utils/migrationUtils.ts | 2 +- .../NewSourceUploaderProvider.ts | 4 +- .../codexCellEditorMessagehandling.ts | 7 +- .../utils/cellUtils.ts | 2 +- .../translationSuggestions/llmCompletion.ts | 2 +- .../suite/codexCellEditorProvider.test.ts | 4 +- src/test/suite/validatedOnlyExamples.test.ts | 2 +- src/utils/abTesting.ts | 257 ++++++++++++++++++ src/utils/abTestingAnalytics.ts | 46 ---- src/utils/abTestingRegistry.ts | 55 ---- src/utils/abTestingSetup.ts | 112 -------- src/utils/abTestingUtils.ts | 31 --- src/utils/attachmentFolderUtils.ts | 24 -- src/utils/cleaningUtils.ts | 19 -- src/utils/fileTypeUtils.ts | 2 +- src/utils/idGenerator.ts | 15 - src/utils/{uuidUtils.ts => idUtils.ts} | 46 +++- src/utils/notebookMetadataManager.ts | 2 +- src/utils/pathUtils.ts | 94 ++++++- src/utils/webPathUtils.ts | 57 ---- webpack.config.js | 2 +- 23 files changed, 420 insertions(+), 388 deletions(-) create mode 100644 src/utils/abTesting.ts delete mode 100644 src/utils/abTestingAnalytics.ts delete mode 100644 src/utils/abTestingRegistry.ts delete mode 100644 src/utils/abTestingSetup.ts delete mode 100644 src/utils/abTestingUtils.ts delete mode 100644 src/utils/attachmentFolderUtils.ts delete mode 100644 src/utils/cleaningUtils.ts delete mode 100644 src/utils/idGenerator.ts rename src/utils/{uuidUtils.ts => idUtils.ts} (65%) delete mode 100644 src/utils/webPathUtils.ts diff --git a/src/activationHelpers/contextAware/contentIndexes/indexes/wordsIndex.ts b/src/activationHelpers/contextAware/contentIndexes/indexes/wordsIndex.ts index 08d56a62a..976de282a 100644 --- a/src/activationHelpers/contextAware/contentIndexes/indexes/wordsIndex.ts +++ b/src/activationHelpers/contextAware/contentIndexes/indexes/wordsIndex.ts @@ -1,7 +1,6 @@ import * as vscode from "vscode"; import * as path from "path"; import { FileHandler } from "../../../../providers/dictionaryTable/utilities/FileHandler"; -import { cleanWord } from "../../../../utils/cleaningUtils"; import { updateCompleteDrafts } from "../indexingUtils"; import { getWorkSpaceUri } from "../../../../utils"; import { tokenizeText } from "../../../../utils/nlpUtils"; @@ -10,6 +9,26 @@ import { FileData } from "./fileReaders"; // HTML tag regex for stripping HTML const HTML_TAG_REGEX = /<\/?[^>]+(>|$)/g; +/** + * Cleans a word for spellchecking by removing non-letter characters + */ +function cleanWord(word: string | undefined | null): string { + if (word === undefined || word === null) { + return ""; + } + return ( + word + // Remove non-letter/number/mark characters from start and end + .replace(/^[^\p{L}\p{M}\p{N}']+|[^\p{L}\p{M}\p{N}']+$/gu, "") + // Replace multiple apostrophes with a single one + .replace(/''+/g, "'") + // Remove apostrophes at the start or end of words + .replace(/(? Promise Promise { @@ -4708,7 +4708,7 @@ suite("CodexCellEditorProvider Test Suite", () => { names: ["variant-a", "variant-b"] }; - const { recordVariantSelection } = await import("../../utils/abTestingUtils"); + const { recordVariantSelection } = await import("../../utils/abTesting"); // Don't pass testName to avoid sending test data to production analytics // This tests that the function handles missing testName gracefully diff --git a/src/test/suite/validatedOnlyExamples.test.ts b/src/test/suite/validatedOnlyExamples.test.ts index 1e78ef4b8..c2b40bb2d 100644 --- a/src/test/suite/validatedOnlyExamples.test.ts +++ b/src/test/suite/validatedOnlyExamples.test.ts @@ -7,7 +7,7 @@ import { SQLiteIndexManager } from "../../activationHelpers/contextAware/content import { CodexCellEditorProvider } from "../../providers/codexCellEditorProvider/codexCellEditorProvider"; import { codexSubtitleContent } from "./mocks/codexSubtitleContent"; import { createMockExtensionContext, createTempCodexFile, deleteIfExists } from "../testUtils"; -import { initializeABTesting } from "../../utils/abTestingSetup"; +import { initializeABTesting } from "../../utils/abTesting"; suite("Validated-only examples behavior", () => { test("getTranslationPairsFromSourceCellQuery forwards onlyValidated and maps results", async () => { diff --git a/src/utils/abTesting.ts b/src/utils/abTesting.ts new file mode 100644 index 000000000..3a12f5904 --- /dev/null +++ b/src/utils/abTesting.ts @@ -0,0 +1,257 @@ +/** + * Consolidated A/B Testing utilities + * Combines: abTestingRegistry, abTestingAnalytics, abTestingUtils, abTestingSetup + */ + +import * as vscode from "vscode"; +import { callLLM } from "./llmUtils"; +import type { TranslationPair } from "../../types"; +import type { CompletionConfig } from "./llmUtils"; +import { buildFewShotExamplesText, buildMessages } from "../providers/translationSuggestions/shared"; + +// ============================================================================ +// Registry +// ============================================================================ + +type ABTestResultPayload = TVariant[] | { variants: TVariant[]; names?: string[] }; +type ABTestHandler = (context: TContext) => Promise>; + +interface ABTestEntry { + name: string; + probability: number; // 0..1 + handler: ABTestHandler; +} + +class ABTestingRegistry { + private tests = new Map>(); + + register( + name: string, + probability: number, + handler: ABTestHandler + ): void { + const clamped = Math.max(0, Math.min(1, probability)); + this.tests.set(name, { name, probability: clamped, handler: handler as ABTestHandler }); + } + + get(name: string): ABTestEntry | undefined { + return this.tests.get(name) as ABTestEntry | undefined; + } + + shouldRun(name: string): boolean { + const entry = this.tests.get(name); + if (!entry) return false; + const rnd = Math.random(); + return rnd < entry.probability; + } + + async maybeRun( + name: string, + context: TContext + ): Promise<{ variants: TVariant[]; names?: string[]; testName?: string } | null> { + const entry = this.tests.get(name) as ABTestEntry | undefined; + if (!entry) return null; + if (!this.shouldRun(name)) return null; + try { + const result = await entry.handler(context); + if (Array.isArray(result)) { + return { variants: result, testName: entry.name }; + } + return { ...result, testName: entry.name }; + } catch (err) { + console.error(`[ABTestingRegistry] Test '${name}' failed`, err); + return null; + } + } +} + +export const abTestingRegistry = new ABTestingRegistry(); +export type { ABTestHandler }; + +// ============================================================================ +// Analytics +// ============================================================================ + +const ANALYTICS_BASE = "https://zero.codexeditor.app"; + +async function postJson(path: string, payload: Record): Promise { + try { + await fetch(`${ANALYTICS_BASE}${path}`, { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify(payload), + }); + } catch (err) { + console.warn(`[ABTestingAnalytics] POST ${path} failed`, err); + } +} + +function getOptionalContext() { + try { + const pm = vscode.workspace.getConfiguration("codex-project-manager"); + const userEmail = pm.get("userEmail") || undefined; + const userName = pm.get("userName") || undefined; + const projectName = pm.get("projectName") || undefined; + return { userId: userEmail || userName, projectId: projectName }; + } catch { + return {} as { userId?: string; projectId?: string }; + } +} + +export async function recordAbResult(args: { + category: string; + options: string[]; + winner: number; // 0-based + userId?: string | number; + projectId?: string | number; +}): Promise { + const extras = getOptionalContext(); + const body: Record = { + category: args.category, + options: args.options, + winner: args.winner, + }; + if (args.userId ?? extras.userId) body.user_id = args.userId ?? extras.userId; + if (args.projectId ?? extras.projectId) body.project_id = args.projectId ?? extras.projectId; + await postJson("/analytics/result", body); +} + +// ============================================================================ +// Variant Selection Recording +// ============================================================================ + +/** + * Record user's variant selection to cloud analytics + */ +export async function recordVariantSelection( + testId: string, + cellId: string, + selectedIndex: number, + selectionTimeMs: number, + names?: string[], + testName?: string +): Promise { + try { + console.log(`Recording variant selection for test ${testId} cell ${cellId}: variant ${selectedIndex}`); + + // Post selection to cloud analytics if we have variant names + if (Array.isArray(names) && typeof selectedIndex === "number" && names[selectedIndex] && testName) { + await recordAbResult({ + category: testName, + options: names, + winner: selectedIndex, + }); + + console.log(`A/B test result sent to cloud: ${testName} - winner: ${names[selectedIndex]}`); + } + } catch (error) { + console.warn("[A/B] Failed to record variant selection:", error); + } +} + +// ============================================================================ +// Test Setup & Context +// ============================================================================ + +// Context for A/B tests +interface ABTestContext { + vscodeWorkspaceConfig?: { get: (key: string) => unknown }; + executeCommand: (command: string, ...rest: unknown[]) => Thenable; + currentCellId: string; + currentCellSourceContent: string; + numberOfFewShotExamples: number; + useOnlyValidatedExamples: boolean; + allowHtmlPredictions: boolean; + fewShotExampleFormat: string; + targetLanguage: string | null; + systemMessage: string; + userMessageInstructions: string; + precedingTranslationPairs: (string | null)[]; + completionConfig: CompletionConfig; + token?: vscode.CancellationToken; +} + +// Helper function to fetch translation pairs using SBS algorithm +async function fetchTranslationPairs( + executeCommand: (command: string, ...rest: unknown[]) => Thenable, + sourceContent: string, + count: number, + useOnlyValidatedExamples: boolean +): Promise { + return await executeCommand( + "codex-editor-extension.getTranslationPairsFromSourceCellQuery", + sourceContent, + Math.max(count, 2), + useOnlyValidatedExamples + ); +} + +// Helper function to generate LLM completion from translation pairs +async function generateCompletionFromPairs( + pairs: TranslationPair[], + count: number, + ctx: ABTestContext +): Promise { + const examplePairs = (pairs || []).slice(0, count); + + const examplesText = buildFewShotExamplesText( + examplePairs, + ctx.allowHtmlPredictions, + "source-and-target" // Always use source-and-target format + ); + + const msgs = buildMessages( + ctx.targetLanguage, + ctx.systemMessage, + ctx.userMessageInstructions.split("\n"), + examplesText, + ctx.precedingTranslationPairs, + ctx.currentCellSourceContent, + ctx.allowHtmlPredictions, + "source-and-target" + ); + + return await callLLM(msgs, ctx.completionConfig, ctx.token); +} + +export function initializeABTesting() { + // A/B testing setup + // Previous tests removed after conclusive results: + // - Search Algorithm: SBS won 71.5% vs FTS5-BM25 28.5% (822 tests) + // - Source vs Target: source-and-target won 55.1% vs target-only 44.9% (405 tests) + // - Example Count 15 vs 30: No significant difference (52.1% vs 47.9%, 71 tests) + // - SBS Efficiency: SBS 15 tied FTS5-BM25 30 (50.6% vs 49.4%, 79 tests) + // + // Current defaults: SBS algorithm, 15 examples, source-and-target format + // + // Remaining test: Validate that 15 examples is sufficient with more data + + abTestingRegistry.register( + "Example Count Test", + 1.0, + async (ctx) => { + const counts = [15, 30]; + + // Fetch enough pairs for the larger count + const maxCount = Math.max(...counts); + const pairs = await fetchTranslationPairs( + ctx.executeCommand, + ctx.currentCellSourceContent, + maxCount, + ctx.useOnlyValidatedExamples + ); + + const runForCount = async (count: number): Promise => { + return await generateCompletionFromPairs(pairs, count, ctx); + }; + + // Run concurrently using Promise.all for improved performance + const [compA, compB] = await Promise.all([runForCount(counts[0]), runForCount(counts[1])]); + + return { + variants: [compA, compB], + names: ["15 examples", "30 examples"], + }; + } + ); +} diff --git a/src/utils/abTestingAnalytics.ts b/src/utils/abTestingAnalytics.ts deleted file mode 100644 index 9780aa98f..000000000 --- a/src/utils/abTestingAnalytics.ts +++ /dev/null @@ -1,46 +0,0 @@ -import * as vscode from "vscode"; - -const ANALYTICS_BASE = "https://zero.codexeditor.app"; - -async function postJson(path: string, payload: any): Promise { - try { - await fetch(`${ANALYTICS_BASE}${path}` as any, { - method: "POST", - headers: { "Content-Type": "application/json" }, - body: JSON.stringify(payload), - } as any); - } catch (err) { - console.warn(`[ABTestingAnalytics] POST ${path} failed`, err); - } -} - -function getOptionalContext() { - try { - const pm = vscode.workspace.getConfiguration("codex-project-manager"); - const userEmail = pm.get("userEmail") || undefined; - const userName = pm.get("userName") || undefined; - const projectName = pm.get("projectName") || undefined; - return { userId: userEmail || userName, projectId: projectName }; - } catch { - return {} as { userId?: string; projectId?: string }; - } -} - -export async function recordAbResult(args: { - category: string; - options: string[]; - winner: number; // 0-based - userId?: string | number; - projectId?: string | number; -}): Promise { - const extras = getOptionalContext(); - const body: any = { - category: args.category, - options: args.options, - winner: args.winner, - }; - if (args.userId ?? extras.userId) body.user_id = args.userId ?? extras.userId; - if (args.projectId ?? extras.projectId) body.project_id = args.projectId ?? extras.projectId; - await postJson("/analytics/result", body); -} - diff --git a/src/utils/abTestingRegistry.ts b/src/utils/abTestingRegistry.ts deleted file mode 100644 index 2b240d5d8..000000000 --- a/src/utils/abTestingRegistry.ts +++ /dev/null @@ -1,55 +0,0 @@ -type ABTestResultPayload = TVariant[] | { variants: TVariant[]; names?: string[] }; -type ABTestHandler = (context: TContext) => Promise>; - -interface ABTestEntry { - name: string; - probability: number; // 0..1 - handler: ABTestHandler; -} - -class ABTestingRegistry { - private tests = new Map>(); - - register( - name: string, - probability: number, - handler: ABTestHandler - ): void { - const clamped = Math.max(0, Math.min(1, probability)); - this.tests.set(name, { name, probability: clamped, handler }); - } - - get(name: string): ABTestEntry | undefined { - return this.tests.get(name); - } - - shouldRun(name: string): boolean { - const entry = this.tests.get(name); - if (!entry) return false; - const rnd = Math.random(); - return rnd < entry.probability; - } - - async maybeRun( - name: string, - context: TContext - ): Promise<{ variants: TVariant[]; names?: string[]; testName?: string } | null> { - const entry = this.tests.get(name) as ABTestEntry | undefined; - if (!entry) return null; - if (!this.shouldRun(name)) return null; - try { - const result = await entry.handler(context); - if (Array.isArray(result)) { - return { variants: result, testName: entry.name }; - } - return { ...result, testName: entry.name }; - } catch (err) { - console.error(`[ABTestingRegistry] Test '${name}' failed`, err); - return null; - } - } -} - -export const abTestingRegistry = new ABTestingRegistry(); -export type { ABTestHandler }; - diff --git a/src/utils/abTestingSetup.ts b/src/utils/abTestingSetup.ts deleted file mode 100644 index 926b0f8a6..000000000 --- a/src/utils/abTestingSetup.ts +++ /dev/null @@ -1,112 +0,0 @@ -import { abTestingRegistry } from "./abTestingRegistry"; -import { callLLM } from "./llmUtils"; -import type * as vscode from "vscode"; -import type { TranslationPair } from "../../types"; -import type { CompletionConfig } from "./llmUtils"; -import { buildFewShotExamplesText, buildMessages } from "../providers/translationSuggestions/shared"; - -// Helper function to fetch translation pairs using SBS algorithm -async function fetchTranslationPairs( - executeCommand: (command: string, ...rest: any[]) => Thenable, - sourceContent: string, - count: number, - useOnlyValidatedExamples: boolean -): Promise { - return await executeCommand( - "codex-editor-extension.getTranslationPairsFromSourceCellQuery", - sourceContent, - Math.max(count, 2), - useOnlyValidatedExamples - ); -} - -// Helper function to generate LLM completion from translation pairs -async function generateCompletionFromPairs( - pairs: TranslationPair[], - count: number, - ctx: ABTestContext -): Promise { - const examplePairs = (pairs || []).slice(0, count); - - const examplesText = buildFewShotExamplesText( - examplePairs, - ctx.allowHtmlPredictions, - "source-and-target" // Always use source-and-target format - ); - - const msgs = buildMessages( - ctx.targetLanguage, - ctx.systemMessage, - ctx.userMessageInstructions.split("\n"), - examplesText, - ctx.precedingTranslationPairs, - ctx.currentCellSourceContent, - ctx.allowHtmlPredictions, - "source-and-target" - ); - - return await callLLM(msgs, ctx.completionConfig, ctx.token); -} - -export function initializeABTesting() { - // A/B testing setup - // Previous tests removed after conclusive results: - // - Search Algorithm: SBS won 71.5% vs FTS5-BM25 28.5% (822 tests) - // - Source vs Target: source-and-target won 55.1% vs target-only 44.9% (405 tests) - // - Example Count 15 vs 30: No significant difference (52.1% vs 47.9%, 71 tests) - // - SBS Efficiency: SBS 15 tied FTS5-BM25 30 (50.6% vs 49.4%, 79 tests) - // - // Current defaults: SBS algorithm, 15 examples, source-and-target format - // - // Remaining test: Validate that 15 examples is sufficient with more data - - abTestingRegistry.register( - "Example Count Test", - 1.0, - async (ctx) => { - const counts = [15, 30]; - - // Fetch enough pairs for the larger count - const maxCount = Math.max(...counts); - const pairs = await fetchTranslationPairs( - ctx.executeCommand, - ctx.currentCellSourceContent, - maxCount, - ctx.useOnlyValidatedExamples - ); - - const runForCount = async (count: number): Promise => { - return await generateCompletionFromPairs(pairs, count, ctx); - }; - - // Run concurrently using Promise.all for improved performance - const [compA, compB] = await Promise.all([ - runForCount(counts[0]), - runForCount(counts[1]), - ]); - - return { - variants: [compA, compB], - names: ["15 examples", "30 examples"] - }; - } - ); -} - -// Context for A/B tests -interface ABTestContext { - vscodeWorkspaceConfig?: { get: (key: string) => unknown; }; - executeCommand: (command: string, ...rest: any[]) => Thenable; - currentCellId: string; - currentCellSourceContent: string; - numberOfFewShotExamples: number; - useOnlyValidatedExamples: boolean; - allowHtmlPredictions: boolean; - fewShotExampleFormat: string; - targetLanguage: string | null; - systemMessage: string; - userMessageInstructions: string; - precedingTranslationPairs: any[]; - completionConfig: CompletionConfig; - token?: vscode.CancellationToken; -} diff --git a/src/utils/abTestingUtils.ts b/src/utils/abTestingUtils.ts deleted file mode 100644 index 5559cb795..000000000 --- a/src/utils/abTestingUtils.ts +++ /dev/null @@ -1,31 +0,0 @@ -/** - * Record user's variant selection to cloud analytics - */ -export async function recordVariantSelection( - testId: string, - cellId: string, - selectedIndex: number, - selectionTimeMs: number, - names?: string[], - testName?: string -): Promise { - try { - console.log(`Recording variant selection for test ${testId} cell ${cellId}: variant ${selectedIndex}`); - - // Post selection to cloud analytics if we have variant names - if (Array.isArray(names) && typeof selectedIndex === "number" && names[selectedIndex] && testName) { - const { recordAbResult } = await import("./abTestingAnalytics"); - - // Send result to cloud analytics - await recordAbResult({ - category: testName, - options: names, - winner: selectedIndex, - }); - - console.log(`A/B test result sent to cloud: ${testName} - winner: ${names[selectedIndex]}`); - } - } catch (error) { - console.warn("[A/B] Failed to record variant selection:", error); - } -} diff --git a/src/utils/attachmentFolderUtils.ts b/src/utils/attachmentFolderUtils.ts deleted file mode 100644 index df1fdd145..000000000 --- a/src/utils/attachmentFolderUtils.ts +++ /dev/null @@ -1,24 +0,0 @@ -import * as path from "path"; -import * as vscode from "vscode"; - -/** - * Returns the folder segment we use for book-scoped attachments under: - * - .project/attachments/files/{SEGMENT}/ - * - .project/attachments/pointers/{SEGMENT}/ - * - * For typical projects this is the base filename of the active notebook: - * - ".../files/target/MAT.codex" -> "MAT" - * - ".../.project/sourceTexts/MAT.source" -> "MAT" - * - * We intentionally derive from the *document filename* (not cell IDs) because - * cell IDs may now be UUIDs and no longer encode the book/document name. - */ -export function getAttachmentDocumentSegmentFromUri(documentUri: vscode.Uri): string { - // Prefer fsPath when available (file scheme); fall back to uri.path. - const rawPath = documentUri.fsPath || documentUri.path || ""; - const base = path.basename(rawPath); - const withoutKnownExt = base.replace(/\.(codex|source)$/i, ""); - const segment = withoutKnownExt.trim(); - return segment || "UNKNOWN"; -} - diff --git a/src/utils/cleaningUtils.ts b/src/utils/cleaningUtils.ts deleted file mode 100644 index 60a1cf118..000000000 --- a/src/utils/cleaningUtils.ts +++ /dev/null @@ -1,19 +0,0 @@ -export function cleanWord(word: string | undefined | null): string { - // this is for the spellchecker - if (word === undefined || word === null) { - return ""; - } - return ( - word - // Remove non-letter/number/mark characters from start and end - .replace(/^[^\p{L}\p{M}\p{N}']+|[^\p{L}\p{M}\p{N}']+$/gu, "") - // Replace multiple apostrophes with a single one - .replace(/''+/g, "'") - // Remove apostrophes at the start or end of words - .replace(/(? = new Map(); - -export function generateUniqueId(baseName: string): string { - if (idCache.has(baseName)) { - return idCache.get(baseName)!; - } - const timestamp = new Date().toISOString().replace(/[-:]/g, "").split(".")[0]; - const newId = `${baseName}-${timestamp}`; - idCache.set(baseName, newId); - return newId; -} - -export function clearIdCache() { - idCache.clear(); -} diff --git a/src/utils/uuidUtils.ts b/src/utils/idUtils.ts similarity index 65% rename from src/utils/uuidUtils.ts rename to src/utils/idUtils.ts index ce5cb87c2..c0eebe77f 100644 --- a/src/utils/uuidUtils.ts +++ b/src/utils/idUtils.ts @@ -1,9 +1,38 @@ +/** + * Consolidated ID and UUID utilities + * Combines: idGenerator, uuidUtils + */ + +// ============================================================================ +// Cached unique ID generation (timestamp-based) +// ============================================================================ + +const idCache: Map = new Map(); + +export function generateUniqueId(baseName: string): string { + if (idCache.has(baseName)) { + return idCache.get(baseName)!; + } + const timestamp = new Date().toISOString().replace(/[-:]/g, "").split(".")[0]; + const newId = `${baseName}-${timestamp}`; + idCache.set(baseName, newId); + return newId; +} + +export function clearIdCache() { + idCache.clear(); +} + +// ============================================================================ +// UUID generation (hash-based) +// ============================================================================ + /** * Generates a deterministic UUID from a cell ID using SHA-256 hashing. * This ensures the same cell ID always produces the same UUID, preventing merge conflicts. - * + * * Format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx - * + * * @param originalId The original cell ID (e.g., "GEN 1:1") * @returns A UUID-formatted string (e.g., "590e4641-0a20-4655-a7fd-c1eb116e757c") */ @@ -15,16 +44,16 @@ export async function generateCellIdFromHash(originalId: string): Promise b.toString(16).padStart(2, "0")).join(""); + hash = hashArray.map((b) => b.toString(16).padStart(2, "0")).join(""); } catch (error) { - console.error("[uuidUtils] Web Crypto API failed, trying Node.js crypto:", error); + console.error("[idUtils] Web Crypto API failed, trying Node.js crypto:", error); // Fall through to Node.js crypto hash = await useNodeCrypto(originalId); } @@ -36,8 +65,8 @@ export async function generateCellIdFromHash(originalId: string): Promise { const hash = nodeCrypto.createHash("sha256").update(originalId).digest("hex"); return hash; } catch (error) { - console.error("[uuidUtils] Failed to use Node.js crypto:", error); + console.error("[idUtils] Failed to use Node.js crypto:", error); throw new Error("No crypto implementation available (neither Web Crypto API nor Node.js crypto)"); } } @@ -72,4 +101,3 @@ export function isUuidFormat(id: string): boolean { const uuidRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i; return uuidRegex.test(id); } - diff --git a/src/utils/notebookMetadataManager.ts b/src/utils/notebookMetadataManager.ts index 29460e866..d3c6c2477 100644 --- a/src/utils/notebookMetadataManager.ts +++ b/src/utils/notebookMetadataManager.ts @@ -2,7 +2,7 @@ import * as vscode from "vscode"; import * as path from "path"; import { CodexContentSerializer } from "../serializer"; -import { generateUniqueId, clearIdCache } from "./idGenerator"; +import { generateUniqueId, clearIdCache } from "./idUtils"; import { NavigationCell, getCorrespondingSourceUri, getCorrespondingCodexUri } from "./codexNotebookUtils"; // import { API as GitAPI, Repository, Status } from "../providers/scm/git.d"; import { diff --git a/src/utils/pathUtils.ts b/src/utils/pathUtils.ts index dfa98a93d..112a66276 100644 --- a/src/utils/pathUtils.ts +++ b/src/utils/pathUtils.ts @@ -1,7 +1,15 @@ /** - * Cross-platform path helpers + * Consolidated path utilities + * Combines: pathUtils, webPathUtils, attachmentFolderUtils */ +import * as path from "path"; +import * as vscode from "vscode"; + +// ============================================================================ +// Cross-platform path helpers +// ============================================================================ + /** * Convert any Windows-style backslashes to POSIX-style forward slashes. * Keeps existing forward slashes intact and does not perform URL decoding. @@ -11,7 +19,6 @@ export function toPosixPath(inputPath: string): string { return inputPath.replace(/\\/g, "/"); } - /** * Normalize an attachment URL to POSIX and ensure it points to the files/ structure. * Examples: @@ -43,4 +50,87 @@ export function normalizeAttachmentUrl(rawUrl: string | undefined): string | und return url; } +// ============================================================================ +// Web-compatible URI path utilities +// ============================================================================ + +/** + * Web-compatible path utilities that use URIs instead of file system paths + */ +export class WebPathUtils { + /** + * Get the basename of a URI + */ + static getBasename(uri: vscode.Uri): string { + const uriPath = uri.path; + const parts = uriPath.split("/"); + return parts[parts.length - 1]; + } + + /** + * Get the extension of a URI + */ + static getExtension(uri: vscode.Uri): string { + const basename = this.getBasename(uri); + const parts = basename.split("."); + return parts.length > 1 ? parts[parts.length - 1].toLowerCase() : ""; + } + + /** + * Get the directory name of a URI + */ + static getDirname(uri: vscode.Uri): string { + const uriPath = uri.path; + const parts = uriPath.split("/"); + parts.pop(); + return parts.join("/"); + } + + /** + * Join path segments with a URI + */ + static join(uri: vscode.Uri, ...paths: string[]): vscode.Uri { + return vscode.Uri.joinPath(uri, ...paths); + } + + /** + * Check if a URI ends with a specific extension + */ + static hasExtension(uri: vscode.Uri, extension: string): boolean { + return this.getExtension(uri) === extension.toLowerCase(); + } + + /** + * Get the name without extension + */ + static getNameWithoutExtension(uri: vscode.Uri): string { + const basename = this.getBasename(uri); + const extension = this.getExtension(uri); + return extension ? basename.slice(0, -(extension.length + 1)) : basename; + } +} + +// ============================================================================ +// Attachment folder utilities +// ============================================================================ +/** + * Returns the folder segment we use for book-scoped attachments under: + * - .project/attachments/files/{SEGMENT}/ + * - .project/attachments/pointers/{SEGMENT}/ + * + * For typical projects this is the base filename of the active notebook: + * - ".../files/target/MAT.codex" -> "MAT" + * - ".../.project/sourceTexts/MAT.source" -> "MAT" + * + * We intentionally derive from the *document filename* (not cell IDs) because + * cell IDs may now be UUIDs and no longer encode the book/document name. + */ +export function getAttachmentDocumentSegmentFromUri(documentUri: vscode.Uri): string { + // Prefer fsPath when available (file scheme); fall back to uri.path. + const rawPath = documentUri.fsPath || documentUri.path || ""; + const base = path.basename(rawPath); + const withoutKnownExt = base.replace(/\.(codex|source)$/i, ""); + const segment = withoutKnownExt.trim(); + return segment || "UNKNOWN"; +} diff --git a/src/utils/webPathUtils.ts b/src/utils/webPathUtils.ts deleted file mode 100644 index 7ac6b10ea..000000000 --- a/src/utils/webPathUtils.ts +++ /dev/null @@ -1,57 +0,0 @@ -import * as vscode from 'vscode'; - -/** - * Web-compatible path utilities that use URIs instead of file system paths - */ -export class WebPathUtils { - /** - * Get the basename of a URI - */ - static getBasename(uri: vscode.Uri): string { - const path = uri.path; - const parts = path.split('/'); - return parts[parts.length - 1]; - } - - /** - * Get the extension of a URI - */ - static getExtension(uri: vscode.Uri): string { - const basename = this.getBasename(uri); - const parts = basename.split('.'); - return parts.length > 1 ? parts[parts.length - 1].toLowerCase() : ''; - } - - /** - * Get the directory name of a URI - */ - static getDirname(uri: vscode.Uri): string { - const path = uri.path; - const parts = path.split('/'); - parts.pop(); - return parts.join('/'); - } - - /** - * Join path segments with a URI - */ - static join(uri: vscode.Uri, ...paths: string[]): vscode.Uri { - return vscode.Uri.joinPath(uri, ...paths); - } - - /** - * Check if a URI ends with a specific extension - */ - static hasExtension(uri: vscode.Uri, extension: string): boolean { - return this.getExtension(uri) === extension.toLowerCase(); - } - - /** - * Get the name without extension - */ - static getNameWithoutExtension(uri: vscode.Uri): string { - const basename = this.getBasename(uri); - const extension = this.getExtension(uri); - return extension ? basename.slice(0, -(extension.length + 1)) : basename; - } -} \ No newline at end of file diff --git a/webpack.config.js b/webpack.config.js index e820ab05f..2c36c7583 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -292,4 +292,4 @@ const testRunnerConfig = { devtool: "nosources-source-map", }; -module.exports = [extensionConfig, serverConfig, testConfig, testRunnerConfig]; +module.exports = [extensionConfig, testConfig, testRunnerConfig]; From 4a3bb963794ed6be4b94b75ccc9ee0d5fb3672f5 Mon Sep 17 00:00:00 2001 From: dadukhankevin Date: Wed, 4 Feb 2026 12:25:07 -0600 Subject: [PATCH 04/13] Organized migration files. Merge some audio utilities. --- .../contextAware/commands.ts | 2 +- src/extension.ts | 11 +- src/projectManager/syncManager.ts | 2 +- src/projectManager/utils/merge/resolvers.ts | 2 +- .../NewSourceUploaderProvider.ts | 7 +- .../importers/audioSplitter.ts | 8 +- .../codexCellEditorMessagehandling.ts | 2 +- .../customCommentsWebviewProvider.ts | 2 +- src/providers/mainMenu/mainMenuProvider.ts | 2 +- src/test/suite/audio/audioProcessor.test.ts | 2 +- .../suite/audioAttachmentsRestoration.test.ts | 2 +- src/utils/audioExtractor.ts | 187 ---- src/utils/audioMerger.ts | 162 ---- src/utils/audioProcessing.ts | 841 ++++++++++++++++++ src/utils/audioProcessor.ts | 475 ---------- src/utils/fileUtils.ts | 2 +- .../audioAttachmentsMigrationUtils.ts | 4 +- src/utils/{ => migrations}/audioMigration.ts | 0 .../commentsMigrationUtils.ts | 4 +- 19 files changed, 867 insertions(+), 850 deletions(-) delete mode 100644 src/utils/audioExtractor.ts delete mode 100644 src/utils/audioMerger.ts create mode 100644 src/utils/audioProcessing.ts delete mode 100644 src/utils/audioProcessor.ts rename src/utils/{ => migrations}/audioAttachmentsMigrationUtils.ts (99%) rename src/utils/{ => migrations}/audioMigration.ts (100%) rename src/utils/{ => migrations}/commentsMigrationUtils.ts (99%) diff --git a/src/activationHelpers/contextAware/commands.ts b/src/activationHelpers/contextAware/commands.ts index ce23ecd6f..a2a5686d9 100644 --- a/src/activationHelpers/contextAware/commands.ts +++ b/src/activationHelpers/contextAware/commands.ts @@ -18,7 +18,7 @@ import { registerSyncCommands } from "../../projectManager/syncManager"; import { MainMenuProvider } from "../../providers/mainMenu/mainMenuProvider"; import { getSQLiteIndexManager } from "./contentIndexes/indexes/sqliteIndexManager"; import { testProjectLoadingPerformance } from "../../test-project-loading"; -import { migrateXM4aFiles, showMigrationResults } from "../../utils/audioMigration"; +import { migrateXM4aFiles, showMigrationResults } from "../../utils/migrations/audioMigration"; export async function registerCommands(context: vscode.ExtensionContext) { // Register the centralized sync commands diff --git a/src/extension.ts b/src/extension.ts index dc610b875..8a02fbe77 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -50,7 +50,7 @@ import { CodexCellEditorProvider } from "./providers/codexCellEditorProvider/cod import { checkForUpdatesOnStartup, registerUpdateCommands } from "./utils/updateChecker"; import { fileExists } from "./utils/webviewUtils"; import { checkIfMetadataAndGitIsInitialized } from "./projectManager/utils/projectUtils"; -import { CommentsMigrator } from "./utils/commentsMigrationUtils"; +import { CommentsMigrator } from "./utils/migrations/commentsMigrationUtils"; import { registerTestingCommands } from "./evaluation/testingCommands"; import { initializeABTesting } from "./utils/abTesting"; import { @@ -60,8 +60,7 @@ import { migration_addImporterTypeToMetadata, migration_hoistDocumentContextToNotebookMetadata, } from "./projectManager/utils/migrationUtils"; -import { initializeAudioProcessor } from "./utils/audioProcessor"; -import { initializeAudioMerger } from "./utils/audioMerger"; +import { initializeAudioProcessing } from "./utils/audioProcessing"; import * as os from "os"; import * as path from "path"; @@ -313,10 +312,8 @@ export async function activate(context: vscode.ExtensionContext) { console.error("Error saving/closing tabs before splash screen:", e); } - // Initialize audio processor for on-demand FFmpeg downloads - initializeAudioProcessor(context); - // Initialize audio merger for merging audio files - initializeAudioMerger(context); + // Initialize audio processing for on-demand FFmpeg downloads + initializeAudioProcessing(context); // Register and show splash screen immediately before anything else try { diff --git a/src/projectManager/syncManager.ts b/src/projectManager/syncManager.ts index cbb157026..2017373a4 100644 --- a/src/projectManager/syncManager.ts +++ b/src/projectManager/syncManager.ts @@ -11,7 +11,7 @@ import http from "isomorphic-git/http/web"; import { getFrontierVersionStatus, checkVSCodeVersion } from "./utils/versionChecks"; import { BookCompletionData } from "../progressReporting/progressReportingService"; import { ProgressReportingService, registerProgressReportingCommands } from "../progressReporting/progressReportingService"; -import { CommentsMigrator } from "../utils/commentsMigrationUtils"; +import { CommentsMigrator } from "../utils/migrations/commentsMigrationUtils"; // Define TranslationProgress interface locally since it's not exported from types interface BookProgress { diff --git a/src/projectManager/utils/merge/resolvers.ts b/src/projectManager/utils/merge/resolvers.ts index dada483f7..b479ff5b5 100644 --- a/src/projectManager/utils/merge/resolvers.ts +++ b/src/projectManager/utils/merge/resolvers.ts @@ -5,7 +5,7 @@ import { ConflictResolutionStrategy, ConflictFile, SmartEdit } from "./types"; import { determineStrategy } from "./strategies"; import { getAuthApi } from "../../../extension"; import { NotebookCommentThread, NotebookComment, CustomNotebookCellData, CustomNotebookMetadata } from "../../../../types"; -import { CommentsMigrator } from "../../../utils/commentsMigrationUtils"; +import { CommentsMigrator } from "../../../utils/migrations/commentsMigrationUtils"; import { CodexCell } from "@/utils/codexNotebookUtils"; import { CodexCellTypes, EditType } from "../../../../types/enums"; import { EditHistory, ValidationEntry, FileEditHistory, ProjectEditHistory } from "../../../../types/index.d"; diff --git a/src/providers/NewSourceUploader/NewSourceUploaderProvider.ts b/src/providers/NewSourceUploader/NewSourceUploaderProvider.ts index a4e3c58eb..1072567c9 100644 --- a/src/providers/NewSourceUploader/NewSourceUploaderProvider.ts +++ b/src/providers/NewSourceUploader/NewSourceUploaderProvider.ts @@ -657,7 +657,7 @@ export class NewSourceUploaderProvider implements vscode.CustomTextEditorProvide // 3) Persist audio attachments (extract from video if needed) // Import audio extraction utility - const { processMediaAttachment } = await import("../../utils/audioExtractor"); + const { processMediaAttachment } = await import("../../utils/audioProcessing"); // Show progress with VS Code information message const totalAttachments = message.attachments.length; @@ -809,7 +809,10 @@ export class NewSourceUploaderProvider implements vscode.CustomTextEditorProvide } // Process the media (extract audio if from video, or use pre-segmented audio) - audioBuffer = await processMediaAttachment(attachment, isFromVideo || false); + audioBuffer = await processMediaAttachment( + { dataBase64, startTime: attachment.startTime, endTime: attachment.endTime }, + isFromVideo || false + ); // Write the audio file const filesPath = vscode.Uri.joinPath(filesDir, effectiveFileName); diff --git a/src/providers/NewSourceUploader/importers/audioSplitter.ts b/src/providers/NewSourceUploader/importers/audioSplitter.ts index 0719f2c54..d4781fc9c 100644 --- a/src/providers/NewSourceUploader/importers/audioSplitter.ts +++ b/src/providers/NewSourceUploader/importers/audioSplitter.ts @@ -93,7 +93,7 @@ class AudioSplitter { return; } - const { processAudioFile } = await import("../../../utils/audioProcessor"); + const { processAudioFile } = await import("../../../utils/audioProcessing"); const thresholdDb = message.thresholdDb ?? -40; const minDuration = message.minDuration ?? 0.5; @@ -200,7 +200,7 @@ class AudioSplitter { throw new Error("Session not found"); } - const { processAudioFile } = await import("../../../utils/audioProcessor"); + const { processAudioFile } = await import("../../../utils/audioProcessing"); const metadata = await processAudioFile(session.filePath, 30, message.thresholdDb, message.minDuration); const segments = metadata.segments.map((seg, index) => ({ @@ -260,7 +260,7 @@ class AudioSplitter { const outputFileName = `${message.segmentId}.wav`; const outputPath = path.join(session.tempDir, outputFileName); - const { extractSegment } = await import("../../../utils/audioProcessor"); + const { extractSegment } = await import("../../../utils/audioProcessing"); await extractSegment(session.filePath, outputPath, message.startSec, message.endSec); // Convert to data URL for CSP compliance (webview only allows blob: and data: for media) @@ -435,7 +435,7 @@ class AudioSplitter { const filesPath = path.join(filesDir.fsPath, mapping.fileName); const pointersPath = path.join(pointersDir.fsPath, mapping.fileName); - const { extractSegment } = await import("../../../utils/audioProcessor"); + const { extractSegment } = await import("../../../utils/audioProcessing"); await extractSegment(session.filePath, filesPath, segment.startSec, segment.endSec); fs.copyFileSync(filesPath, pointersPath); diff --git a/src/providers/codexCellEditorProvider/codexCellEditorMessagehandling.ts b/src/providers/codexCellEditorProvider/codexCellEditorMessagehandling.ts index d3ab9adbb..45cf654c2 100644 --- a/src/providers/codexCellEditorProvider/codexCellEditorMessagehandling.ts +++ b/src/providers/codexCellEditorProvider/codexCellEditorMessagehandling.ts @@ -21,7 +21,7 @@ import { getCommentsFromFile } from "../../utils/fileUtils"; import { getUnresolvedCommentsCountForCell } from "../../utils/commentsUtils"; import { toPosixPath, getAttachmentDocumentSegmentFromUri } from "../../utils/pathUtils"; import { revalidateCellMissingFlags } from "../../utils/audioMissingUtils"; -import { mergeAudioFiles } from "../../utils/audioMerger"; +import { mergeAudioFiles } from "../../utils/audioProcessing"; // Comment out problematic imports // import { getAddWordToSpellcheckApi } from "../../extension"; // import { getSimilarCellIds } from "@/utils/semanticSearch"; diff --git a/src/providers/commentsWebview/customCommentsWebviewProvider.ts b/src/providers/commentsWebview/customCommentsWebviewProvider.ts index af8e1b984..bc6fc9edf 100644 --- a/src/providers/commentsWebview/customCommentsWebviewProvider.ts +++ b/src/providers/commentsWebview/customCommentsWebviewProvider.ts @@ -2,7 +2,7 @@ import * as vscode from "vscode"; import { CommentPostMessages, CellIdGlobalState, NotebookCommentThread, NotebookComment } from "../../../types"; import { initializeStateStore } from "../../stateStore"; import { getCommentsFromFile, writeSerializedData } from "../../utils/fileUtils"; -import { CommentsMigrator } from "../../utils/commentsMigrationUtils"; +import { CommentsMigrator } from "../../utils/migrations/commentsMigrationUtils"; import { Uri, window, workspace } from "vscode"; import { BaseWebviewProvider, GlobalProvider } from "../../globalProvider"; import { safePostMessageToView } from "../../utils/webviewUtils"; diff --git a/src/providers/mainMenu/mainMenuProvider.ts b/src/providers/mainMenu/mainMenuProvider.ts index c3625eaed..fa924735b 100644 --- a/src/providers/mainMenu/mainMenuProvider.ts +++ b/src/providers/mainMenu/mainMenuProvider.ts @@ -19,7 +19,7 @@ import * as fs from "fs"; import { getNotebookMetadataManager } from "../../utils/notebookMetadataManager"; import { SyncManager } from "../../projectManager/syncManager"; import { manualUpdateCheck } from "../../utils/updateChecker"; -import { CommentsMigrator } from "../../utils/commentsMigrationUtils"; +import { CommentsMigrator } from "../../utils/migrations/commentsMigrationUtils"; import * as path from "path"; import { PublishProjectView } from "../publishProjectView/PublishProjectView"; const DEBUG_MODE = false; // Set to true to enable debug logging diff --git a/src/test/suite/audio/audioProcessor.test.ts b/src/test/suite/audio/audioProcessor.test.ts index 61f950094..21006bf57 100644 --- a/src/test/suite/audio/audioProcessor.test.ts +++ b/src/test/suite/audio/audioProcessor.test.ts @@ -10,7 +10,7 @@ import { extractSegment, extractSegments, initializeAudioProcessor, -} from "../../../utils/audioProcessor"; +} from "../../../utils/audioProcessing"; import { createMockExtensionContext, swallowDuplicateCommandRegistrations, diff --git a/src/test/suite/audioAttachmentsRestoration.test.ts b/src/test/suite/audioAttachmentsRestoration.test.ts index e11c6785a..fab2853b1 100644 --- a/src/test/suite/audioAttachmentsRestoration.test.ts +++ b/src/test/suite/audioAttachmentsRestoration.test.ts @@ -3,7 +3,7 @@ import * as vscode from 'vscode'; import * as path from 'path'; import * as os from 'os'; -import { migrateAudioAttachments } from '../../utils/audioAttachmentsMigrationUtils'; +import { migrateAudioAttachments } from '../../utils/migrations/audioAttachmentsMigrationUtils'; suite('Audio Attachments Restoration', () => { function makeWorkspace() { diff --git a/src/utils/audioExtractor.ts b/src/utils/audioExtractor.ts deleted file mode 100644 index a816e04bf..000000000 --- a/src/utils/audioExtractor.ts +++ /dev/null @@ -1,187 +0,0 @@ -/** - * Audio extraction utilities for extracting audio from video files - * Uses fluent-ffmpeg if available, otherwise falls back to simple copy - */ - -import * as vscode from 'vscode'; -import * as path from 'path'; -import * as fs from 'fs'; -// Load spawn lazily to avoid bundling 'child_process' in test/browser builds -function getSpawn(): ((command: string, args?: readonly string[]) => any) | null { - try { - // Use eval to prevent webpack from statically analyzing this require - // eslint-disable-next-line no-eval - const req = eval('require') as any; - const cp = req('child_process'); - return cp && cp.spawn ? cp.spawn : null; - } catch { - return null; - } -} - -/** - * Check if ffmpeg is available on the system - */ -async function isFFmpegAvailable(): Promise { - return new Promise((resolve) => { - const spawn = getSpawn(); - if (!spawn) { - // In environments without child_process (e.g., tests), report not available - resolve(false); - return; - } - - const ffmpeg = spawn('ffmpeg', ['-version']); - - // Set a timeout to avoid hanging - const timeout = setTimeout(() => { - ffmpeg.kill(); - resolve(false); - }, 5000); - - ffmpeg.on('error', () => { - clearTimeout(timeout); - resolve(false); - }); - ffmpeg.on('exit', (code: number | null) => { - clearTimeout(timeout); - resolve(code === 0); - }); - }); -} - -/** - * Extract audio from video using ffmpeg - */ -async function extractAudioWithFFmpeg( - videoData: Buffer, - startTime: number, - endTime: number -): Promise { - return new Promise((resolve, reject) => { - const spawn = getSpawn(); - if (!spawn) { - return reject(new Error('child_process.spawn not available')); - } - const tempDir = path.join(__dirname, '..', '..', '.temp'); - if (!fs.existsSync(tempDir)) { - fs.mkdirSync(tempDir, { recursive: true }); - } - - const tempVideoPath = path.join(tempDir, `temp_video_${Date.now()}.mp4`); - const tempAudioPath = path.join(tempDir, `temp_audio_${Date.now()}.webm`); - - // Write video to temp file - fs.writeFileSync(tempVideoPath, videoData); - - // Build ffmpeg command - const args = [ - '-i', tempVideoPath, - '-vn', // No video - '-acodec', 'libopus', // Use Opus codec for webm - '-b:a', '128k', // Audio bitrate - ]; - - // Add time range if specified - if (startTime > 0) { - args.push('-ss', startTime.toString()); - } - if (isFinite(endTime) && endTime > startTime) { - args.push('-t', (endTime - startTime).toString()); - } - - args.push('-y', tempAudioPath); // Output file - - const ffmpeg = spawn('ffmpeg', args); - - let stderr = ''; - ffmpeg.stderr.on('data', (data: Buffer) => { - stderr += data.toString(); - }); - - ffmpeg.on('error', (error: Error) => { - // Clean up temp files - try { fs.unlinkSync(tempVideoPath); } catch (e) { /* ignore cleanup errors */ } - try { fs.unlinkSync(tempAudioPath); } catch (e) { /* ignore cleanup errors */ } - reject(new Error(`FFmpeg error: ${error.message}`)); - }); - - ffmpeg.on('exit', (code: number | null) => { - if (code === 0) { - try { - const audioBuffer = fs.readFileSync(tempAudioPath); - // Clean up temp files - fs.unlinkSync(tempVideoPath); - fs.unlinkSync(tempAudioPath); - resolve(audioBuffer); - } catch (error) { - reject(new Error(`Failed to read audio file: ${error}`)); - } - } else { - // Clean up temp files - try { fs.unlinkSync(tempVideoPath); } catch (e) { /* ignore cleanup errors */ } - try { fs.unlinkSync(tempAudioPath); } catch (e) { /* ignore cleanup errors */ } - reject(new Error(`FFmpeg exited with code ${code}: ${stderr}`)); - } - }); - }); -} - -/** - * Fallback: Just copy the video data as-is (browser will handle playback) - */ -function fallbackCopyVideo(videoData: Buffer): Buffer { - // For fallback, we just return the video data - // The browser's audio player might be able to play just the audio track - console.warn('FFmpeg not available, using video file as-is for audio attachment'); - return videoData; -} - -/** - * Extract audio from video data - */ -export async function extractAudioFromVideo( - videoData: Buffer, - startTime: number = 0, - endTime: number = Number.POSITIVE_INFINITY -): Promise { - const hasFFmpeg = await isFFmpegAvailable(); - - if (hasFFmpeg) { - console.log('Using FFmpeg to extract audio from video'); - try { - return await extractAudioWithFFmpeg(videoData, startTime, endTime); - } catch (error) { - console.error('FFmpeg extraction failed, using fallback:', error); - return fallbackCopyVideo(videoData); - } - } else { - console.log('FFmpeg not available, using fallback method'); - return fallbackCopyVideo(videoData); - } -} - -/** - * Process audio/video attachments and extract audio if needed - */ -export async function processMediaAttachment( - attachment: any, - isFromVideo: boolean -): Promise { - const base64 = attachment.dataBase64.includes(",") - ? attachment.dataBase64.split(",")[1] - : attachment.dataBase64; - const buffer = Buffer.from(base64, "base64"); - - if (isFromVideo) { - // Extract audio from video - return await extractAudioFromVideo( - buffer, - attachment.startTime || 0, - attachment.endTime || Number.POSITIVE_INFINITY - ); - } else { - // Audio file, return as-is - return buffer; - } -} diff --git a/src/utils/audioMerger.ts b/src/utils/audioMerger.ts deleted file mode 100644 index e7090fdf1..000000000 --- a/src/utils/audioMerger.ts +++ /dev/null @@ -1,162 +0,0 @@ -/** - * Audio file merging utility using FFmpeg - * Concatenates two audio files into a single merged audio file - */ - -import * as path from 'path'; -import * as fs from 'fs'; -import * as vscode from 'vscode'; -import { getFFmpegPath } from './ffmpegManager'; - -// Lazy load to avoid bundling issues -function getFs(): typeof fs { - try { - const req = eval('require') as any; - return req('fs'); - } catch { - return fs; - } -} - -function getSpawn(): ((command: string, args?: readonly string[]) => any) | null { - try { - const req = eval('require') as any; - const cp = req('child_process'); - return cp && cp.spawn ? cp.spawn : null; - } catch { - return null; - } -} - -// Global extension context for ffmpeg downloads -let extensionContext: vscode.ExtensionContext | undefined; - -/** - * Initialize audio merger with extension context - * Call this once during extension activation - */ -export function initializeAudioMerger(context: vscode.ExtensionContext): void { - extensionContext = context; - console.log('[audioMerger] Initialized with extension context'); -} - -/** - * Merge two audio files using FFmpeg - * @param inputFile1 Path to the first audio file - * @param inputFile2 Path to the second audio file - * @param outputPath Path where the merged audio file should be saved - * @returns Promise that resolves to the output path if successful, or null if FFmpeg is unavailable or merge fails - */ -export async function mergeAudioFiles( - inputFile1: string, - inputFile2: string, - outputPath: string -): Promise { - const fs = getFs(); - const spawn = getSpawn(); - - if (!spawn) { - console.warn('[audioMerger] child_process.spawn not available'); - return null; - } - - // Check if input files exist - if (!fs.existsSync(inputFile1)) { - console.warn(`[audioMerger] Input file 1 does not exist: ${inputFile1}`); - return null; - } - - if (!fs.existsSync(inputFile2)) { - console.warn(`[audioMerger] Input file 2 does not exist: ${inputFile2}`); - return null; - } - - try { - // Get FFmpeg path (may download if needed) - const ffmpegPath = await getFFmpegPath(extensionContext); - - // Ensure output directory exists - const outputDir = path.dirname(outputPath); - if (!fs.existsSync(outputDir)) { - fs.mkdirSync(outputDir, { recursive: true }); - } - - // Create a temporary file list for FFmpeg concat demuxer - // This approach works better for different audio formats - const tempDir = path.join(__dirname, '..', '..', '.temp'); - if (!fs.existsSync(tempDir)) { - fs.mkdirSync(tempDir, { recursive: true }); - } - - const tempListFile = path.join(tempDir, `concat_list_${Date.now()}.txt`); - // Use absolute paths for FFmpeg concat demuxer to avoid path resolution issues - const absInputFile1 = path.isAbsolute(inputFile1) ? inputFile1 : path.resolve(inputFile1); - const absInputFile2 = path.isAbsolute(inputFile2) ? inputFile2 : path.resolve(inputFile2); - // Escape single quotes and backslashes for FFmpeg concat format - const escapedFile1 = absInputFile1.replace(/\\/g, '/').replace(/'/g, "\\'"); - const escapedFile2 = absInputFile2.replace(/\\/g, '/').replace(/'/g, "\\'"); - const listContent = `file '${escapedFile1}'\nfile '${escapedFile2}'`; - fs.writeFileSync(tempListFile, listContent); - - return new Promise((resolve, reject) => { - // Use concat demuxer for better format compatibility - const args = [ - '-f', 'concat', - '-safe', '0', - '-i', tempListFile, - '-c', 'copy', // Copy codec (no re-encoding for speed) - '-y', // Overwrite output file - outputPath - ]; - - const ffmpeg = spawn(ffmpegPath, args); - - let stderr = ''; - ffmpeg.stderr.on('data', (data: Buffer) => { - stderr += data.toString(); - }); - - ffmpeg.on('error', (error: Error) => { - // Clean up temp file - try { - if (fs.existsSync(tempListFile)) { - fs.unlinkSync(tempListFile); - } - } catch (e) { - // Ignore cleanup errors - } - console.error(`[audioMerger] FFmpeg spawn error:`, error); - resolve(null); // Return null instead of rejecting to allow text merge to continue - }); - - ffmpeg.on('exit', (code: number | null) => { - // Clean up temp file - try { - if (fs.existsSync(tempListFile)) { - fs.unlinkSync(tempListFile); - } - } catch (e) { - // Ignore cleanup errors - } - - if (code === 0) { - // Verify output file was created - if (fs.existsSync(outputPath)) { - console.log(`[audioMerger] Successfully merged audio files to: ${outputPath}`); - resolve(outputPath); - } else { - console.warn(`[audioMerger] FFmpeg exited successfully but output file not found: ${outputPath}`); - resolve(null); - } - } else { - console.warn(`[audioMerger] FFmpeg exited with code ${code}: ${stderr.slice(0, 500)}`); - resolve(null); // Return null instead of rejecting to allow text merge to continue - } - }); - }); - } catch (error) { - console.error(`[audioMerger] Error merging audio files:`, error); - return null; - } -} - diff --git a/src/utils/audioProcessing.ts b/src/utils/audioProcessing.ts new file mode 100644 index 000000000..6b1f8efb2 --- /dev/null +++ b/src/utils/audioProcessing.ts @@ -0,0 +1,841 @@ +/** + * Consolidated audio processing utilities using FFmpeg binaries + * Combines: audioProcessor, audioExtractor, audioMerger + * + * Handles: + * - Audio decoding, silence detection, segmentation, and waveform generation + * - Audio extraction from video files + * - Audio file merging + * + * Downloads FFmpeg binaries on-demand to keep VSIX size small + */ + +import * as path from "path"; +import * as fs from "fs"; +import * as vscode from "vscode"; +import { getFFmpegPath, getFFprobePath } from "./ffmpegManager"; + +// ============================================================================ +// Shared utilities (deduplicated from audioProcessor, audioExtractor, audioMerger) +// ============================================================================ + +// Lazy load to avoid bundling issues +function getFs(): typeof fs { + try { + // Use eval to prevent webpack from analyzing + // eslint-disable-next-line no-eval + const req = eval("require") as NodeRequire; + return req("fs") as typeof fs; + } catch { + return fs; + } +} + +function getSpawn(): ((command: string, args?: readonly string[]) => ReturnType) | null { + try { + // eslint-disable-next-line no-eval + const req = eval("require") as NodeRequire; + const cp = req("child_process") as typeof import("child_process"); + return cp && cp.spawn ? cp.spawn : null; + } catch { + return null; + } +} + +// Global extension context for ffmpeg downloads +let extensionContext: vscode.ExtensionContext | undefined; + +/** + * Initialize audio processing with extension context + * Call this once during extension activation + */ +export function initializeAudioProcessing(context: vscode.ExtensionContext): void { + extensionContext = context; + console.log("[audioProcessing] Initialized with extension context"); +} + +// Legacy exports for backwards compatibility +export const initializeAudioProcessor = initializeAudioProcessing; +export const initializeAudioMerger = initializeAudioProcessing; + +// ============================================================================ +// Types +// ============================================================================ + +export interface AudioFileMetadata { + id: string; + name: string; + path: string; + durationSec: number; + sizeBytes: number; + previewPeaks: number[]; + segments: Array<{ startSec: number; endSec: number }>; +} + +export interface AudioSegment { + startSec: number; + endSec: number; +} + +// ============================================================================ +// Audio Processing (from audioProcessor.ts) +// ============================================================================ + +/** + * Get audio duration using FFprobe + */ +async function getAudioDuration(filePath: string): Promise { + const ffprobeBinaryPath = await getFFprobePath(extensionContext); + + return new Promise((resolve, reject) => { + const spawn = getSpawn(); + if (!spawn) { + return reject(new Error("child_process.spawn not available")); + } + + const ffprobe = spawn(ffprobeBinaryPath, [ + "-v", + "error", + "-show_entries", + "format=duration", + "-of", + "default=noprint_wrappers=1:nokey=1", + filePath, + ]); + + let output = ""; + ffprobe.stdout?.on("data", (data: Buffer) => { + output += data.toString(); + }); + + ffprobe.on("exit", (code: number | null) => { + if (code === 0) { + const duration = parseFloat(output.trim()); + resolve(isNaN(duration) ? 0 : duration); + } else { + reject(new Error("Failed to get audio duration")); + } + }); + + ffprobe.on("error", reject); + }); +} + +/** + * Generate waveform peaks for visualization over the entire file + * Streams FFmpeg output and computes peaks incrementally (low memory) + */ +async function generateWaveformPeaks( + filePath: string, + durationSec: number, + targetPoints: number = 2000, + sampleRate: number = 8000 +): Promise { + const ffmpegBinaryPath = await getFFmpegPath(extensionContext); + + return new Promise((resolve, reject) => { + const spawn = getSpawn(); + if (!spawn) { + return reject(new Error("child_process.spawn not available")); + } + + // Prepare output buckets + const peaks: number[] = new Array(Math.max(1, targetPoints)).fill(0); + const totalSamples = Math.max(1, Math.floor(durationSec * sampleRate)); + const samplesPerPeak = Math.max(1, Math.ceil(totalSamples / peaks.length)); + + let samplesProcessed = 0; + let leftover: Buffer | null = null; + + // Extract audio as 32-bit float, mono, downsampled sampleRate + const ffmpeg = spawn(ffmpegBinaryPath, [ + "-i", + filePath, + "-f", + "f32le", + "-ac", + "1", + "-ar", + String(sampleRate), + "pipe:1", + ]); + + ffmpeg.stdout?.on("data", (chunk: Buffer) => { + // Ensure chunk aligns on 4-byte boundaries for Float32Array + let buffer = leftover ? Buffer.concat([leftover, chunk]) : chunk; + const remainder = buffer.length % 4; + if (remainder !== 0) { + leftover = buffer.slice(buffer.length - remainder); + buffer = buffer.slice(0, buffer.length - remainder); + } else { + leftover = null; + } + + const samples = new Float32Array(buffer.buffer, buffer.byteOffset, buffer.length / 4); + for (let i = 0; i < samples.length; i++) { + const abs = Math.abs(samples[i]); + const bucketIndex = Math.min(peaks.length - 1, Math.floor(samplesProcessed / samplesPerPeak)); + if (abs > peaks[bucketIndex]) peaks[bucketIndex] = abs; + samplesProcessed++; + if (samplesProcessed >= totalSamples) break; + } + }); + + ffmpeg.on("exit", (code: number | null) => { + if (code !== 0) { + return reject(new Error("FFmpeg failed to decode audio")); + } + resolve(peaks); + }); + + ffmpeg.on("error", reject); + }); +} + +/** + * Detect silence regions in audio file using FFmpeg silencedetect filter + */ +export async function detectSilence( + filePath: string, + thresholdDb: number = -40, + minDuration: number = 0.5 +): Promise { + const ffmpegBinaryPath = await getFFmpegPath(extensionContext); + + return new Promise((resolve, reject) => { + const spawn = getSpawn(); + if (!spawn) { + return reject(new Error("child_process.spawn not available")); + } + + const ffmpeg = spawn(ffmpegBinaryPath, [ + "-i", + filePath, + "-af", + `silencedetect=n=${thresholdDb}dB:d=${minDuration}`, + "-f", + "null", + "-", + ]); + + let stderr = ""; + ffmpeg.stderr?.on("data", (data: Buffer) => { + stderr += data.toString(); + }); + + ffmpeg.on("exit", async (code: number | null) => { + // Log a sample of the actual output for debugging + const sampleLines = stderr + .split("\n") + .filter((line) => line.includes("silence_start") || line.includes("silence_end")) + .slice(0, 10); + if (sampleLines.length > 0) { + console.log(`[audioProcessing] Sample FFmpeg output lines:`, sampleLines); + } + + // Parse silence detection output - collect all starts and ends separately + const silenceStarts: number[] = []; + const silenceEnds: number[] = []; + + // More robust regex that handles FFmpeg's output format + const lines = stderr.split("\n"); + for (const line of lines) { + // Match silence_start: can appear anywhere in the line + const startMatch = line.match(/silence_start:\s*([\d.]+)/); + const endMatch = line.match(/silence_end:\s*([\d.]+)/); + + if (startMatch) { + const time = parseFloat(startMatch[1]); + if (!isNaN(time) && time >= 0) { + silenceStarts.push(time); + } + } + if (endMatch) { + const time = parseFloat(endMatch[1]); + if (!isNaN(time) && time >= 0) { + silenceEnds.push(time); + } + } + } + + // Sort and pair up silence regions + silenceStarts.sort((a, b) => a - b); + silenceEnds.sort((a, b) => a - b); + + const silenceRegions: Array<{ start: number; end: number }> = []; + + // Pair up starts and ends - take the earliest end for each start + let endIndex = 0; + for (const start of silenceStarts) { + // Find the next end that comes after this start + while (endIndex < silenceEnds.length && silenceEnds[endIndex] <= start) { + endIndex++; + } + if (endIndex < silenceEnds.length) { + const end = silenceEnds[endIndex]; + if (end > start) { + silenceRegions.push({ start, end }); + endIndex++; // Use this end for this start + } + } + } + + // Sort silence regions by start time + silenceRegions.sort((a, b) => a.start - b.start); + + // Remove overlapping regions (keep the first one if they overlap) + const cleanedRegions: Array<{ start: number; end: number }> = []; + for (const region of silenceRegions) { + if (cleanedRegions.length === 0) { + cleanedRegions.push(region); + } else { + const last = cleanedRegions[cleanedRegions.length - 1]; + if (region.start >= last.end) { + cleanedRegions.push(region); + } else if (region.end > last.end) { + // Extend the last region if it overlaps + last.end = region.end; + } + } + } + + console.log( + `[audioProcessing] Found ${silenceStarts.length} silence starts, ${silenceEnds.length} silence ends` + ); + if (silenceStarts.length > 0 || silenceEnds.length > 0) { + console.log( + `[audioProcessing] Silence starts: [${silenceStarts.slice(0, 10).join(", ")}${silenceStarts.length > 10 ? "..." : ""}]` + ); + console.log( + `[audioProcessing] Silence ends: [${silenceEnds.slice(0, 10).join(", ")}${silenceEnds.length > 10 ? "..." : ""}]` + ); + } + console.log(`[audioProcessing] Created ${cleanedRegions.length} silence regions`); + if (cleanedRegions.length > 0) { + console.log( + `[audioProcessing] Silence regions: [${cleanedRegions + .slice(0, 5) + .map((r) => `${r.start.toFixed(2)}-${r.end.toFixed(2)}`) + .join(", ")}${cleanedRegions.length > 5 ? "..." : ""}]` + ); + } + + // Breakpoints at midpoint of silence regions + try { + const duration = await getAudioDuration(filePath); + + const breakpoints: number[] = [0]; + for (const silence of cleanedRegions) { + breakpoints.push((silence.start + silence.end) / 2); + } + breakpoints.push(duration); + + breakpoints.sort((a, b) => a - b); + const uniqueBreakpoints = breakpoints.filter( + (bp, i) => i === 0 || bp - breakpoints[i - 1] >= 0.01 + ); + + const segments: AudioSegment[] = []; + for (let i = 0; i < uniqueBreakpoints.length - 1; i++) { + segments.push({ + startSec: uniqueBreakpoints[i], + endSec: uniqueBreakpoints[i + 1], + }); + } + + // If no segments found, use entire file + if (segments.length === 0) { + segments.push({ startSec: 0, endSec: duration }); + } + + // Split segments that exceed 30 seconds maximum length + const MAX_SEGMENT_LENGTH = 30; + const finalSegments: AudioSegment[] = []; + for (const seg of segments) { + const segDuration = seg.endSec - seg.startSec; + if (segDuration <= MAX_SEGMENT_LENGTH) { + finalSegments.push(seg); + } else { + // Split into multiple segments of max 30 seconds each + let currentStart = seg.startSec; + while (currentStart < seg.endSec) { + const currentEnd = Math.min(currentStart + MAX_SEGMENT_LENGTH, seg.endSec); + finalSegments.push({ + startSec: currentStart, + endSec: currentEnd, + }); + currentStart = currentEnd; + } + } + } + + console.log(`[audioProcessing] Final segments: ${finalSegments.length}`); + if (finalSegments.length > 0) { + console.log( + `[audioProcessing] First 5 segments: [${finalSegments + .slice(0, 5) + .map((s) => `${s.startSec.toFixed(2)}-${s.endSec.toFixed(2)}`) + .join(", ")}${finalSegments.length > 5 ? "..." : ""}]` + ); + } + + resolve(finalSegments); + } catch (error) { + reject(error); + } + }); + + ffmpeg.on("error", reject); + }); +} + +/** + * Process audio file: get metadata, generate preview waveform, detect segments + */ +export async function processAudioFile( + filePath: string, + previewDuration: number = 30, // Kept for backwards compatibility, but not used + thresholdDb: number = -40, + minDuration: number = 0.5 +): Promise { + console.log(`[audioProcessing] Processing file: ${filePath}`); + const fsModule = getFs(); + + if (!fsModule.existsSync(filePath)) { + const error = `Audio file not found: ${filePath}`; + console.error(`[audioProcessing] ${error}`); + throw new Error(error); + } + + console.log(`[audioProcessing] File exists, getting stats...`); + const stats = fsModule.statSync(filePath); + const fileName = path.basename(filePath, path.extname(filePath)); + const fileId = `audio-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`; + console.log(`[audioProcessing] File: ${fileName}, ID: ${fileId}, Size: ${stats.size} bytes`); + + console.log(`[audioProcessing] Starting parallel processing (duration, peaks, segments)...`); + + // Get duration first to calculate appropriate target points + const duration = await getAudioDuration(filePath).catch((err) => { + console.error(`[audioProcessing] Error getting duration:`, err); + throw err; + }); + + // Calculate target points: ~50 points per second, capped between 1000-8000 + const targetPoints = Math.max(1000, Math.min(8000, Math.floor(duration * 50))); + console.log(`[audioProcessing] Duration: ${duration}s, generating ${targetPoints} waveform points`); + + const [peaks, segments] = await Promise.all([ + generateWaveformPeaks(filePath, duration, targetPoints).catch((err) => { + console.error(`[audioProcessing] Error generating peaks:`, err); + return []; // Return empty array on error instead of throwing + }), + detectSilence(filePath, thresholdDb, minDuration).catch((err) => { + console.error(`[audioProcessing] Error detecting silence:`, err); + throw err; + }), + ]); + + console.log( + `[audioProcessing] Processing complete: duration=${duration}s, peaks=${peaks.length}, segments=${segments.length}` + ); + + return { + id: fileId, + name: fileName, + path: filePath, + durationSec: duration, + sizeBytes: stats.size, + previewPeaks: Array.isArray(peaks) ? peaks : [], + segments, + }; +} + +/** + * Extract audio segment and save as WAV file + */ +export async function extractSegment( + sourcePath: string, + outputPath: string, + startSec: number, + endSec: number +): Promise { + const ffmpegBinaryPath = await getFFmpegPath(extensionContext); + + return new Promise((resolve, reject) => { + const spawn = getSpawn(); + if (!spawn) { + return reject(new Error("child_process.spawn not available")); + } + + const duration = endSec - startSec; + const args = [ + "-i", + sourcePath, + "-ss", + startSec.toString(), + "-t", + duration.toString(), + "-acodec", + "pcm_s16le", + "-ar", + "44100", + "-ac", + "1", + "-y", + outputPath, + ]; + + const ffmpeg = spawn(ffmpegBinaryPath, args); + + let stderr = ""; + ffmpeg.stderr?.on("data", (data: Buffer) => { + stderr += data.toString(); + }); + + ffmpeg.on("exit", (code: number | null) => { + if (code === 0) { + resolve(); + } else { + reject(new Error(`FFmpeg segment extraction failed: ${stderr}`)); + } + }); + + ffmpeg.on("error", reject); + }); +} + +/** + * Extract multiple segments from an audio file + */ +export async function extractSegments( + sourcePath: string, + outputDir: string, + segments: AudioSegment[], + baseFileName: string +): Promise { + const outputPaths: string[] = []; + + for (let i = 0; i < segments.length; i++) { + const segment = segments[i]; + const outputFileName = `${baseFileName}-seg${i + 1}.wav`; + const outputPath = path.join(outputDir, outputFileName); + + await extractSegment(sourcePath, outputPath, segment.startSec, segment.endSec); + outputPaths.push(outputPath); + } + + return outputPaths; +} + +// ============================================================================ +// Audio Extraction from Video (from audioExtractor.ts) +// ============================================================================ + +/** + * Check if ffmpeg is available on the system (for extraction fallback) + */ +async function isFFmpegAvailable(): Promise { + return new Promise((resolve) => { + const spawn = getSpawn(); + if (!spawn) { + resolve(false); + return; + } + + const ffmpeg = spawn("ffmpeg", ["-version"]); + + const timeout = setTimeout(() => { + ffmpeg.kill(); + resolve(false); + }, 5000); + + ffmpeg.on("error", () => { + clearTimeout(timeout); + resolve(false); + }); + ffmpeg.on("exit", (code: number | null) => { + clearTimeout(timeout); + resolve(code === 0); + }); + }); +} + +/** + * Extract audio from video using ffmpeg + */ +async function extractAudioWithFFmpeg(videoData: Buffer, startTime: number, endTime: number): Promise { + return new Promise((resolve, reject) => { + const spawn = getSpawn(); + const fsModule = getFs(); + if (!spawn) { + return reject(new Error("child_process.spawn not available")); + } + const tempDir = path.join(__dirname, "..", "..", ".temp"); + if (!fsModule.existsSync(tempDir)) { + fsModule.mkdirSync(tempDir, { recursive: true }); + } + + const tempVideoPath = path.join(tempDir, `temp_video_${Date.now()}.mp4`); + const tempAudioPath = path.join(tempDir, `temp_audio_${Date.now()}.webm`); + + // Write video to temp file + fsModule.writeFileSync(tempVideoPath, videoData); + + // Build ffmpeg command + const args = [ + "-i", + tempVideoPath, + "-vn", // No video + "-acodec", + "libopus", // Use Opus codec for webm + "-b:a", + "128k", // Audio bitrate + ]; + + // Add time range if specified + if (startTime > 0) { + args.push("-ss", startTime.toString()); + } + if (isFinite(endTime) && endTime > startTime) { + args.push("-t", (endTime - startTime).toString()); + } + + args.push("-y", tempAudioPath); // Output file + + const ffmpeg = spawn("ffmpeg", args); + + let stderr = ""; + ffmpeg.stderr?.on("data", (data: Buffer) => { + stderr += data.toString(); + }); + + ffmpeg.on("error", (error: Error) => { + // Clean up temp files + try { + fsModule.unlinkSync(tempVideoPath); + } catch { + /* ignore cleanup errors */ + } + try { + fsModule.unlinkSync(tempAudioPath); + } catch { + /* ignore cleanup errors */ + } + reject(new Error(`FFmpeg error: ${error.message}`)); + }); + + ffmpeg.on("exit", (code: number | null) => { + if (code === 0) { + try { + const audioBuffer = fsModule.readFileSync(tempAudioPath); + // Clean up temp files + fsModule.unlinkSync(tempVideoPath); + fsModule.unlinkSync(tempAudioPath); + resolve(audioBuffer); + } catch (error) { + reject(new Error(`Failed to read audio file: ${error}`)); + } + } else { + // Clean up temp files + try { + fsModule.unlinkSync(tempVideoPath); + } catch { + /* ignore cleanup errors */ + } + try { + fsModule.unlinkSync(tempAudioPath); + } catch { + /* ignore cleanup errors */ + } + reject(new Error(`FFmpeg exited with code ${code}: ${stderr}`)); + } + }); + }); +} + +/** + * Fallback: Just copy the video data as-is (browser will handle playback) + */ +function fallbackCopyVideo(videoData: Buffer): Buffer { + console.warn("FFmpeg not available, using video file as-is for audio attachment"); + return videoData; +} + +/** + * Extract audio from video data + */ +export async function extractAudioFromVideo( + videoData: Buffer, + startTime: number = 0, + endTime: number = Number.POSITIVE_INFINITY +): Promise { + const hasFFmpeg = await isFFmpegAvailable(); + + if (hasFFmpeg) { + console.log("Using FFmpeg to extract audio from video"); + try { + return await extractAudioWithFFmpeg(videoData, startTime, endTime); + } catch (error) { + console.error("FFmpeg extraction failed, using fallback:", error); + return fallbackCopyVideo(videoData); + } + } else { + console.log("FFmpeg not available, using fallback method"); + return fallbackCopyVideo(videoData); + } +} + +/** + * Process audio/video attachments and extract audio if needed + */ +export async function processMediaAttachment( + attachment: { dataBase64: string; startTime?: number; endTime?: number }, + isFromVideo: boolean +): Promise { + const base64 = attachment.dataBase64.includes(",") + ? attachment.dataBase64.split(",")[1] + : attachment.dataBase64; + const buffer = Buffer.from(base64, "base64"); + + if (isFromVideo) { + // Extract audio from video + return await extractAudioFromVideo( + buffer, + attachment.startTime || 0, + attachment.endTime || Number.POSITIVE_INFINITY + ); + } else { + // Audio file, return as-is + return buffer; + } +} + +// ============================================================================ +// Audio Merging (from audioMerger.ts) +// ============================================================================ + +/** + * Merge two audio files using FFmpeg + * @param inputFile1 Path to the first audio file + * @param inputFile2 Path to the second audio file + * @param outputPath Path where the merged audio file should be saved + * @returns Promise that resolves to the output path if successful, or null if FFmpeg is unavailable or merge fails + */ +export async function mergeAudioFiles( + inputFile1: string, + inputFile2: string, + outputPath: string +): Promise { + const fsModule = getFs(); + const spawn = getSpawn(); + + if (!spawn) { + console.warn("[audioProcessing] child_process.spawn not available"); + return null; + } + + // Check if input files exist + if (!fsModule.existsSync(inputFile1)) { + console.warn(`[audioProcessing] Input file 1 does not exist: ${inputFile1}`); + return null; + } + + if (!fsModule.existsSync(inputFile2)) { + console.warn(`[audioProcessing] Input file 2 does not exist: ${inputFile2}`); + return null; + } + + try { + // Get FFmpeg path (may download if needed) + const ffmpegPath = await getFFmpegPath(extensionContext); + + // Ensure output directory exists + const outputDir = path.dirname(outputPath); + if (!fsModule.existsSync(outputDir)) { + fsModule.mkdirSync(outputDir, { recursive: true }); + } + + // Create a temporary file list for FFmpeg concat demuxer + const tempDir = path.join(__dirname, "..", "..", ".temp"); + if (!fsModule.existsSync(tempDir)) { + fsModule.mkdirSync(tempDir, { recursive: true }); + } + + const tempListFile = path.join(tempDir, `concat_list_${Date.now()}.txt`); + // Use absolute paths for FFmpeg concat demuxer to avoid path resolution issues + const absInputFile1 = path.isAbsolute(inputFile1) ? inputFile1 : path.resolve(inputFile1); + const absInputFile2 = path.isAbsolute(inputFile2) ? inputFile2 : path.resolve(inputFile2); + // Escape single quotes and backslashes for FFmpeg concat format + const escapedFile1 = absInputFile1.replace(/\\/g, "/").replace(/'/g, "\\'"); + const escapedFile2 = absInputFile2.replace(/\\/g, "/").replace(/'/g, "\\'"); + const listContent = `file '${escapedFile1}'\nfile '${escapedFile2}'`; + fsModule.writeFileSync(tempListFile, listContent); + + return new Promise((resolve) => { + // Use concat demuxer for better format compatibility + const args = [ + "-f", + "concat", + "-safe", + "0", + "-i", + tempListFile, + "-c", + "copy", // Copy codec (no re-encoding for speed) + "-y", // Overwrite output file + outputPath, + ]; + + const ffmpeg = spawn(ffmpegPath, args); + + let stderr = ""; + ffmpeg.stderr?.on("data", (data: Buffer) => { + stderr += data.toString(); + }); + + ffmpeg.on("error", (error: Error) => { + // Clean up temp file + try { + if (fsModule.existsSync(tempListFile)) { + fsModule.unlinkSync(tempListFile); + } + } catch { + // Ignore cleanup errors + } + console.error(`[audioProcessing] FFmpeg spawn error:`, error); + resolve(null); + }); + + ffmpeg.on("exit", (code: number | null) => { + // Clean up temp file + try { + if (fsModule.existsSync(tempListFile)) { + fsModule.unlinkSync(tempListFile); + } + } catch { + // Ignore cleanup errors + } + + if (code === 0) { + // Verify output file was created + if (fsModule.existsSync(outputPath)) { + console.log(`[audioProcessing] Successfully merged audio files to: ${outputPath}`); + resolve(outputPath); + } else { + console.warn( + `[audioProcessing] FFmpeg exited successfully but output file not found: ${outputPath}` + ); + resolve(null); + } + } else { + console.warn(`[audioProcessing] FFmpeg exited with code ${code}: ${stderr.slice(0, 500)}`); + resolve(null); + } + }); + }); + } catch (error) { + console.error(`[audioProcessing] Error merging audio files:`, error); + return null; + } +} diff --git a/src/utils/audioProcessor.ts b/src/utils/audioProcessor.ts deleted file mode 100644 index 819bacc3c..000000000 --- a/src/utils/audioProcessor.ts +++ /dev/null @@ -1,475 +0,0 @@ -/** - * Backend audio processing utilities using FFmpeg binaries - * Handles audio decoding, silence detection, segmentation, and waveform generation - * Downloads FFmpeg binaries on-demand to keep VSIX size small - */ - -import * as path from 'path'; -import * as fs from 'fs'; -import * as vscode from 'vscode'; -import { getFFmpegPath, getFFprobePath } from './ffmpegManager'; - -// Lazy load to avoid bundling issues -function getFs(): typeof fs { - try { - // Use eval to prevent webpack from analyzing - const req = eval('require') as any; - return req('fs'); - } catch { - return fs; - } -} - -function getSpawn(): ((command: string, args?: readonly string[]) => any) | null { - try { - const req = eval('require') as any; - const cp = req('child_process'); - return cp && cp.spawn ? cp.spawn : null; - } catch { - return null; - } -} - -// Global extension context for ffmpeg downloads -let extensionContext: vscode.ExtensionContext | undefined; - -/** - * Initialize audio processor with extension context - * Call this once during extension activation - */ -export function initializeAudioProcessor(context: vscode.ExtensionContext): void { - extensionContext = context; - console.log('[audioProcessor] Initialized with extension context'); -} - -export interface AudioFileMetadata { - id: string; - name: string; - path: string; - durationSec: number; - sizeBytes: number; - previewPeaks: number[]; - segments: Array<{ startSec: number; endSec: number; }>; -} - -export interface AudioSegment { - startSec: number; - endSec: number; -} - -/** - * Get audio duration using FFprobe - */ -async function getAudioDuration(filePath: string): Promise { - const ffprobeBinaryPath = await getFFprobePath(extensionContext); - - return new Promise((resolve, reject) => { - const spawn = getSpawn(); - if (!spawn) { - return reject(new Error('child_process.spawn not available')); - } - - const ffprobe = spawn(ffprobeBinaryPath, [ - '-v', 'error', - '-show_entries', 'format=duration', - '-of', 'default=noprint_wrappers=1:nokey=1', - filePath - ]); - - let output = ''; - ffprobe.stdout.on('data', (data: Buffer) => { - output += data.toString(); - }); - - ffprobe.on('exit', (code: number | null) => { - if (code === 0) { - const duration = parseFloat(output.trim()); - resolve(isNaN(duration) ? 0 : duration); - } else { - reject(new Error('Failed to get audio duration')); - } - }); - - ffprobe.on('error', reject); - }); -} - -/** - * Generate waveform peaks for visualization over the entire file - * Streams FFmpeg output and computes peaks incrementally (low memory) - */ -async function generateWaveformPeaks( - filePath: string, - durationSec: number, - targetPoints: number = 2000, - sampleRate: number = 8000 -): Promise { - const ffmpegBinaryPath = await getFFmpegPath(extensionContext); - - return new Promise((resolve, reject) => { - const spawn = getSpawn(); - if (!spawn) { - return reject(new Error('child_process.spawn not available')); - } - - const ffmpegPath = ffmpegBinaryPath; - - // Prepare output buckets - const peaks: number[] = new Array(Math.max(1, targetPoints)).fill(0); - const totalSamples = Math.max(1, Math.floor(durationSec * sampleRate)); - const samplesPerPeak = Math.max(1, Math.ceil(totalSamples / peaks.length)); - - let samplesProcessed = 0; - let leftover: Buffer | null = null; - - // Extract audio as 32-bit float, mono, downsampled sampleRate - const ffmpeg = spawn(ffmpegPath, [ - '-i', filePath, - '-f', 'f32le', - '-ac', '1', - '-ar', String(sampleRate), - 'pipe:1' - ]); - - ffmpeg.stdout.on('data', (chunk: Buffer) => { - // Ensure chunk aligns on 4-byte boundaries for Float32Array - let buffer = leftover ? Buffer.concat([leftover, chunk]) : chunk; - const remainder = buffer.length % 4; - if (remainder !== 0) { - leftover = buffer.slice(buffer.length - remainder); - buffer = buffer.slice(0, buffer.length - remainder); - } else { - leftover = null; - } - - const samples = new Float32Array(buffer.buffer, buffer.byteOffset, buffer.length / 4); - for (let i = 0; i < samples.length; i++) { - const abs = Math.abs(samples[i]); - const bucketIndex = Math.min(peaks.length - 1, Math.floor(samplesProcessed / samplesPerPeak)); - if (abs > peaks[bucketIndex]) peaks[bucketIndex] = abs; - samplesProcessed++; - if (samplesProcessed >= totalSamples) break; - } - }); - - ffmpeg.on('exit', (code: number | null) => { - if (code !== 0) { - return reject(new Error('FFmpeg failed to decode audio')); - } - resolve(peaks); - }); - - ffmpeg.on('error', reject); - }); -} - -/** - * Detect silence regions in audio file using FFmpeg silencedetect filter - */ -export async function detectSilence( - filePath: string, - thresholdDb: number = -40, - minDuration: number = 0.5 -): Promise { - const ffmpegBinaryPath = await getFFmpegPath(extensionContext); - - return new Promise((resolve, reject) => { - const spawn = getSpawn(); - if (!spawn) { - return reject(new Error('child_process.spawn not available')); - } - - const ffmpegPath = ffmpegBinaryPath; - const ffmpeg = spawn(ffmpegPath, [ - '-i', filePath, - '-af', `silencedetect=n=${thresholdDb}dB:d=${minDuration}`, - '-f', 'null', - '-' - ]); - - let stderr = ''; - ffmpeg.stderr.on('data', (data: Buffer) => { - stderr += data.toString(); - }); - - ffmpeg.on('exit', async (code: number | null) => { - // Log a sample of the actual output for debugging - const sampleLines = stderr.split('\n').filter(line => - line.includes('silence_start') || line.includes('silence_end') - ).slice(0, 10); - if (sampleLines.length > 0) { - console.log(`[audioProcessor] Sample FFmpeg output lines:`, sampleLines); - } - - // Parse silence detection output - collect all starts and ends separately - const silenceStarts: number[] = []; - const silenceEnds: number[] = []; - - // More robust regex that handles FFmpeg's output format - const lines = stderr.split('\n'); - for (const line of lines) { - // Match silence_start: can appear anywhere in the line - const startMatch = line.match(/silence_start:\s*([\d.]+)/); - const endMatch = line.match(/silence_end:\s*([\d.]+)/); - - if (startMatch) { - const time = parseFloat(startMatch[1]); - if (!isNaN(time) && time >= 0) { - silenceStarts.push(time); - } - } - if (endMatch) { - const time = parseFloat(endMatch[1]); - if (!isNaN(time) && time >= 0) { - silenceEnds.push(time); - } - } - } - - // Sort and pair up silence regions - silenceStarts.sort((a, b) => a - b); - silenceEnds.sort((a, b) => a - b); - - const silenceRegions: Array<{ start: number; end: number; }> = []; - - // Pair up starts and ends - take the earliest end for each start - let endIndex = 0; - for (const start of silenceStarts) { - // Find the next end that comes after this start - while (endIndex < silenceEnds.length && silenceEnds[endIndex] <= start) { - endIndex++; - } - if (endIndex < silenceEnds.length) { - const end = silenceEnds[endIndex]; - if (end > start) { - silenceRegions.push({ start, end }); - endIndex++; // Use this end for this start - } - } - } - - // Sort silence regions by start time - silenceRegions.sort((a, b) => a.start - b.start); - - // Remove overlapping regions (keep the first one if they overlap) - const cleanedRegions: Array<{ start: number; end: number; }> = []; - for (const region of silenceRegions) { - if (cleanedRegions.length === 0) { - cleanedRegions.push(region); - } else { - const last = cleanedRegions[cleanedRegions.length - 1]; - if (region.start >= last.end) { - cleanedRegions.push(region); - } else if (region.end > last.end) { - // Extend the last region if it overlaps - last.end = region.end; - } - } - } - - console.log(`[audioProcessor] Found ${silenceStarts.length} silence starts, ${silenceEnds.length} silence ends`); - if (silenceStarts.length > 0 || silenceEnds.length > 0) { - console.log(`[audioProcessor] Silence starts: [${silenceStarts.slice(0, 10).join(', ')}${silenceStarts.length > 10 ? '...' : ''}]`); - console.log(`[audioProcessor] Silence ends: [${silenceEnds.slice(0, 10).join(', ')}${silenceEnds.length > 10 ? '...' : ''}]`); - } - console.log(`[audioProcessor] Created ${cleanedRegions.length} silence regions`); - if (cleanedRegions.length > 0) { - console.log(`[audioProcessor] Silence regions: [${cleanedRegions.slice(0, 5).map(r => `${r.start.toFixed(2)}-${r.end.toFixed(2)}`).join(', ')}${cleanedRegions.length > 5 ? '...' : ''}]`); - } - - // Breakpoints at midpoint of silence regions - try { - const duration = await getAudioDuration(filePath); - - const breakpoints: number[] = [0]; - for (const silence of cleanedRegions) { - breakpoints.push((silence.start + silence.end) / 2); - } - breakpoints.push(duration); - - breakpoints.sort((a, b) => a - b); - const uniqueBreakpoints = breakpoints.filter((bp, i) => - i === 0 || bp - breakpoints[i - 1] >= 0.01 - ); - - const segments: AudioSegment[] = []; - for (let i = 0; i < uniqueBreakpoints.length - 1; i++) { - segments.push({ - startSec: uniqueBreakpoints[i], - endSec: uniqueBreakpoints[i + 1] - }); - } - - // If no segments found, use entire file - if (segments.length === 0) { - segments.push({ startSec: 0, endSec: duration }); - } - - // Split segments that exceed 30 seconds maximum length - const MAX_SEGMENT_LENGTH = 30; - const finalSegments: AudioSegment[] = []; - for (const seg of segments) { - const segDuration = seg.endSec - seg.startSec; - if (segDuration <= MAX_SEGMENT_LENGTH) { - finalSegments.push(seg); - } else { - // Split into multiple segments of max 30 seconds each - let currentStart = seg.startSec; - while (currentStart < seg.endSec) { - const currentEnd = Math.min(currentStart + MAX_SEGMENT_LENGTH, seg.endSec); - finalSegments.push({ - startSec: currentStart, - endSec: currentEnd - }); - currentStart = currentEnd; - } - } - } - - console.log(`[audioProcessor] Final segments: ${finalSegments.length}`); - if (finalSegments.length > 0) { - console.log(`[audioProcessor] First 5 segments: [${finalSegments.slice(0, 5).map(s => `${s.startSec.toFixed(2)}-${s.endSec.toFixed(2)}`).join(', ')}${finalSegments.length > 5 ? '...' : ''}]`); - } - - resolve(finalSegments); - } catch (error) { - reject(error); - } - }); - - ffmpeg.on('error', reject); - }); -} - -/** - * Process audio file: get metadata, generate preview waveform, detect segments - */ -export async function processAudioFile( - filePath: string, - previewDuration: number = 30, // Kept for backwards compatibility, but not used - thresholdDb: number = -40, - minDuration: number = 0.5 -): Promise { - console.log(`[audioProcessor] Processing file: ${filePath}`); - const fsModule = getFs(); - - if (!fsModule.existsSync(filePath)) { - const error = `Audio file not found: ${filePath}`; - console.error(`[audioProcessor] ${error}`); - throw new Error(error); - } - - console.log(`[audioProcessor] File exists, getting stats...`); - const stats = fsModule.statSync(filePath); - const fileName = path.basename(filePath, path.extname(filePath)); - const fileId = `audio-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`; - console.log(`[audioProcessor] File: ${fileName}, ID: ${fileId}, Size: ${stats.size} bytes`); - - console.log(`[audioProcessor] Starting parallel processing (duration, peaks, segments)...`); - - // Get duration first to calculate appropriate target points - const duration = await getAudioDuration(filePath).catch(err => { - console.error(`[audioProcessor] Error getting duration:`, err); - throw err; - }); - - // Calculate target points: ~50 points per second, capped between 1000-8000 - const targetPoints = Math.max(1000, Math.min(8000, Math.floor(duration * 50))); - console.log(`[audioProcessor] Duration: ${duration}s, generating ${targetPoints} waveform points`); - - const [peaks, segments] = await Promise.all([ - generateWaveformPeaks(filePath, duration, targetPoints).catch(err => { - console.error(`[audioProcessor] Error generating peaks:`, err); - return []; // Return empty array on error instead of throwing - }), - detectSilence(filePath, thresholdDb, minDuration).catch(err => { - console.error(`[audioProcessor] Error detecting silence:`, err); - throw err; - }) - ]); - - console.log(`[audioProcessor] Processing complete: duration=${duration}s, peaks=${peaks.length}, segments=${segments.length}`); - - return { - id: fileId, - name: fileName, - path: filePath, - durationSec: duration, - sizeBytes: stats.size, - previewPeaks: Array.isArray(peaks) ? peaks : [], - segments - }; -} - -/** - * Extract audio segment and save as WAV file - */ -export async function extractSegment( - sourcePath: string, - outputPath: string, - startSec: number, - endSec: number -): Promise { - const ffmpegBinaryPath = await getFFmpegPath(extensionContext); - - return new Promise((resolve, reject) => { - const spawn = getSpawn(); - if (!spawn) { - return reject(new Error('child_process.spawn not available')); - } - - const ffmpegPath = ffmpegBinaryPath; - const duration = endSec - startSec; - const args = [ - '-i', sourcePath, - '-ss', startSec.toString(), - '-t', duration.toString(), - '-acodec', 'pcm_s16le', - '-ar', '44100', - '-ac', '1', - '-y', - outputPath - ]; - - const ffmpeg = spawn(ffmpegPath, args); - - let stderr = ''; - ffmpeg.stderr.on('data', (data: Buffer) => { - stderr += data.toString(); - }); - - ffmpeg.on('exit', (code: number | null) => { - if (code === 0) { - resolve(); - } else { - reject(new Error(`FFmpeg segment extraction failed: ${stderr}`)); - } - }); - - ffmpeg.on('error', reject); - }); -} - -/** - * Extract multiple segments from an audio file - */ -export async function extractSegments( - sourcePath: string, - outputDir: string, - segments: AudioSegment[], - baseFileName: string -): Promise { - const outputPaths: string[] = []; - - for (let i = 0; i < segments.length; i++) { - const segment = segments[i]; - const outputFileName = `${baseFileName}-seg${i + 1}.wav`; - const outputPath = path.join(outputDir, outputFileName); - - await extractSegment(sourcePath, outputPath, segment.startSec, segment.endSec); - outputPaths.push(outputPath); - } - - return outputPaths; -} - diff --git a/src/utils/fileUtils.ts b/src/utils/fileUtils.ts index 4eeb7b003..3f43d16d1 100644 --- a/src/utils/fileUtils.ts +++ b/src/utils/fileUtils.ts @@ -109,7 +109,7 @@ export const getCommentsFromFile = async (fileName: string): Promise { diff --git a/src/utils/audioMigration.ts b/src/utils/migrations/audioMigration.ts similarity index 100% rename from src/utils/audioMigration.ts rename to src/utils/migrations/audioMigration.ts diff --git a/src/utils/commentsMigrationUtils.ts b/src/utils/migrations/commentsMigrationUtils.ts similarity index 99% rename from src/utils/commentsMigrationUtils.ts rename to src/utils/migrations/commentsMigrationUtils.ts index cd52c610e..ec86d49cf 100644 --- a/src/utils/commentsMigrationUtils.ts +++ b/src/utils/migrations/commentsMigrationUtils.ts @@ -1,6 +1,6 @@ import * as vscode from "vscode"; -import { NotebookCommentThread, NotebookComment } from "../../types"; -import { writeSerializedData } from "./fileUtils"; +import { NotebookCommentThread, NotebookComment } from "../../../types"; +import { writeSerializedData } from "../fileUtils"; const DEBUG_COMMENTS_MIGRATION = false; function debug(message: string, ...args: any[]): void { From 3cf93cf8bd9263ddfd33ce2200671f5e62123da3 Mon Sep 17 00:00:00 2001 From: dadukhankevin Date: Wed, 4 Feb 2026 12:31:53 -0600 Subject: [PATCH 05/13] removed more comments and unused imports --- src/cellLabelImporter/cellLabelImporter.ts | 21 -- src/exportHandler/exportHandler.ts | 216 +----------------- src/projectManager/syncManager.ts | 3 - .../DictionaryEditorProvider.ts | 48 ---- src/utils/notebookMetadataManager.ts | 18 -- 5 files changed, 1 insertion(+), 305 deletions(-) diff --git a/src/cellLabelImporter/cellLabelImporter.ts b/src/cellLabelImporter/cellLabelImporter.ts index c3dccfa28..fb9516dac 100644 --- a/src/cellLabelImporter/cellLabelImporter.ts +++ b/src/cellLabelImporter/cellLabelImporter.ts @@ -72,27 +72,6 @@ async function getHtmlForCellLabelImporterView( "CellLabelImporterView" ); - // Option 1: Look for a pre-built index.html (if Vite generates one with hashed assets) - // This is more robust to asset hash changes. - // For this to work, ensure CellLabelImporterView build output includes an index.html in its root. - // const indexPath = vscode.Uri.joinPath(distPath, 'index.html'); - // try { - // const indexContentBytes = await vscode.workspace.fs.readFile(indexPath); - // let indexContent = new TextDecoder().decode(indexContentBytes); - // // Replace asset paths with webview URIs - // indexContent = indexContent.replace(/(href|src)=\"/g, `$1="${webview.asWebviewUri(distPath)}/`); - // // Add nonce to script tags if needed by your CSP and how Vite injects scripts - // // This part can be tricky and depends on Vite's output structure. - // return indexContent; - // } catch (e) { - // console.warn("Could not read pre-built index.html for CellLabelImporterView, falling back to explicit asset paths.", e); - // } - - // Option 2: Explicitly link to known (potentially unhashed or predictably named) assets. - // This is simpler if Vite's output names are predictable and don't include hashes, or if you handle hashes manually. - // The `package.json` uses `vite build`, which often produces hashed assets. We might need to adjust build or use a manifest. - // For now, let's assume a common output `index.js` (or main.js/bundle.js) and potentially `index.css`. - // This might need adjustment based on actual Vite output for `CellLabelImporterView`. const scriptUri = webview.asWebviewUri(vscode.Uri.joinPath(distPath, "index.js")); // Adjust if filename is different // const styleUri = webview.asWebviewUri(vscode.Uri.joinPath(distPath, "index.css")); // Adjust if CSS is separate and named differently diff --git a/src/exportHandler/exportHandler.ts b/src/exportHandler/exportHandler.ts index 8efb12259..6013524bc 100644 --- a/src/exportHandler/exportHandler.ts +++ b/src/exportHandler/exportHandler.ts @@ -603,169 +603,6 @@ async function exportCodexContentAsPdfRoundtrip( ); } -/** - * RTF Round-trip export using Pandoc - * COMMENTED OUT - RTF importer disabled - */ -/* async function exportCodexContentAsRtfRoundtrip( - userSelectedPath: string, - filesToExport: string[], - _options?: ExportOptions -) { - const workspaceFolders = vscode.workspace.workspaceFolders; - if (!workspaceFolders) { - vscode.window.showErrorMessage("No workspace folder found."); - return; - } - - const exportFolder = vscode.Uri.file(userSelectedPath); - await vscode.workspace.fs.createDirectory(exportFolder); - - return vscode.window.withProgress( - { - location: vscode.ProgressLocation.Notification, - title: "Exporting RTF Round-trip (Pandoc)", - cancellable: false, - }, - async (progress) => { - const increment = filesToExport.length > 0 ? 100 / filesToExport.length : 100; - - // For each selected codex file, find its source notebook and export with Pandoc - for (const [index, filePath] of filesToExport.entries()) { - progress.report({ message: `Processing ${index + 1}/${filesToExport.length}`, increment }); - try { - const file = vscode.Uri.file(filePath); - const fileName = basename(file.fsPath); - const bookCode = fileName.split(".")[0] || ""; - - console.log(`[RTF Export] Processing ${fileName} using Pandoc exporter`); - - // Read codex notebook - const codexNotebook = await readCodexNotebookFromUri(file); - - // Check if this is an RTF file with Pandoc importer - const importerType = (codexNotebook.metadata as any)?.importerType; - const corpusMarker = (codexNotebook.metadata as any)?.corpusMarker; - - // Support both new (importerType) and old (corpusMarker) metadata - const isRtfPandoc = - importerType === 'rtf-pandoc' || - corpusMarker === 'rtf' || - corpusMarker === 'rtf-pandoc'; - - if (!isRtfPandoc) { - console.warn(`[RTF Export] Skipping ${fileName} - not an RTF file (importerType: ${importerType}, corpusMarker: ${corpusMarker})`); - vscode.window.showWarningMessage(`Skipping ${fileName} - not an RTF file`); - continue; - } - - // Get Pandoc JSON from metadata - const pandocJsonString = (codexNotebook.metadata as any)?.pandocJson; - if (!pandocJsonString) { - throw new Error('No Pandoc JSON found in notebook metadata'); - } - - const pandocJson = JSON.parse(pandocJsonString); - console.log('[RTF Export] Loaded Pandoc JSON from metadata'); - - // Find corresponding source notebook to get original filename - // Use sourceFsPath from metadata if available, otherwise construct path - const sourceFsPath = (codexNotebook.metadata as any)?.sourceFsPath; - const sourceFile = sourceFsPath - ? vscode.Uri.file(sourceFsPath) - : vscode.Uri.file(filePath.replace(/\.codex$/, '.source').replace(/files[/\\]target/, '.project/sourceTexts')); - - const sourceNotebook = await readCodexNotebookFromUri(sourceFile); - const originalFileName = (sourceNotebook.metadata as any)?.originalFileName || `${bookCode}.rtf`; - - // Build translation map from codex cells - const translations: { [paragraphIndex: number]: string; } = {}; - - for (const cell of codexNotebook.cells) { - const cellMetadata = cell.metadata as any; - const paragraphIndex = cellMetadata?.paragraphIndex; - - if (paragraphIndex !== undefined) { - // Get translated content, strip HTML tags - let content = cell.value.trim(); - - if (content) { - // Simple HTML tag removal - content = content - .replace(/<[^>]+>/g, '') - .replace(/ /g, ' ') - .replace(/&/g, '&') - .replace(/</g, '<') - .replace(/>/g, '>') - .replace(/"/g, '"') - .trim(); - - translations[paragraphIndex] = content; - } - } - } - - console.log(`[RTF Export] Built translation map with ${Object.keys(translations).length} translations`); - // Log first few translations for debugging - Object.entries(translations).slice(0, 5).forEach(([idx, text]) => { - console.log(`[RTF Export] Translation[${idx}]: "${text.substring(0, 50)}"`); - }); - - // Use Node.js bridge to rebuild RTF with translations (no Python needed!) - console.log('[RTF Export] Calling Node.js Pandoc bridge...'); - - // Create temp output path - const extensionPath = vscode.extensions.getExtension('project-accelerate.codex-editor-extension')?.extensionPath || ''; - const tmpDir = path.join(extensionPath, '.tmp'); - if (!fs.existsSync(tmpDir)) { - fs.mkdirSync(tmpDir, { recursive: true }); - } - const outputRtfPath = path.join(tmpDir, `rtf_export_${Date.now()}.rtf`); - - try { - const result = await exportRtfWithPandoc(pandocJson, translations, outputRtfPath); - - if (!result.success) { - throw new Error(result.error || 'Pandoc export failed'); - } - - console.log('[RTF Export] Pandoc export successful'); - - // Read exported RTF file - const exportedRtfData = fs.readFileSync(outputRtfPath); - - // Save to export folder with timestamp - const timestamp = new Date().toISOString().replace(/[:.]/g, "-"); - const exportedName = originalFileName.replace(/\.rtf$/i, `_${timestamp}_translated.rtf`); - const exportedUri = vscode.Uri.joinPath(exportFolder, exportedName); - - await vscode.workspace.fs.writeFile(exportedUri, new Uint8Array(exportedRtfData)); - - console.log(`[RTF Export] ✓ Exported ${exportedName}`); - - } finally { - // Clean up temp file - if (fs.existsSync(outputRtfPath)) { - fs.unlinkSync(outputRtfPath); - } - // Clean up temp JSON file (created by exportRtfWithPandoc) - const tmpJsonPath = outputRtfPath + '.json'; - if (fs.existsSync(tmpJsonPath)) { - fs.unlinkSync(tmpJsonPath); - } - } - - } catch (error) { - console.error(`[RTF Export] Error exporting ${filePath}:`, error); - vscode.window.showErrorMessage(`Failed to export ${basename(filePath)}: ${error instanceof Error ? error.message : 'Unknown error'}`); - } - } - - vscode.window.showInformationMessage(`RTF round-trip export completed to ${userSelectedPath}`); - } - ); -} */ - /** * OBS (Open Bible Stories) Round-trip export */ @@ -1253,22 +1090,7 @@ async function exportCodexContentAsRebuild( // Includes Biblica importer which uses the same IDML format filesByType['idml'] = filesByType['idml'] || []; filesByType['idml'].push(filePath); - // } else if ( - // corpusMarker === 'pdf' || - // corpusMarker === 'pdf-importer' || // Backward compatibility - // corpusMarker === 'pdf-sentence' // Backward compatibility - // ) { - // // PDF files use the PDF exporter - // filesByType['pdf'] = filesByType['pdf'] || []; - // filesByType['pdf'].push(filePath); - // } else if ( - // corpusMarker === 'rtf' || - // corpusMarker === 'rtf-pandoc' || // Backward compatibility - // importerType === 'rtf-pandoc' - // ) { - // // RTF files use the Pandoc RTF exporter - // filesByType['rtf'] = filesByType['rtf'] || []; - // filesByType['rtf'].push(filePath); + } else if (corpusMarker === 'obs' || importerType === 'obs') { // OBS (Open Bible Stories) markdown files use the OBS exporter // Fallback: also detect by importerType for older files @@ -1350,42 +1172,6 @@ async function exportCodexContentAsRebuild( vscode.window.showErrorMessage(`IDML export failed: ${error instanceof Error ? error.message : 'Unknown error'}`); } } - - // Export PDF files - // COMMENTED OUT - PDF exporter disabled (not working properly) - /* if (filesByType['pdf']?.length > 0) { - console.log(`[Rebuild Export] Exporting ${filesByType['pdf'].length} PDF file(s) to DOCX...`); - progress.report({ - message: `Exporting ${filesByType['pdf'].length} PDF file(s) to DOCX...`, - increment: 20 - }); - try { - const { exportPdfAsDocx } = await import("./pdfDocxExporter"); - await exportPdfAsDocx(userSelectedPath, filesByType['pdf']); - processedCount += filesByType['pdf'].length; - } catch (error) { - console.error('[Rebuild Export] PDF export failed:', error); - vscode.window.showErrorMessage(`PDF export failed: ${error instanceof Error ? error.message : 'Unknown error'}`); - } - } */ - - // Export RTF files using Pandoc - // COMMENTED OUT - RTF importer disabled - /* if (filesByType['rtf']?.length > 0) { - console.log(`[Rebuild Export] Exporting ${filesByType['rtf'].length} RTF file(s) with Pandoc...`); - progress.report({ - message: `Exporting ${filesByType['rtf'].length} RTF file(s)...`, - increment: 20 - }); - try { - await exportCodexContentAsRtfRoundtrip(userSelectedPath, filesByType['rtf'], options); - processedCount += filesByType['rtf'].length; - } catch (error) { - console.error('[Rebuild Export] RTF export failed:', error); - vscode.window.showErrorMessage(`RTF export failed: ${error instanceof Error ? error.message : 'Unknown error'}`); - } - } */ - // Export OBS files if (filesByType['obs']?.length > 0) { console.log(`[Rebuild Export] Exporting ${filesByType['obs'].length} OBS markdown file(s)...`); diff --git a/src/projectManager/syncManager.ts b/src/projectManager/syncManager.ts index 2017373a4..6ab16d020 100644 --- a/src/projectManager/syncManager.ts +++ b/src/projectManager/syncManager.ts @@ -2,12 +2,9 @@ import * as vscode from "vscode"; import { stageAndCommitAllAndSync, SyncResult } from "./utils/merge"; import { getAuthApi } from "../extension"; import { createIndexWithContext } from "../activationHelpers/contextAware/contentIndexes/indexes"; -import { getNotebookMetadataManager } from "../utils/notebookMetadataManager"; -import * as path from "path"; import { updateSplashScreenSync } from "../providers/SplashScreen/register"; import git from "isomorphic-git"; import fs from "fs"; -import http from "isomorphic-git/http/web"; import { getFrontierVersionStatus, checkVSCodeVersion } from "./utils/versionChecks"; import { BookCompletionData } from "../progressReporting/progressReportingService"; import { ProgressReportingService, registerProgressReportingCommands } from "../progressReporting/progressReportingService"; diff --git a/src/providers/dictionaryTable/DictionaryEditorProvider.ts b/src/providers/dictionaryTable/DictionaryEditorProvider.ts index 980dd8f5d..890e5082d 100644 --- a/src/providers/dictionaryTable/DictionaryEditorProvider.ts +++ b/src/providers/dictionaryTable/DictionaryEditorProvider.ts @@ -251,35 +251,6 @@ export class DictionaryEditorProvider implements vscode.CustomTextEditorProvider } as DictionaryReceiveMessages); } - // private async repairDictionaryIfNeeded(dictionaryUri: vscode.Uri) { - // try { - // const dictionary = await readDictionaryClient(dictionaryUri); - // const newContent = serializeDictionaryEntries( - // dictionary.entries.map(ensureCompleteEntry) - // ); - // await saveDictionaryClient(dictionaryUri, { - // ...dictionary, - // entries: deserializeDictionaryEntries(newContent), - // }); - // console.log("Dictionary repaired and saved."); - // } catch (error) { - // console.error("Error repairing dictionary:", error); - // } - // } - - private isValidDictionaryEntry(entry: any): entry is DictionaryEntry { - return typeof entry === "object" && entry !== null && "headWord" in entry; - } - - private ensureCompleteEntry(entry: Partial): DictionaryEntry { - return { - id: entry.id || "", - headWord: entry.headWord || "", - definition: entry.definition || "", - isUserEntry: entry.isUserEntry || false, - authorId: entry.authorId || "", - }; - } private async refreshEditor(webviewPanel: vscode.WebviewPanel) { if (this.document) { @@ -298,15 +269,6 @@ export class DictionaryEditorProvider implements vscode.CustomTextEditorProvider data: updatedContent, } as DictionaryReceiveMessages); - // this.onDidChangeCustomDocument.fire({ - // document: this.document, - // undo: () => { - // // Implement undo logic if needed - // }, - // redo: () => { - // // Implement redo logic if needed - // }, - // }); } } catch (error) { vscode.window.showErrorMessage(`Failed to refresh dictionary: ${error}`); @@ -386,16 +348,6 @@ export class DictionaryEditorProvider implements vscode.CustomTextEditorProvider } const { entries, total } = getPagedWords({ db, page, pageSize, searchQuery }); - // const entries: DictionaryEntry[] = words.map((word) => { - // const definitions = getDefinitions(db, word); - // return { - // id: word, - // headWord: word, - // definition: definitions.join("\n"), - // isUserEntry: false, - // authorId: "", - // }; - // }); return { entries, diff --git a/src/utils/notebookMetadataManager.ts b/src/utils/notebookMetadataManager.ts index d3c6c2477..95c5885d9 100644 --- a/src/utils/notebookMetadataManager.ts +++ b/src/utils/notebookMetadataManager.ts @@ -1,16 +1,8 @@ -// import { API, GitExtension } from "./../providers/scm/git.d"; import * as vscode from "vscode"; import * as path from "path"; import { CodexContentSerializer } from "../serializer"; import { generateUniqueId, clearIdCache } from "./idUtils"; import { NavigationCell, getCorrespondingSourceUri, getCorrespondingCodexUri } from "./codexNotebookUtils"; -// import { API as GitAPI, Repository, Status } from "../providers/scm/git.d"; -import { - deserializeDictionaryEntries, - serializeDictionaryEntries, - repairDictionaryContent, -} from "./dictionaryUtils/common"; -import { readDictionaryClient, saveDictionaryClient } from "./dictionaryUtils/client"; import { CustomNotebookCellData, CustomNotebookMetadata } from "../../types"; import { getWorkSpaceUri } from "./index"; import { getCorpusMarkerForBook } from "../../sharedUtils/corpusUtils"; @@ -24,16 +16,6 @@ function debugLog(...args: any[]): void { } } -// async function getGitAPI(): Promise { -// const gitExtension = vscode.extensions.getExtension("vscode.git"); -// if (gitExtension && gitExtension.isActive) { -// return gitExtension.exports.getAPI(1); -// } else { -// await gitExtension?.activate(); -// return gitExtension?.exports.getAPI(1); -// } -// } - interface MetadataValidationResult { isValid: boolean; errors: string[]; From 037dd00a8400f3cac73261d1183f8ef442943671 Mon Sep 17 00:00:00 2001 From: dadukhankevin Date: Wed, 4 Feb 2026 12:34:32 -0600 Subject: [PATCH 06/13] updated tests --- src/test/suite/audio/audioImport.test.ts | 6 +++--- src/test/suite/audio/audioProcessor.test.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/test/suite/audio/audioImport.test.ts b/src/test/suite/audio/audioImport.test.ts index 7dc437675..c70823376 100644 --- a/src/test/suite/audio/audioImport.test.ts +++ b/src/test/suite/audio/audioImport.test.ts @@ -9,7 +9,7 @@ import { handleReprocessAudioFile, handleRequestAudioSegment, } from "../../../providers/NewSourceUploader/importers/audioSplitter"; -// Note: audioProcessor functions are tested in audioProcessor.test.ts +// Note: audioProcessing functions are tested in audioProcessor.test.ts import { createMockExtensionContext, swallowDuplicateCommandRegistrations, @@ -104,7 +104,7 @@ suite("Audio Import Test Suite", () => { // This test verifies the audioProcessor can access FFmpeg binaries // With on-demand download, FFmpeg is downloaded automatically or uses system FFmpeg // eslint-disable-next-line @typescript-eslint/no-var-requires - const audioProcessor = require("../../../utils/audioProcessor"); + const audioProcessor = require("../../../utils/audioProcessing"); assert.ok(audioProcessor, "audioProcessor module should be importable"); assert.ok(typeof audioProcessor.processAudioFile === "function", "Should export processAudioFile"); }); @@ -112,7 +112,7 @@ suite("Audio Import Test Suite", () => { test("should retrieve FFprobe path (on-demand download or system)", () => { // With on-demand download, FFprobe is downloaded automatically or uses system FFprobe // eslint-disable-next-line @typescript-eslint/no-var-requires - const audioProcessor = require("../../../utils/audioProcessor"); + const audioProcessor = require("../../../utils/audioProcessing"); assert.ok(audioProcessor, "audioProcessor module should be importable"); assert.ok(typeof audioProcessor.detectSilence === "function", "Should export detectSilence"); }); diff --git a/src/test/suite/audio/audioProcessor.test.ts b/src/test/suite/audio/audioProcessor.test.ts index 21006bf57..771d5f138 100644 --- a/src/test/suite/audio/audioProcessor.test.ts +++ b/src/test/suite/audio/audioProcessor.test.ts @@ -51,7 +51,7 @@ suite("Audio Processor Test Suite", () => { // With the new on-demand download, FFmpeg will be downloaded automatically if not available try { // eslint-disable-next-line @typescript-eslint/no-var-requires - const audioProcessor = require("../../../utils/audioProcessor"); + const audioProcessor = require("../../../utils/audioProcessing"); // Verify the module exports the expected functions assert.ok(audioProcessor, "audioProcessor module should be importable"); From 73c484c6cf9dbe3c28063511b28e8a339da93881 Mon Sep 17 00:00:00 2001 From: dadukhankevin Date: Wed, 4 Feb 2026 12:52:23 -0600 Subject: [PATCH 07/13] large deletions --- webviews/codex-webviews/package.json | 4 +- .../src/EditableReactTable/AddWordForm.tsx | 79 --- .../src/EditableReactTable/App.tsx | 375 ------------- .../src/EditableReactTable/Badge.tsx | 23 - .../ConfirmDeleteButton.tsx | 51 -- .../src/EditableReactTable/EditWordForm.tsx | 98 ---- .../src/EditableReactTable/Table.tsx | 139 ----- .../src/EditableReactTable/cells/Cell.tsx | 60 -- .../EditableReactTable/cells/CheckboxCell.tsx | 34 -- .../EditableReactTable/cells/NumberCell.tsx | 51 -- .../EditableReactTable/cells/SelectCell.tsx | 171 ------ .../src/EditableReactTable/cells/TextCell.tsx | 47 -- .../src/EditableReactTable/colors.ts | 18 - .../header/AddColumnHeader.tsx | 30 - .../header/DataTypeIcon.tsx | 26 - .../src/EditableReactTable/header/Header.tsx | 99 ---- .../EditableReactTable/header/HeaderMenu.tsx | 115 ---- .../EditableReactTable/header/TypesMenu.tsx | 98 ---- .../src/EditableReactTable/img/ArrowDown.tsx | 7 - .../src/EditableReactTable/img/ArrowLeft.tsx | 7 - .../src/EditableReactTable/img/ArrowRight.tsx | 7 - .../src/EditableReactTable/img/ArrowUp.tsx | 7 - .../src/EditableReactTable/img/Hash.tsx | 7 - .../src/EditableReactTable/img/Multi.tsx | 7 - .../src/EditableReactTable/img/Plus.tsx | 7 - .../src/EditableReactTable/img/Text.tsx | 7 - .../src/EditableReactTable/img/Trash.tsx | 7 - .../src/EditableReactTable/index.tsx | 12 - .../src/EditableReactTable/scrollbarWidth.ts | 13 - .../src/EditableReactTable/style.css | 514 ------------------ .../src/EditableReactTable/tableTypes.d.ts | 115 ---- .../EditableReactTable/utilities/vscode.ts | 78 --- .../src/EditableReactTable/utils.ts | 98 ---- 33 files changed, 1 insertion(+), 2410 deletions(-) delete mode 100644 webviews/codex-webviews/src/EditableReactTable/AddWordForm.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/App.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/Badge.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/ConfirmDeleteButton.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/EditWordForm.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/Table.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/cells/Cell.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/cells/CheckboxCell.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/cells/NumberCell.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/cells/SelectCell.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/cells/TextCell.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/colors.ts delete mode 100644 webviews/codex-webviews/src/EditableReactTable/header/AddColumnHeader.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/header/DataTypeIcon.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/header/Header.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/header/HeaderMenu.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/header/TypesMenu.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/img/ArrowDown.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/img/ArrowLeft.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/img/ArrowRight.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/img/ArrowUp.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/img/Hash.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/img/Multi.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/img/Plus.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/img/Text.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/img/Trash.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/index.tsx delete mode 100644 webviews/codex-webviews/src/EditableReactTable/scrollbarWidth.ts delete mode 100644 webviews/codex-webviews/src/EditableReactTable/style.css delete mode 100644 webviews/codex-webviews/src/EditableReactTable/tableTypes.d.ts delete mode 100644 webviews/codex-webviews/src/EditableReactTable/utilities/vscode.ts delete mode 100644 webviews/codex-webviews/src/EditableReactTable/utils.ts diff --git a/webviews/codex-webviews/package.json b/webviews/codex-webviews/package.json index b5dfddb8e..2b71ef3ea 100644 --- a/webviews/codex-webviews/package.json +++ b/webviews/codex-webviews/package.json @@ -14,7 +14,6 @@ "build:CodexCellEditor": "cross-env APP_NAME=CodexCellEditor vite build", "build:CommentsView": "cross-env APP_NAME=CommentsView vite build", "build:NavigationView": "cross-env APP_NAME=NavigationView vite build", - "build:EditableReactTable": "cross-env APP_NAME=EditableReactTable vite build", "build:MainMenu": "cross-env APP_NAME=MainMenu vite build", "build:SplashScreen": "cross-env APP_NAME=SplashScreen vite build", "build:CellLabelImporterView": "cross-env APP_NAME=CellLabelImporterView vite build", @@ -22,7 +21,7 @@ "build:NewSourceUploader": "cross-env APP_NAME=NewSourceUploader vite build", "build:CopilotSettings": "cross-env APP_NAME=CopilotSettings vite build", "build:AutomatedTesting": "cross-env APP_NAME=AutomatedTesting vite build", - "build:all": "pnpm run build:StartupFlow && pnpm run build:ParallelView && pnpm run build:PublishProject && pnpm run build:CodexCellEditor && pnpm run build:CommentsView && pnpm run build:NavigationView && pnpm run build:EditableReactTable && pnpm run build:MainMenu && pnpm run build:SplashScreen && pnpm run build:CellLabelImporterView && pnpm run build:CodexMigrationToolView && pnpm run build:NewSourceUploader && pnpm run build:CopilotSettings && pnpm run build:AutomatedTesting", + "build:all": "pnpm run build:StartupFlow && pnpm run build:ParallelView && pnpm run build:PublishProject && pnpm run build:CodexCellEditor && pnpm run build:CommentsView && pnpm run build:NavigationView && pnpm run build:MainMenu && pnpm run build:SplashScreen && pnpm run build:CellLabelImporterView && pnpm run build:CodexMigrationToolView && pnpm run build:NewSourceUploader && pnpm run build:CopilotSettings && pnpm run build:AutomatedTesting", "type-check": "tsc --noEmit", "watch:all": "nodemon --watch src --ext ts,tsx,css --exec pnpm run build:all", "watch:CodexCellEditor": "nodemon --watch src --ext ts,tsx,css --exec pnpm run build:CodexCellEditor", @@ -30,7 +29,6 @@ "watch:CommentsView": "nodemon --watch src --ext ts,tsx,css --exec pnpm run build:CommentsView", "watch:ParallelView": "nodemon --watch src --ext ts,tsx,css --exec pnpm run build:ParallelView", "watch:StartupFlow": "nodemon --watch src --ext ts,tsx,css --exec pnpm run build:StartupFlow", - "watch:EditableReactTable": "nodemon --watch src --ext ts,tsx,css --exec pnpm run build:EditableReactTable", "watch:NavigationView": "nodemon --watch src --ext ts,tsx,css --exec pnpm run build:NavigationView", "watch:MainMenu": "nodemon --watch src --ext ts,tsx,css --exec pnpm run build:MainMenu", "watch:SplashScreen": "nodemon --watch src --ext ts,tsx,css --exec pnpm run build:SplashScreen", diff --git a/webviews/codex-webviews/src/EditableReactTable/AddWordForm.tsx b/webviews/codex-webviews/src/EditableReactTable/AddWordForm.tsx deleted file mode 100644 index eae99732c..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/AddWordForm.tsx +++ /dev/null @@ -1,79 +0,0 @@ -import React, { useState } from "react"; -import { Modal, Form, Input, Button } from "antd"; -import { DictionaryPostMessages } from "../../../../types"; -import { vscode } from "./utilities/vscode"; - -interface AddWordProps { - visible: boolean; - onCancel: () => void; -} - -const AddWordForm: React.FC = ({ visible, onCancel }) => { - const [form] = Form.useForm(); - - const handleSubmit = () => { - form.validateFields().then((values) => { - // Send message to add new word - vscode.postMessage({ - command: "webviewTellsProviderToUpdateData", - operation: "add", - entry: { - headWord: values.headWord, - definition: values.definition || "", - }, - } as DictionaryPostMessages); - - form.resetFields(); - onCancel(); - }); - }; - - return ( - - Add New Word - - } - open={visible} - onCancel={onCancel} - footer={[ -
- - -
, - ]} - > -
- - - - - - - -
-
- ); -}; - -export default AddWordForm; diff --git a/webviews/codex-webviews/src/EditableReactTable/App.tsx b/webviews/codex-webviews/src/EditableReactTable/App.tsx deleted file mode 100644 index 9f7633dc0..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/App.tsx +++ /dev/null @@ -1,375 +0,0 @@ -import React, { useEffect, useState, useCallback, useRef } from "react"; -import { Table, Input, Button, Popconfirm, Tooltip, ConfigProvider, theme } from "antd"; -import type { ColumnsType } from "antd/es/table"; -import { vscode } from "./utilities/vscode"; -import { - DictionaryPostMessages, - DictionaryReceiveMessages, - Dictionary, - DictionaryEntry, -} from "../../../../types"; -import { useMeasure } from "@uidotdev/usehooks"; -import AddWordForm from "./AddWordForm"; -import EditWordForm from "./EditWordForm"; -import { ConfirmDeleteButton } from "./ConfirmDeleteButton"; - -interface DataType { - key: React.Key; - [key: string]: any; -} - -const App: React.FC = () => { - const [outerContainer, { height: outerContainerHeight }] = useMeasure(); - const [tableRef, { height: tableHeight }] = useMeasure(); - const [inputRef, { height: inputHeight }] = useMeasure(); - const [buttonRef, { height: buttonHeight }] = useMeasure(); - const [addWordVisible, setAddWordVisible] = useState(false); - const [entryToEdit, setEntryToEdit] = useState(null); - - const [dataSource, setDataSource] = useState([]); - const [columnNames, setColumnNames] = useState([]); - const [dictionary, setDictionary] = useState({ - id: "", - label: "", - entries: [], - metadata: {}, - }); - const [searchQuery, setSearchQuery] = useState(""); - const [vsCodeTheme, setVsCodeTheme] = useState({}); - const [pagination, setPagination] = useState({ - current: 1, - pageSize: 10, - total: 0, - }); - - const dataSourceRef = useRef(dataSource); - const dictionaryRef = useRef(dictionary); - const lastSentDataRef = useRef(null); - - useEffect(() => { - dataSourceRef.current = dataSource; - }, [dataSource]); - - useEffect(() => { - dictionaryRef.current = dictionary; - }, [dictionary]); - - useEffect(() => { - // Get the VS Code theme variables - const style = getComputedStyle(document.documentElement); - const themeColors = { - colorPrimary: style.getPropertyValue("--vscode-button-background").trim(), - colorPrimaryHover: style.getPropertyValue("--vscode-button-hoverBackground").trim(), - colorPrimaryActive: style.getPropertyValue("--vscode-button-background").trim(), - colorBgContainer: style.getPropertyValue("--vscode-editor-background").trim(), - colorBgElevated: style.getPropertyValue("--vscode-editor-background").trim(), - colorText: style.getPropertyValue("--vscode-editor-foreground").trim(), - colorTextSecondary: style.getPropertyValue("--vscode-descriptionForeground").trim(), - colorTextTertiary: style.getPropertyValue("--vscode-disabledForeground").trim(), - colorTextQuaternary: style.getPropertyValue("--vscode-disabledForeground").trim(), - colorBorder: style.getPropertyValue("--vscode-input-border").trim(), - colorBorderSecondary: style.getPropertyValue("--vscode-input-border").trim(), - colorFill: style.getPropertyValue("--vscode-input-background").trim(), - colorFillSecondary: style.getPropertyValue("--vscode-input-background").trim(), - colorFillTertiary: style.getPropertyValue("--vscode-input-background").trim(), - colorFillQuaternary: style.getPropertyValue("--vscode-input-background").trim(), - colorBgLayout: style.getPropertyValue("--vscode-editor-background").trim(), - colorWarning: style.getPropertyValue("--vscode-inputValidation-warningBorder").trim(), - colorError: style.getPropertyValue("--vscode-inputValidation-errorBorder").trim(), - colorInfo: style.getPropertyValue("--vscode-inputValidation-infoBorder").trim(), - colorSuccess: style.getPropertyValue("--vscode-inputValidation-infoBorder").trim(), - colorLink: style.getPropertyValue("--vscode-textLink-foreground").trim(), - colorLinkHover: style.getPropertyValue("--vscode-textLink-activeForeground").trim(), - colorLinkActive: style.getPropertyValue("--vscode-textLink-activeForeground").trim(), - // Table styles - colorTableBackground: style.getPropertyValue("--vscode-editor-background").trim(), - colorTableHeaderBackground: style.getPropertyValue("--vscode-editor-background").trim(), - colorTableHeaderText: style.getPropertyValue("--vscode-editor-foreground").trim(), - colorTableCellBackground: style.getPropertyValue("--vscode-editor-background").trim(), - colorTableCellText: style.getPropertyValue("--vscode-editor-foreground").trim(), - colorTableFixedCellBackground: style - .getPropertyValue("--vscode-editor-background") - .trim(), - }; - setVsCodeTheme(themeColors); - }, []); - - const handleDelete = useCallback((key: React.Key) => { - setDataSource((prevDataSource) => { - const itemToDelete = prevDataSource.find((item) => item.key === key); - if (itemToDelete) { - vscode.postMessage({ - command: "webviewTellsProviderToUpdateData", - operation: "delete", - entry: { - id: itemToDelete.id, - }, - } as DictionaryPostMessages); - } - return prevDataSource.filter((item) => item.key !== key); - }); - }, []); - - // const handleAdd = useCallback(() => { - // setDataSource((prevDataSource) => { - // const newKey = prevDataSource.length - // ? Math.max(...prevDataSource.map((item) => Number(item.key))) + 1 - // : 0; - // const newEntry: DataType = { - // key: newKey, - // headWord: "", - // definition: "", - // }; - - // vscode.postMessage({ - // command: "webviewTellsProviderToUpdateData", - // operation: "add", - // entry: { - // headWord: newEntry.headWord, - // definition: newEntry.definition, - // }, - // } as DictionaryPostMessages); - - // return [...prevDataSource, newEntry]; - // }); - // }, []); - - const getColumnIcon = useCallback((columnName: string): JSX.Element => { - const iconMap: { [key: string]: string } = { - headWord: "symbol-keyword", - headForm: "symbol-text", - variantForms: "symbol-array", - definition: "book", - translationEquivalents: "symbol-string", - links: "link", - linkedEntries: "references", - notes: "note", - metadata: "json", - hash: "symbol-key", - }; - const iconName = iconMap[columnName] || "symbol-field"; - return ; - }, []); - - const columns: ColumnsType = React.useMemo(() => { - if (columnNames.length === 0) { - return []; - } - - const dataColumns = columnNames - .filter((key) => key !== "id") - .filter((key) => key !== "isUserEntry") - .filter((key) => key !== "authorId") - .map((key) => ({ - title: ( - - - {getColumnIcon(key)} {key} - - - ), - dataIndex: key, - key: key, - render: (text: string) => {text}, - fixed: key === columnNames[0] ? ("left" as const) : undefined, - })); - - const actionColumn = { - title: ( - - - - ), - key: "action", - fixed: "right" as const, - width: 100, - render: (_: any, record: DataType) => ( -
- handleDelete(record.key)} /> -
- ), - }; - - return [...dataColumns, actionColumn]; - }, [columnNames, handleDelete, getColumnIcon]); - - // Function to fetch page data - const fetchPageData = useCallback((page: number, pageSize: number, search?: string) => { - vscode.postMessage({ - command: "webviewTellsProviderToUpdateData", - operation: "fetchPage", - pagination: { - page, - pageSize, - searchQuery: search, - }, - } as DictionaryPostMessages); - }, []); - - // Handle table pagination change - const handleTableChange = (newPagination: any) => { - setPagination((prev) => ({ - ...prev, - current: newPagination.current, - pageSize: newPagination.pageSize, - })); - fetchPageData(newPagination.current, newPagination.pageSize, searchQuery); - }; - - // Update the search handler to reset pagination - const handleSearchChange = (event: React.ChangeEvent) => { - const newQuery = event.target.value; - setSearchQuery(newQuery); - setPagination((prev) => ({ ...prev, current: 1 })); - fetchPageData(1, pagination.pageSize, newQuery); - }; - - // Update the message handler - useEffect(() => { - const handleReceiveMessage = (event: MessageEvent) => { - const message = event.data; - if (message.command === "providerTellsWebviewToUpdateData") { - const { entries, total, page, pageSize } = message.data; - const newDataSource = entries.map((entry, index) => ({ - key: (page - 1) * pageSize + index, - ...entry, - })); - - setDataSource(newDataSource); - setPagination((prev) => ({ - ...prev, - total, - current: page, - pageSize, - })); - - if (entries.length > 0) { - const newColumnNames = Object.keys(entries[0]).filter((key) => key !== "key"); - setColumnNames(newColumnNames); - } - } - }; - - window.addEventListener("message", handleReceiveMessage); - // Initial data fetch - fetchPageData(pagination.current, pagination.pageSize); - - return () => { - window.removeEventListener("message", handleReceiveMessage); - }; - }, []); - - return ( - -
-
- } - /> -
- -
- - -
- - setAddWordVisible(false)} /> - {entryToEdit && ( - setEntryToEdit(null)} - /> - )} -
- `Total ${total} items`, - }} - onChange={handleTableChange} - scroll={{ - x: "max-content", - y: `calc(${ - (outerContainerHeight || 0) - - (inputHeight || 0) - - (buttonHeight || 0) - }px - 180px)`, - }} - style={{ flexGrow: 1, overflow: "auto" }} - /> - - - - ); -}; - -export default App; diff --git a/webviews/codex-webviews/src/EditableReactTable/Badge.tsx b/webviews/codex-webviews/src/EditableReactTable/Badge.tsx deleted file mode 100644 index b387045a7..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/Badge.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from "react"; - -// Define an interface for the component's props -interface BadgeProps { - value: React.ReactNode; // This allows for strings, numbers, and other React nodes - backgroundColor: string; -} - -const Badge: React.FC = ({ value, backgroundColor }) => { - return ( - - {value} - - ); -}; - -export default Badge; diff --git a/webviews/codex-webviews/src/EditableReactTable/ConfirmDeleteButton.tsx b/webviews/codex-webviews/src/EditableReactTable/ConfirmDeleteButton.tsx deleted file mode 100644 index 38c053077..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/ConfirmDeleteButton.tsx +++ /dev/null @@ -1,51 +0,0 @@ -import { Button } from "antd"; -import { useState } from "react"; -export const ConfirmDeleteButton: React.FC<{ onConfirm: () => void }> = ({ onConfirm }) => { - const [isDeleting, setIsDeleting] = useState(false); - if (isDeleting) { - return ( -
-
-
-
-
-
- ); - } - return ( - - - , - ]} - > -
- - - - - - - - - - ); -}; - -export default EditWordForm; diff --git a/webviews/codex-webviews/src/EditableReactTable/Table.tsx b/webviews/codex-webviews/src/EditableReactTable/Table.tsx deleted file mode 100644 index f525268df..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/Table.tsx +++ /dev/null @@ -1,139 +0,0 @@ -import React, { CSSProperties, useMemo } from "react"; -import { useTable, useFlexLayout, useResizeColumns, useSortBy, TableOptions } from "react-table"; -import Cell from "./cells/Cell"; -import Header from "./header/Header"; -import PlusIcon from "./img/Plus"; -import { ActionTypes } from "./utils"; -import { TableColumn, TableData, TableEntry } from "./tableTypes"; -interface CustomTableOptions extends TableOptions { - dataDispatch?: React.Dispatch; -} -const defaultColumn: TableColumn = { - minWidth: 50, - width: 150, - maxWidth: 400, - Cell: Cell, - Header: Header, - sortType: "alphanumericFalsyLast", -}; - -export default function Table({ columns, data, dispatch: dataDispatch, skipReset }: TableData) { - const sortTypes = useMemo( - () => ({ - alphanumericFalsyLast(rowA: any, rowB: any, columnId: string, desc?: boolean) { - if (!rowA.values[columnId] && !rowB.values[columnId]) { - return 0; - } - - if (!rowA.values[columnId]) { - return desc ? -1 : 1; - } - - if (!rowB.values[columnId]) { - return desc ? 1 : -1; - } - - return isNaN(rowA.values[columnId]) - ? rowA.values[columnId].localeCompare(rowB.values[columnId]) - : rowA.values[columnId] - rowB.values[columnId]; - }, - }), - [] - ); - - const { getTableProps, getTableBodyProps, headerGroups, rows, prepareRow, totalColumnsWidth } = - useTable( - { - columns, - data, - defaultColumn, - dataDispatch, - autoResetSortBy: !skipReset, - autoResetFilters: !skipReset, - autoResetRowState: !skipReset, - sortTypes, - } as CustomTableOptions, - useFlexLayout /*Block 888*/, - useResizeColumns, - useSortBy - ); - - const RenderRow = React.useCallback( - ({ index, style }: { index: number; style: React.CSSProperties }) => { - const row = rows[index]; - prepareRow(row); - return ( -
- {row.cells.map((cell: any, cellIndex: number) => ( -
- {cell.render("Cell")} -
- ))} -
- ); - }, - [prepareRow, rows] - ); - - const Rows: React.FC = () => ( -
- {rows.map((row, index: number) => { - return RenderRow({ - index, - style: row?.getRowProps?.().style as CSSProperties, - }); - })} -
- ); - - return ( -
-
-
- {headerGroups.map((headerGroup: any, index: number) => ( -
- {headerGroup.headers.map((column: any, columnIndex: number) => ( -
- {column.render("Header")} -
- ))} -
- ))} -
-
-
-
-
- -
-
- -
dataDispatch && dataDispatch({ type: ActionTypes.ADD_ROW })} - style={{ - marginTop: 30, - width: "fit-content", - minWidth: "90px", - }} - > - - - - New -
-
-
- ); -} diff --git a/webviews/codex-webviews/src/EditableReactTable/cells/Cell.tsx b/webviews/codex-webviews/src/EditableReactTable/cells/Cell.tsx deleted file mode 100644 index 92fd84ffa..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/cells/Cell.tsx +++ /dev/null @@ -1,60 +0,0 @@ -import React from "react"; -import { DataTypes } from "../utils"; -import TextCell from "./TextCell"; -import NumberCell from "./NumberCell"; -import SelectCell from "./SelectCell"; -import CheckboxCell from "./CheckboxCell"; -import { CellData } from "../tableTypes"; - -export default function Cell({ - value: initialValue, - row: { index }, - column: { id, dataType, options }, - dataDispatch, -}: CellData) { - function getCellElement() { - switch (dataType) { - case DataTypes.TEXT: - return ( - - ); - case DataTypes.NUMBER: - return ( - - ); - case DataTypes.SELECT: - return ( - - ); - case DataTypes.CHECKBOX: - return ( - - ); - default: - return ; - } - } - - return getCellElement(); -} diff --git a/webviews/codex-webviews/src/EditableReactTable/cells/CheckboxCell.tsx b/webviews/codex-webviews/src/EditableReactTable/cells/CheckboxCell.tsx deleted file mode 100644 index 5e8d24e2b..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/cells/CheckboxCell.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import React, { useState } from "react"; -import { ActionTypes } from "../utils"; -import { CellTypeData } from "../tableTypes"; - -export default function CheckboxCell({ - initialValue, - columnId, - rowIndex, - dataDispatch, -}: CellTypeData) { - const [checked, setChecked] = useState(initialValue); - - const handleChange = (e: React.ChangeEvent) => { - setChecked(e.target.checked); - if (dataDispatch) - dataDispatch({ - type: ActionTypes.UPDATE_CELL, - columnId, - rowIndex, - value: e.target.checked, - }); - }; - - return ( -
- -
- ); -} diff --git a/webviews/codex-webviews/src/EditableReactTable/cells/NumberCell.tsx b/webviews/codex-webviews/src/EditableReactTable/cells/NumberCell.tsx deleted file mode 100644 index d30e21463..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/cells/NumberCell.tsx +++ /dev/null @@ -1,51 +0,0 @@ -import React, { useEffect, useState } from "react"; -import ContentEditable from "react-contenteditable"; -import { ActionTypes } from "../utils"; -import { CellTypeData, ValueState } from "../tableTypes"; - -export default function NumberCell({ - initialValue, - columnId, - rowIndex, - dataDispatch, -}: CellTypeData) { - const [value, setValue] = useState({ - value: initialValue, - update: false, - }); - - const onChange = (e: React.FormEvent) => { - const target = e.currentTarget; - setValue({ value: target.innerText, update: false }); - }; - - const onBlur = () => { - setValue((old) => ({ ...old, update: true })); - }; - - useEffect(() => { - setValue({ value: initialValue, update: false }); - }, [initialValue]); - - useEffect(() => { - if (value.update) { - if (dataDispatch) - dataDispatch({ - type: ActionTypes.UPDATE_CELL, - columnId, - rowIndex, - value: value.value, - }); - } - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [value.update, columnId, rowIndex]); - - return ( - - ); -} diff --git a/webviews/codex-webviews/src/EditableReactTable/cells/SelectCell.tsx b/webviews/codex-webviews/src/EditableReactTable/cells/SelectCell.tsx deleted file mode 100644 index a6640a88c..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/cells/SelectCell.tsx +++ /dev/null @@ -1,171 +0,0 @@ -import React, { useEffect, useState } from "react"; -import { createPortal } from "react-dom"; -import { usePopper } from "react-popper"; -import Badge from "../Badge"; -import { grey } from "../colors"; -import PlusIcon from "../img/Plus"; -import { ActionTypes, randomColor } from "../utils"; -import { CellTypeData } from "../tableTypes"; - -export default function SelectCell({ - initialValue, - options, - columnId, - rowIndex, - dataDispatch, -}: CellTypeData) { - const [selectRef, setSelectRef] = useState(null); - const [selectPop, setSelectPop] = useState(null); - const [showSelect, setShowSelect] = useState(false); - const [showAdd, setShowAdd] = useState(false); - const [addSelectRef, setAddSelectRef] = useState(null); - const { styles, attributes } = usePopper(selectRef, selectPop, { - placement: "bottom-start", - strategy: "fixed", - }); - const [value, setValue] = useState({ value: initialValue, update: false }); - - useEffect(() => { - setValue({ value: initialValue, update: false }); - }, [initialValue]); - - useEffect(() => { - if (value.update) { - if (dataDispatch) - dataDispatch({ - type: ActionTypes.UPDATE_CELL, - columnId, - rowIndex, - value: value.value, - }); - } - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [value, columnId, rowIndex]); - - useEffect(() => { - if (addSelectRef && showAdd) { - addSelectRef.focus(); - } - }, [addSelectRef, showAdd]); - - function getColor() { - let match = options?.find((option) => option.label === value.value); - return match?.backgroundColor ?? grey(200); - } - - function handleAddOption() { - setShowAdd(true); - } - - function handleOptionKeyDown(e: React.KeyboardEvent) { - if (e.key === "Enter") { - const target = e.target as HTMLInputElement; - if (target.value !== "") { - if (dataDispatch) - dataDispatch({ - type: ActionTypes.ADD_OPTION_TO_COLUMN, - option: target.value, - backgroundColor: randomColor(), - columnId, - }); - } - setShowAdd(false); - } - } - - function handleOptionBlur(e: React.FocusEvent) { - if (e.target.value !== "") { - if (dataDispatch) - dataDispatch({ - type: ActionTypes.ADD_OPTION_TO_COLUMN, - option: e.target.value, - backgroundColor: randomColor(), - columnId, - }); - } - setShowAdd(false); - } - - function handleOptionClick(option: any) { - setValue({ value: option.label, update: true }); - setShowSelect(false); - } - - useEffect(() => { - if (addSelectRef && showAdd) { - addSelectRef.focus(); - } - }, [addSelectRef, showAdd]); - - return ( - <> -
setShowSelect(true)} - > - {value.value && } -
- {showSelect &&
setShowSelect(false)} />} - {showSelect && - createPortal( -
-
- {options?.map((option) => ( -
handleOptionClick(option)} - > - -
- ))} - {showAdd && ( -
- -
- )} -
- - - - } - backgroundColor={grey(200)} - /> -
-
-
, - document.querySelector("#popper-portal") as Element - )} - - ); -} diff --git a/webviews/codex-webviews/src/EditableReactTable/cells/TextCell.tsx b/webviews/codex-webviews/src/EditableReactTable/cells/TextCell.tsx deleted file mode 100644 index f9790c313..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/cells/TextCell.tsx +++ /dev/null @@ -1,47 +0,0 @@ -import React, { useEffect, useState } from "react"; -import ContentEditable from "react-contenteditable"; -import { ActionTypes } from "../utils"; -import { CellTypeData, ValueState } from "../tableTypes"; - -export default function TextCell({ initialValue, columnId, rowIndex, dataDispatch }: CellTypeData) { - const [value, setValue] = useState({ - value: initialValue, - update: false, - }); - - function onChange(e: React.FormEvent) { - const target = e.currentTarget; - setValue({ value: target.innerText, update: false }); - } - - function onBlur() { - setValue((old: any) => ({ ...old, update: true })); - } - - useEffect(() => { - setValue({ value: initialValue, update: false }); - }, [initialValue]); - - useEffect(() => { - if (value.update) { - if (dataDispatch) - dataDispatch({ - type: ActionTypes.UPDATE_CELL, - columnId, - rowIndex, - value: value.value, - }); - } - - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [value.update, columnId, rowIndex]); - - return ( - - ); -} diff --git a/webviews/codex-webviews/src/EditableReactTable/colors.ts b/webviews/codex-webviews/src/EditableReactTable/colors.ts deleted file mode 100644 index 3825b8a75..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/colors.ts +++ /dev/null @@ -1,18 +0,0 @@ -type GreyScaleValue = 50 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900; - -export function grey(value: GreyScaleValue): string { - const reference: Record = { - 50: "#fafafa", - 100: "#f5f5f5", - 200: "#eeeeee", - 300: "#e0e0e0", - 400: "#bdbdbd", - 500: "#9e9e9e", - 600: "#757575", - 700: "#616161", - 800: "#424242", - 900: "#212121", - }; - - return reference[value]; -} diff --git a/webviews/codex-webviews/src/EditableReactTable/header/AddColumnHeader.tsx b/webviews/codex-webviews/src/EditableReactTable/header/AddColumnHeader.tsx deleted file mode 100644 index c6d3a57f8..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/header/AddColumnHeader.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import PlusIcon from "../img/Plus"; -import React from "react"; -import { ActionTypes, Constants } from "../utils"; - -export default function AddColumnHeader({ - getHeaderProps, - dataDispatch, -}: { - getHeaderProps: any; - dataDispatch: React.Dispatch; -}) { - return ( -
-
- dataDispatch({ - type: ActionTypes.ADD_COLUMN_TO_LEFT, - columnId: Constants.ADD_COLUMN_ID, - focus: true, - }) - } - > - - - -
-
- ); -} diff --git a/webviews/codex-webviews/src/EditableReactTable/header/DataTypeIcon.tsx b/webviews/codex-webviews/src/EditableReactTable/header/DataTypeIcon.tsx deleted file mode 100644 index 2609620fe..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/header/DataTypeIcon.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import React, { ReactElement } from "react"; -import { DataTypes } from "../utils"; -import TextIcon from "../img/Text"; -import MultiIcon from "../img/Multi"; -import HashIcon from "../img/Hash"; - -interface DataTypeIconProps { - dataType: DataTypes; -} - -export default function DataTypeIcon({ dataType }: DataTypeIconProps): ReactElement | null { - function getPropertyIcon(dataType: DataTypes): ReactElement | null { - switch (dataType as DataTypes) { - case DataTypes.NUMBER: - return ; - case DataTypes.TEXT: - return ; - case DataTypes.SELECT: - return ; - default: - return null; - } - } - - return getPropertyIcon(dataType); -} diff --git a/webviews/codex-webviews/src/EditableReactTable/header/Header.tsx b/webviews/codex-webviews/src/EditableReactTable/header/Header.tsx deleted file mode 100644 index d0e0238ca..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/header/Header.tsx +++ /dev/null @@ -1,99 +0,0 @@ -import React, { useState, useEffect } from "react"; -import { usePopper } from "react-popper"; -import { Constants } from "../utils"; -import AddColumnHeader from "./AddColumnHeader"; -import DataTypeIcon from "./DataTypeIcon"; -import HeaderMenu from "./HeaderMenu"; -import { DataTypes } from "../utils"; //Unsure about importing this - -interface DataAction { - type: string; // More specific action types as string literals - payload?: any; // Be as specific as possible with the payload -} - -interface Column { - id: string | number; - created?: boolean; - label: string; - dataType: string; // You might want to use a specific union type or enum if you have a finite set of data types - getResizerProps: () => any; // Specify the correct return type if possible - getHeaderProps: () => any; // Specify the correct return type if possible -} - -interface HeaderProps { - column: Column; - setSortBy: (criteria: any) => void; // Specify the correct parameter type based on your sorting logic - dataDispatch: React.Dispatch; -} - -export default function Header({ - column: { id, created, label, dataType, getResizerProps, getHeaderProps }, - setSortBy, - dataDispatch, -}: HeaderProps) { - const [showHeaderMenu, setShowHeaderMenu] = useState(created || false); - const [headerMenuAnchorRef, setHeaderMenuAnchorRef] = useState(null); - const [headerMenuPopperRef, setHeaderMenuPopperRef] = useState(null); - const headerMenuPopper = usePopper(headerMenuAnchorRef, headerMenuPopperRef, { - placement: "bottom", - strategy: "absolute", - }); - - /* when the column is newly created, set it to open */ - useEffect(() => { - if (created) { - setShowHeaderMenu(true); - } - }, [created]); - - function getHeader() { - if (id === Constants.ADD_COLUMN_ID) { - return ; - } else if (id === Constants.CHECKBOX_COLUMN_ID) { - // Handle the checkbox column header specifically - // For example, return a simple header without the add column functionality - return ( -
-
{label}
-
- ); - } - - return ( - <> -
-
setShowHeaderMenu(true)} - ref={setHeaderMenuAnchorRef} - > - - - - {label} -
-
-
- {showHeaderMenu && ( -
setShowHeaderMenu(false)} /> - )} - {showHeaderMenu && ( - - )} - - ); - } - - return getHeader(); -} diff --git a/webviews/codex-webviews/src/EditableReactTable/header/HeaderMenu.tsx b/webviews/codex-webviews/src/EditableReactTable/header/HeaderMenu.tsx deleted file mode 100644 index fc94b6efb..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/header/HeaderMenu.tsx +++ /dev/null @@ -1,115 +0,0 @@ -import React, { useEffect, useState } from "react"; -import ArrowUpIcon from "../img/ArrowUp"; -import ArrowDownIcon from "../img/ArrowDown"; -// import ArrowLeftIcon from '../img/ArrowLeft'; -// import ArrowRightIcon from '../img/ArrowRight'; -// import TrashIcon from '../img/Trash'; -import { grey } from "../colors"; -// import TypesMenu from './TypesMenu'; -// import { usePopper } from 'react-popper'; -import { ActionTypes, shortId } from "../utils"; -import { DataAction } from "../tableTypes"; -// import DataTypeIcon from './DataTypeIcon'; - -interface HeaderMenuProps { - label: string; - dataType: string; // Assuming dataType is used elsewhere, include it here for completeness - columnId: string; - setSortBy: (sortBy: { id: string; desc: boolean }[]) => void; - popper: any; - popperRef: React.Ref; - dataDispatch: React.Dispatch; - setShowHeaderMenu: (show: boolean) => void; -} - -export default function HeaderMenu({ - label, - dataType, - columnId, - setSortBy, - popper, - popperRef, - dataDispatch, - setShowHeaderMenu, -}: HeaderMenuProps) { - // const [inputRef] = useState(null); - - const [header, setHeader] = useState(label); - - useEffect(() => { - setHeader(label); - }, [label]); - - // useEffect(() => { - // if (inputRef) { - // inputRef.focus(); - // inputRef.select(); - // } - // }, [inputRef]); - - const buttons = [ - { - onClick: () => { - dataDispatch({ - type: ActionTypes.UPDATE_COLUMN_HEADER, - columnId, - label: header, - }); - setSortBy([{ id: columnId, desc: false }]); - setShowHeaderMenu(false); - }, - icon: , - label: "Sort ascending", - }, - { - onClick: () => { - dataDispatch({ - type: ActionTypes.UPDATE_COLUMN_HEADER, - columnId, - label: header, - }); - setSortBy([{ id: columnId, desc: true }]); - setShowHeaderMenu(false); - }, - icon: , - label: "Sort descending", - }, - ]; - - return ( -
-
-
-
-
- {buttons.map((button) => ( - - ))} -
-
-
- ); -} diff --git a/webviews/codex-webviews/src/EditableReactTable/header/TypesMenu.tsx b/webviews/codex-webviews/src/EditableReactTable/header/TypesMenu.tsx deleted file mode 100644 index ad1bd4845..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/header/TypesMenu.tsx +++ /dev/null @@ -1,98 +0,0 @@ -import React from "react"; -import { ActionTypes, DataTypes, shortId } from "../utils"; -import DataTypeIcon from "./DataTypeIcon"; -import { DataAction } from "../tableTypes"; - -interface TypesMenuProps { - popper: any; - popperRef: React.Ref; - dataDispatch: React.Dispatch; - setShowTypeMenu: (show: boolean) => void; - onClose: () => void; - columnId: string; -} - -interface TypeOption { - type: DataTypes; - onClick: (event: React.MouseEvent) => void; - icon: JSX.Element; - label: string; -} - -function getLabel(type: DataTypes): string { - return type.charAt(0).toUpperCase() + type.slice(1); -} - -export default function TypesMenu({ - popper, - popperRef, - dataDispatch, - setShowTypeMenu, - onClose, - columnId, -}: TypesMenuProps) { - const types: TypeOption[] = [ - { - type: DataTypes.SELECT, - onClick: () => { - dataDispatch({ - type: ActionTypes.UPDATE_COLUMN_TYPE, - columnId, - dataType: DataTypes.SELECT, - }); - onClose(); - }, - icon: , - label: getLabel(DataTypes.SELECT), - }, - { - type: DataTypes.TEXT, - onClick: () => { - dataDispatch({ - type: ActionTypes.UPDATE_COLUMN_TYPE, - columnId, - dataType: DataTypes.TEXT, - }); - onClose(); - }, - icon: , - label: getLabel(DataTypes.TEXT), - }, - { - type: DataTypes.NUMBER, - onClick: () => { - dataDispatch({ - type: ActionTypes.UPDATE_COLUMN_TYPE, - columnId, - dataType: DataTypes.NUMBER, - }); - onClose(); - }, - icon: , - label: getLabel(DataTypes.NUMBER), - }, - ]; - - return ( -
setShowTypeMenu(true)} - onMouseLeave={() => setShowTypeMenu(false)} - {...popper.attributes.popper} - style={{ - ...popper.styles.popper, - width: 200, - backgroundColor: "white", - zIndex: 4, - }} - > - {types.map((type) => ( - - ))} -
- ); -} diff --git a/webviews/codex-webviews/src/EditableReactTable/img/ArrowDown.tsx b/webviews/codex-webviews/src/EditableReactTable/img/ArrowDown.tsx deleted file mode 100644 index 2feba363e..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/img/ArrowDown.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import React from "react"; - -const ArrowDown: React.FC = () => { - return ; -}; - -export default ArrowDown; diff --git a/webviews/codex-webviews/src/EditableReactTable/img/ArrowLeft.tsx b/webviews/codex-webviews/src/EditableReactTable/img/ArrowLeft.tsx deleted file mode 100644 index a626538ef..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/img/ArrowLeft.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import React from "react"; - -const ArrowLeft: React.FC = () => { - return ; -}; - -export default ArrowLeft; diff --git a/webviews/codex-webviews/src/EditableReactTable/img/ArrowRight.tsx b/webviews/codex-webviews/src/EditableReactTable/img/ArrowRight.tsx deleted file mode 100644 index 48734fdee..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/img/ArrowRight.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import React from "react"; - -const ArrowRight: React.FC = () => { - return ; -}; - -export default ArrowRight; diff --git a/webviews/codex-webviews/src/EditableReactTable/img/ArrowUp.tsx b/webviews/codex-webviews/src/EditableReactTable/img/ArrowUp.tsx deleted file mode 100644 index d76fb5b35..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/img/ArrowUp.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import React from "react"; - -const ArrowUp: React.FC = () => { - return ; -}; - -export default ArrowUp; diff --git a/webviews/codex-webviews/src/EditableReactTable/img/Hash.tsx b/webviews/codex-webviews/src/EditableReactTable/img/Hash.tsx deleted file mode 100644 index 80ae44353..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/img/Hash.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import React from "react"; - -const Hash: React.FC = () => { - return ; -}; - -export default Hash; diff --git a/webviews/codex-webviews/src/EditableReactTable/img/Multi.tsx b/webviews/codex-webviews/src/EditableReactTable/img/Multi.tsx deleted file mode 100644 index 4c827dedd..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/img/Multi.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import React from "react"; - -const Multi: React.FC = () => { - return ; -}; - -export default Multi; diff --git a/webviews/codex-webviews/src/EditableReactTable/img/Plus.tsx b/webviews/codex-webviews/src/EditableReactTable/img/Plus.tsx deleted file mode 100644 index 93ec92fad..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/img/Plus.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import React from "react"; - -const Plus: React.FC = () => { - return ; -}; - -export default Plus; diff --git a/webviews/codex-webviews/src/EditableReactTable/img/Text.tsx b/webviews/codex-webviews/src/EditableReactTable/img/Text.tsx deleted file mode 100644 index 63fe348ee..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/img/Text.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import React from "react"; - -const Text: React.FC = () => { - return ; -}; - -export default Text; diff --git a/webviews/codex-webviews/src/EditableReactTable/img/Trash.tsx b/webviews/codex-webviews/src/EditableReactTable/img/Trash.tsx deleted file mode 100644 index e1aa54888..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/img/Trash.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import React from "react"; - -const Trash: React.FC = () => { - return ; -}; - -export default Trash; diff --git a/webviews/codex-webviews/src/EditableReactTable/index.tsx b/webviews/codex-webviews/src/EditableReactTable/index.tsx deleted file mode 100644 index 99ad76999..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/index.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from "react"; -import ReactDOM from "react-dom"; -// import "antd/dist/reset.css"; - -import App from "./App"; - -ReactDOM.render( - - - , - document.getElementById("root") -); diff --git a/webviews/codex-webviews/src/EditableReactTable/scrollbarWidth.ts b/webviews/codex-webviews/src/EditableReactTable/scrollbarWidth.ts deleted file mode 100644 index 112bf4342..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/scrollbarWidth.ts +++ /dev/null @@ -1,13 +0,0 @@ -const scrollbarWidth = (): number => { - const scrollDiv = document.createElement("div"); - scrollDiv.setAttribute( - "style", - "width: 100px; height: 100px; overflow: scroll; position:absolute; top:-9999px;" - ); - document.body.appendChild(scrollDiv); - const scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth; - document.body.removeChild(scrollDiv); - return scrollbarWidth; -}; - -export default scrollbarWidth; diff --git a/webviews/codex-webviews/src/EditableReactTable/style.css b/webviews/codex-webviews/src/EditableReactTable/style.css deleted file mode 100644 index 1e7655f91..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/style.css +++ /dev/null @@ -1,514 +0,0 @@ -/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); */ - -html, body, #root { - height: 100%; /* Full height */ - margin: 0; - padding: 0; - overflow: hidden; -} - -/* html { - box-sizing: border-box; -} */ - -*, -*:before, -*:after { - box-sizing: inherit; -} - -* { - margin: 0; - padding: 0; - font-family: var(--vscode-font-family, 'Inter', sans-serif); - color: var(--vscode-editor-foreground); - background-color: var(--vscode-editor-background); -} - -/* #root { - margin: 0px; - padding: 0px; -} */ - -.transition-fade-enter { - opacity: 0; -} - -.transition-fade-enter-active { - opacity: 1; - transition: opacity 300ms; -} - -.transition-fade-exit { - opacity: 1; -} - -.transition-fade-exit-active { - opacity: 0; - transition: opacity 300ms; -} - -.svg-icon svg { - position: relative; - height: 1.5em; /*remove?*/ - width: 1.5em; /*remove?*/ - /* top: 0.125rem; */ - background-color: var(--vscode-button-background); - fill: var(--vscode-button-foreground); - display: flex; - align-items: center; -} - -.svg-text svg { - stroke: #424242; -} - -.svg-180 svg { - transform: rotate(180deg); -} - -.form-input { - padding: 0.375rem; - /* background-color: #eeeeee; */ - background-color: var(--vscode-input-background); - /* border: none; */ - border: 1px solid var(--vscode-input-border); - /* border-radius: 4px; */ - border-radius: var(--vscode-input-borderRadius); - font-size: 0.875rem; - /* color: #424242; */ - color: var(--vscode-input-foreground); -} - -.form-input:focus { - outline: none; - /* box-shadow: 0 0 1px 2px #8ecae6; */ - box-shadow: 0 0 1px 2px var(--vscode-focusBorder); -} - -.is-fullwidth { - width: 100%; -} - -.bg-white { - /* background-color: white; */ - background-color: var(--vscode-editor-background); -} - -.data-input { - white-space: pre-wrap; - border: none; - /* border: 1px solid var(--vscode-input-border); */ - padding: 0.5rem; - /* color: #424242; */ - color: var(--vscode-input-foreground); - font-size: 1rem; - /* border-radius: 4px; */ - border-radius: var(--vscode-input-borderRadius); - resize: none; - /* background-color: white; */ - background-color: var(--vscode-input-background); - box-sizing: border-box; - flex: 1 1 auto; -} - -.data-input:focus { - outline: none; - /* box-shadow: 0 0 0 2px var(--vscode-focusBorder); */ -} - -.shadow-5 { - /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.12), - 0 4px 6px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.12), - 0 16px 32px rgba(0, 0, 0, 0.12); */ - box-shadow: var(--vscode-shadow); -} - -.svg-icon-sm svg { - position: relative; - height: 1rem; - width: 1rem; - top: 0.125rem; -} - -.svg-gray svg { - stroke: #ffffff; -} - -.option-input { - width: 100%; - font-size: 1rem; - border: none; - /* border: 1px solid var(--vscode-input-border); */ - background-color: transparent; - /* background-color: var(--vscode-input-background); */ -} - -.option-input:focus { - outline: none; - /* box-shadow: 0 0 0 2px var(--vscode-focusBorder); */ -} - -.noselect { - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.overlay { - position: fixed; - top: 0; - left: 0; - height: 100vh; - width: 100vw; - z-index: 2; - overflow: hidden; - background-color: rgba(0, 0, 0, 0.5); -} - -.sort-button { - padding: 0.25rem 0.75rem; - width: 100%; - background-color: transparent; - border: 0; - font-size: 0.875rem; - /* color: #757575; */ - color: var(--vscode-button-foreground); - cursor: pointer; - text-align: left; - display: flex; - align-items: center; -} - -.sort-button:hover { - /* background-color: #eeeeee; */ - background-color: var(--vscode-button-hoverBackground); -} - -.search-bar { - margin-bottom: 20px; - padding: 8px; - font-size: 16px; - border: 1px solid var(--vscode-input-border); - border-radius: 4px; - background-color: var(--vscode-input-background); - color: var(--vscode-input-foreground); - width: 100%; - box-sizing: border-box; -} - -.remove-button { - /* position: absolute; - top: 0; */ - /*right: 0; */ - /* bottom: 0; */ - /* left: 0; */ - background: none; - border: none; - cursor: pointer; - padding: 5px; /* Adjust padding as needed */ - display: flex; - justify-content: center; - align-items: center; - z-index: 10; /* Ensures the button is above the table */ -} - -.remove-button svg { - height: 36px; /* Adjust size as needed */ - width: 36px; /* Adjust size as needed */ - margin-right: 20px; - fill: var( - --vscode-button-foreground - ); /* Use VS Code theme color for the icon */ -} - -.remove-button:disabled { - cursor: not-allowed; - opacity: 0.5; -} - -.remove-button:hover:not(:disabled) { - background-color: var( - --vscode-button-hoverBackground - ); /* Use VS Code theme color for hover state */ -} - -.app-container { - display: flex; - flex-direction: column; - height: 100%; - /*888 below*/ - overflow-y: auto; - margin-bottom: 70px; - flex: 1; - width: 100%; -} - -.table { - display: flex; - flex-flow: column; - margin-top: 60px; -} - -.table-header { - display: flex; - flex-flow: column; - position: absolute; - z-index: 1001; -} - -.table-container { - /* overflow-y: auto; 888 */ - margin-bottom: 40px; - flex: 1; - width: 100%; -} - - -/* .remove-button-container { - /* position: absolute; */ - /* right: 0; Aligns the button to the right */ - /* top: -50px; Adjusts the vertical position to float above the table */ - /* z-index: 10; Ensures the button is above the table */ - -.checkbox-container { - display: flex; - align-items: center; - justify-content: center; /* Center horizontally if needed */ - height: 100%; /* Ensure the container fills the cell */ -} - -.checkbox-large { - transform: scale(2.5); /* Adjust scale as needed */ - margin: 5px; /* Optional: add some margin if needed */ -} - -.add-row { - background-color: var(--vscode-button-background); - color: var(--vscode-button-foreground); - padding: 0.5rem; - display: flex; - align-items: center; - justify-content: center; - font-size: 0.875rem; - cursor: pointer; - height: 30px; - /* border: 1px solid #e0e0e0; */ - border: 1px solid var(--vscode-button-border); - border-radius: 4px; - transition: background-color 0.3s ease; - - - position: fixed; - bottom: 0; - left: 0; - right: 0; - z-index: 10; /* Ensures the button is above the table */ -} - -.add-row:hover { - /* background-color: #f5f5f5; */ - background-color: var(--vscode-button-hoverBackground); -} - - - -.resizer { - display: inline-block; - background: transparent; - width: 8px; - height: 100%; - position: absolute; - right: 0; - top: 0; - transform: translateX(50%); - z-index: 1; - cursor: col-resize; - touch-action: none; -} - -.resizer:hover { - /* background-color: #8ecae6; */ - background-color: var(--vscode-editor-selectionBackground); -} - -h1 { - font-size: 2rem; /* Adjust font size */ - color: var(--vscode-editor-foreground); /* Use VS Code theme color */ -} - -.tr { - display: flex; - align-items: center; - margin: 0; /* Remove margin between rows */ -} - -.td, .th { - padding: 1px; /* Minimal padding */ - margin: 0; /* Remove margin between cells */ - border-right: 1px solid var(--vscode-editor-lineHighlightBackground); /* Ensure consistent border */ - border-bottom: 1px solid var(--vscode-editor-lineHighlightBackground); /* Ensure consistent border */ - white-space: nowrap; - position: relative; - color: var(--vscode-editor-foreground); - background-color: var(--vscode-editorWidget-background); - font-weight: 500; - font-size: 1.0rem; /*0.875rem;*/ - cursor: pointer; -} - -.td:last-child, .th:last-child { - border-right: none; /* Remove right border for the last cell in each row */ -} - -.tr:last-child .td { - border-bottom: none; /* Remove bottom border for the last row */ -} - -.td-content, .th-content { - display: block; - padding: 1px; /* Minimal padding */ - overflow-x: hidden; - text-overflow: ellipsis; - display: flex; - align-items: center; - height: 50px; -} - -.th:hover { - background-color: var(--vscode-list-hoverBackground); -} - - - -.text-align-right { - text-align: right; -} - -.cell-padding { - padding: 0.5rem; -} - -.d-flex { - display: flex; -} - -.d-inline-block { - display: inline-block; -} - -.cursor-default { - cursor: default; -} - -.align-items-center { - align-items: center; -} - -.flex-wrap-wrap { - flex-wrap: wrap; -} - -.border-radius-md { - border-radius: 5px; -} - -.cursor-pointer { - cursor: pointer; -} - -.icon-margin { - margin-right: 4px; -} - -.font-weight-600 { - font-weight: 600; -} - -.font-weight-400 { - font-weight: 400; -} - -.font-size-75 { - font-size: 0.75rem; -} - -.flex-1 { - flex: 1; -} - -.mt-5 { - margin-top: 0.5rem; -} - -.mr-auto { - margin-right: auto; -} - -.ml-auto { - margin-left: auto; -} - -.mr-5 { - margin-right: 0.5rem; -} - -.justify-content-center { - justify-content: center; -} - -.flex-column { - flex-direction: column; -} - -.overflow-auto { - overflow: auto; -} - -.overflow-hidden { - overflow: hidden; -} - -.overflow-y-hidden { - overflow-y: hidden; -} - -.list-padding { - padding: 4px 0px; - border: 1px solid var(--vscode-editor-lineHighlightBackground); -} - -.bg-grey-200 { - /* background-color: #eeeeee; */ - background-color: var(--vscode-editor-background); -} - -.color-grey-800 { - /* color: #424242; */ - color: var(--vscode-editor-foreground); -} - -.color-grey-600 { - /* color: #757575; */ - color: var(--vscode-editorWidget-foreground); -} - -.color-grey-500 { - /* color: #9e9e9e; */ - color: var(--vscode-editor-inactiveSelectionBackground); -} - -.border-radius-sm { - border-radius: 4px; -} - -.text-transform-uppercase { - text-transform: uppercase; -} - -.text-transform-capitalize { - text-transform: capitalize; -} diff --git a/webviews/codex-webviews/src/EditableReactTable/tableTypes.d.ts b/webviews/codex-webviews/src/EditableReactTable/tableTypes.d.ts deleted file mode 100644 index 1974b121d..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/tableTypes.d.ts +++ /dev/null @@ -1,115 +0,0 @@ -import { ActionTypes } from "./utils"; - -type TableColumn = { - id?: - | "headWord" - | "id" - | "hash" - | "definition" - | "translationEquivalents" - | "links" - | "linkedEntries" - | "metadata" - | "notes" - | "extra" - | "checkbox_column"; - label?: string; - accessor?: string; - minWidth?: number; - width?: number; - maxWidth?: number; - dataType?: string; // Could be more specific if there are only certain values allowed - options?: any[]; // Define this more specifically if possible - Cell?: any; - Header?: any; - sortType?: string; - visible?: boolean; -}; -// type DictionaryTableColumn = TableColumn & { -// id: -// | 'headWord' -// | 'id' -// | 'hash' -// | 'definition' -// | 'translationEquivalents' -// | 'links' -// | 'linkedEntries' -// | 'metadata' -// | 'notes' -// | 'extra' -// | 'checkbox_column'; -// }; - -type TableEntry = { - metadata: string | Record; // Assuming metadata can be string or object - dataDispatch?: React.Dispatch | undefined; - [key: string]: any; // For additional properties -}; - -type TableData = { - columns: TableColumn[]; - data: TableEntry[]; - dispatch?: React.Dispatch; - skipReset?: boolean; -}; - -type CellData = { - value: any; - row: RowData; - column: ColumnData; - dataDispatch: React.Dispatch; -}; - -type CellTypeData = { - initialValue: any; - options?: { label: string; backgroundColor: string }[]; // For SelectCell - rowIndex: number; - columnId: string; - dataDispatch?: React.Dispatch; - // dataDispatch: React.Dispatch; -}; - -interface DataAction { - type: ActionTypes; - columnId: string; - label?: string; - rowIndex?: number; - value?: any; - dataType?: any; - option?: any; - backgroundColor?: string; -} - -// enum DataTypes { -// NUMBER = 'number', -// TEXT = 'text', -// SELECT = 'select', -// CHECKBOX = 'checkbox', -// }; - -type RowData = { - index: number; -}; - -type ColumnData = { - id: string; - dataType: string; - options: any[]; -}; - -type ValueState = { - value: any; - update: boolean; -}; - -// declare module 'react-table' { -// export const useTable: any; -// export const useBlockLayout: any; -// export const useResizeColumns: any; -// export const useSortBy: any; -// // Add other exports as needed -// } - -// declare module 'react-window' { -// export const FixedSizeList: any; -// } diff --git a/webviews/codex-webviews/src/EditableReactTable/utilities/vscode.ts b/webviews/codex-webviews/src/EditableReactTable/utilities/vscode.ts deleted file mode 100644 index d8d9f969c..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/utilities/vscode.ts +++ /dev/null @@ -1,78 +0,0 @@ -import type { WebviewApi } from "vscode-webview"; - -/** - * A utility wrapper around the acquireVsCodeApi() function, which enables - * message passing and state management between the webview and extension - * contexts. - * - * This utility also enables webview code to be run in a web browser-based - * dev server by using native web browser features that mock the functionality - * enabled by acquireVsCodeApi. - */ -class VSCodeAPIWrapper { - private readonly vsCodeApi: WebviewApi | undefined; - - constructor() { - // Check if the acquireVsCodeApi function exists in the current development - // context (i.e. VS Code development window or web browser) - if (typeof acquireVsCodeApi === "function") { - this.vsCodeApi = acquireVsCodeApi(); - } - } - - /** - * Post a message (i.e. send arbitrary data) to the owner of the webview. - * - * @remarks When running webview code inside a web browser, postMessage will instead - * log the given message to the console. - * - * @param message Abitrary data (must be JSON serializable) to send to the extension context. - */ - public postMessage(message: unknown) { - if (this.vsCodeApi) { - this.vsCodeApi.postMessage(message); - } else { - console.log(message); - } - } - - /** - * Get the persistent state stored for this webview. - * - * @remarks When running webview source code inside a web browser, getState will retrieve state - * from local storage (https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage). - * - * @return The current state or `undefined` if no state has been set. - */ - public getState(): unknown | undefined { - if (this.vsCodeApi) { - return this.vsCodeApi.getState(); - } else { - const state = localStorage.getItem("vscodeState"); - return state ? JSON.parse(state) : undefined; - } - } - - /** - * Set the persistent state stored for this webview. - * - * @remarks When running webview source code inside a web browser, setState will set the given - * state using local storage (https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage). - * - * @param newState New persisted state. This must be a JSON serializable object. Can be retrieved - * using {@link getState}. - * - * @return The new state. - */ - public setState(newState: T): T { - if (this.vsCodeApi) { - return this.vsCodeApi.setState(newState); - } else { - localStorage.setItem("vscodeState", JSON.stringify(newState)); - return newState; - } - } -} - -// Exports class singleton to prevent multiple invocations of acquireVsCodeApi. -export const vscode = new VSCodeAPIWrapper(); diff --git a/webviews/codex-webviews/src/EditableReactTable/utils.ts b/webviews/codex-webviews/src/EditableReactTable/utils.ts deleted file mode 100644 index cd91165fb..000000000 --- a/webviews/codex-webviews/src/EditableReactTable/utils.ts +++ /dev/null @@ -1,98 +0,0 @@ -import { Dictionary, DictionaryEntry } from "codex-types"; -import { TableColumn, TableData, TableEntry } from "./tableTypes"; - -export enum ActionTypes { - ADD_OPTION_TO_COLUMN = "add_option_to_column", - ADD_ROW = "add_row", - UPDATE_COLUMN_TYPE = "update_column_type", - UPDATE_COLUMN_HEADER = "update_column_header", - UPDATE_CELL = "update_cell", - ADD_COLUMN_TO_LEFT = "add_column_to_left", - ADD_COLUMN_TO_RIGHT = "add_column_to_right", - DELETE_COLUMN = "delete_column", - ENABLE_RESET = "enable_reset", - LOAD_DATA = "loaddata", - REMOVE_CHECKED_ROWS = "remove_checked_rows", - RESIZE_COLUMN_WIDTHS = "resize_column_widths", - //test - // RESIZE_COLUMN = 'resize_column', - //endtest -} - -export enum DataTypes { - NUMBER = "number", - TEXT = "text", - SELECT = "select", - CHECKBOX = "checkbox", -} - -export const Constants = { - ADD_COLUMN_ID: 999999, - CHECKBOX_COLUMN_ID: "checkbox_column", -}; - -export function shortId(): string { - return "_" + Math.random().toString(36).substr(2, 9); -} - -export function randomColor(): string { - return `hsl(${Math.floor(Math.random() * 360)}, 95%, 90%)`; -} - -export function transformToTableData(dictionary: Dictionary): TableData { - // const data = dictionary.entries; - const data = dictionary.entries.map((entry) => ({ - ...entry, - metadata: - typeof entry.metadata === "string" ? entry.metadata : JSON.stringify(entry.metadata), // Only stringify if not already a string - })); - - let columns: TableColumn[] = []; - const checkboxColumn: TableColumn = { - // id: Constants.ADD_COLUMN_ID, - id: Constants.CHECKBOX_COLUMN_ID as TableColumn["id"], - label: " ", - accessor: "checkbox_column", - minWidth: 40, - width: 40, - // disableResizing: true, - dataType: DataTypes.CHECKBOX, - }; - - // Create columns in required format and according to the first entry in the data - if (data.length > 0) { - const firstEntry = data[0]; - columns = Object.keys(firstEntry).map((key) => ({ - id: key as TableColumn["id"], - label: - key - .replace(/([A-Z])/g, " $1") - .charAt(0) - .toUpperCase() + key.replace(/([A-Z])/g, " $1").slice(1), // Capitalize the first letter and insert space before each capital letter - accessor: key, - minWidth: 200, - dataType: DataTypes.TEXT, // Default to TEXT, adjust based on your needs - options: [], - })); - // Add the scroll column - columns.push(checkboxColumn); - } - - return { columns, data, skipReset: false }; -} - -export function transformToDictionaryFormat( - tableData: TableData, - dictionary: Dictionary -): Dictionary { - // Place row entries back into the dictionary - // dictionary.entries = tableData.data; - // Modify here to remove checkbox data from tableData.data - - dictionary.entries = tableData.data.map((row: TableEntry) => { - const newRow = { ...row }; - delete newRow[Constants.CHECKBOX_COLUMN_ID]; // Key for checkbox data - return newRow as unknown as DictionaryEntry; - }); - return dictionary; -} From e7d60e09cd78391fa7487d05df250216676b0f31 Mon Sep 17 00:00:00 2001 From: dadukhankevin Date: Wed, 4 Feb 2026 14:10:27 -0600 Subject: [PATCH 08/13] further deletions --- package.json | 10 - .../contentIndexes/indexes/wordsIndex.ts | 2 +- .../contextAware/webviewInitializers.ts | 4 - src/cellLabelImporter/cellLabelImporter.ts | 2 +- src/codexMigrationTool/codexMigrationTool.ts | 2 +- src/globalProvider.ts | 2 +- .../codexCellEditorProvider.ts | 2 +- .../DictionaryEditorProvider.ts | 359 ------------------ .../dictionaryTableProvider.ts | 55 --- .../dictionaryTable/utilities/getUri.ts | 16 - .../FileHandler.ts => utils/fileHandler.ts} | 0 .../utilities => utils}/getNonce.ts | 0 src/utils/webviewTemplate.ts | 2 +- 13 files changed, 6 insertions(+), 450 deletions(-) delete mode 100644 src/providers/dictionaryTable/DictionaryEditorProvider.ts delete mode 100644 src/providers/dictionaryTable/dictionaryTableProvider.ts delete mode 100644 src/providers/dictionaryTable/utilities/getUri.ts rename src/{providers/dictionaryTable/utilities/FileHandler.ts => utils/fileHandler.ts} (100%) rename src/{providers/dictionaryTable/utilities => utils}/getNonce.ts (100%) diff --git a/package.json b/package.json index 66d7c8ded..315c50e34 100644 --- a/package.json +++ b/package.json @@ -1006,16 +1006,6 @@ } ], "priority": "default" - }, - { - "viewType": "codex.dictionaryEditor", - "displayName": "Dictionary Editor", - "selector": [ - { - "filenamePattern": "*.dictionary" - } - ], - "priority": "default" } ] }, diff --git a/src/activationHelpers/contextAware/contentIndexes/indexes/wordsIndex.ts b/src/activationHelpers/contextAware/contentIndexes/indexes/wordsIndex.ts index 976de282a..86782dbb0 100644 --- a/src/activationHelpers/contextAware/contentIndexes/indexes/wordsIndex.ts +++ b/src/activationHelpers/contextAware/contentIndexes/indexes/wordsIndex.ts @@ -1,6 +1,6 @@ import * as vscode from "vscode"; import * as path from "path"; -import { FileHandler } from "../../../../providers/dictionaryTable/utilities/FileHandler"; +import { FileHandler } from "../../../../utils/fileHandler"; import { updateCompleteDrafts } from "../indexingUtils"; import { getWorkSpaceUri } from "../../../../utils"; import { tokenizeText } from "../../../../utils/nlpUtils"; diff --git a/src/activationHelpers/contextAware/webviewInitializers.ts b/src/activationHelpers/contextAware/webviewInitializers.ts index 9c0f824e0..742977bd0 100644 --- a/src/activationHelpers/contextAware/webviewInitializers.ts +++ b/src/activationHelpers/contextAware/webviewInitializers.ts @@ -1,12 +1,8 @@ "use strict"; import * as vscode from "vscode"; -import { registerDictionaryTableProvider } from "../../providers/dictionaryTable/dictionaryTableProvider"; export async function initializeWebviews(context: vscode.ExtensionContext) { - // Register providers that are not yet handled by the centralized registration system - registerDictionaryTableProvider(context); - // Note: The following providers are now registered in registerProviders.ts: // - registerNavigationWebviewProvider (first so it appears first in activity bar) // - registerMainMenuProvider diff --git a/src/cellLabelImporter/cellLabelImporter.ts b/src/cellLabelImporter/cellLabelImporter.ts index fb9516dac..64adedd91 100644 --- a/src/cellLabelImporter/cellLabelImporter.ts +++ b/src/cellLabelImporter/cellLabelImporter.ts @@ -11,7 +11,7 @@ import { importLabelsFromVscodeUri } from "./fileHandler"; import { matchCellLabels } from "./matcher"; import { copyToTempStorage, getColumnHeaders } from "./utils"; import { updateCellLabels } from "./updater"; -import { getNonce } from "../providers/dictionaryTable/utilities/getNonce"; +import { getNonce } from "../utils/getNonce"; import { safePostMessageToPanel } from "../utils/webviewUtils"; const DEBUG_CELL_LABEL_IMPORTER = false; diff --git a/src/codexMigrationTool/codexMigrationTool.ts b/src/codexMigrationTool/codexMigrationTool.ts index ce5a48436..3dbb65111 100644 --- a/src/codexMigrationTool/codexMigrationTool.ts +++ b/src/codexMigrationTool/codexMigrationTool.ts @@ -1,6 +1,6 @@ import * as vscode from "vscode"; import * as path from "path"; -import { getNonce } from "../providers/dictionaryTable/utilities/getNonce"; +import { getNonce } from "../utils/getNonce"; import { safePostMessageToPanel } from "../utils/webviewUtils"; import { matchMigrationCells } from "./matcher"; import { applyMigrationToTargetFile } from "./updater"; diff --git a/src/globalProvider.ts b/src/globalProvider.ts index d89f8a519..04f98e813 100644 --- a/src/globalProvider.ts +++ b/src/globalProvider.ts @@ -2,7 +2,7 @@ import vscode from "vscode"; import { CodexCellEditorProvider } from "./providers/codexCellEditorProvider/codexCellEditorProvider"; import { CustomWebviewProvider } from "./providers/parallelPassagesWebview/customParallelPassagesWebviewProvider"; import { GlobalContentType, GlobalMessage } from "../types"; -import { getNonce } from "./providers/dictionaryTable/utilities/getNonce"; +import { getNonce } from "./utils/getNonce"; import { safePostMessageToView } from "./utils/webviewUtils"; diff --git a/src/providers/codexCellEditorProvider/codexCellEditorProvider.ts b/src/providers/codexCellEditorProvider/codexCellEditorProvider.ts index 51991cab0..55f91dd88 100644 --- a/src/providers/codexCellEditorProvider/codexCellEditorProvider.ts +++ b/src/providers/codexCellEditorProvider/codexCellEditorProvider.ts @@ -26,7 +26,7 @@ import { initializeStateStore } from "../../stateStore"; import { SyncManager } from "../../projectManager/syncManager"; import bibleData from "../../../webviews/codex-webviews/src/assets/bible-books-lookup.json"; -import { getNonce } from "../dictionaryTable/utilities/getNonce"; +import { getNonce } from "../../utils/getNonce"; import { safePostMessageToPanel } from "../../utils/webviewUtils"; import path from "path"; import * as fs from "fs"; diff --git a/src/providers/dictionaryTable/DictionaryEditorProvider.ts b/src/providers/dictionaryTable/DictionaryEditorProvider.ts deleted file mode 100644 index 890e5082d..000000000 --- a/src/providers/dictionaryTable/DictionaryEditorProvider.ts +++ /dev/null @@ -1,359 +0,0 @@ -import * as vscode from "vscode"; -import { getWebviewHtml } from "../../utils/webviewTemplate"; -import { safePostMessageToPanel } from "../../utils/webviewUtils"; -import { - DictionaryPostMessages, - DictionaryReceiveMessages, - Dictionary, - DictionaryEntry, -} from "../../../types"; -import { getWorkSpaceUri } from "../../utils"; -import { isEqual } from "lodash"; -import { Database } from "fts5-sql-bundle"; -import { - getWords, - getDefinitions, - getPagedWords, - addWord, - deleteWord, - updateWord, -} from "../../sqldb"; - -type FetchPageResult = { - entries: DictionaryEntry[]; - total: number; - page: number; - pageSize: number; -}; -interface DictionaryDocument extends vscode.CustomDocument { - content: Dictionary; -} - -type PartialDictionaryEntry = Partial; - -export class DictionaryEditorProvider implements vscode.CustomTextEditorProvider { - private page: number = 1; - private pageSize: number = 100; - private searchQuery: string | undefined = undefined; - - public static readonly viewType = "codex.dictionaryEditor"; - private document: FetchPageResult | undefined; - private readonly onDidChangeCustomDocument = new vscode.EventEmitter< - vscode.CustomDocumentEditEvent - >(); - private fileWatcher: vscode.FileSystemWatcher | undefined; - private lastSentData: Dictionary | null = null; - - constructor(private readonly context: vscode.ExtensionContext) { } - - public static register(context: vscode.ExtensionContext): vscode.Disposable { - const provider = new DictionaryEditorProvider(context); - const providerRegistration = vscode.window.registerCustomEditorProvider( - DictionaryEditorProvider.viewType, - provider - ); - return providerRegistration; - } - - public async resolveCustomTextEditor( - document: vscode.TextDocument, - webviewPanel: vscode.WebviewPanel, - _token: vscode.CancellationToken - ): Promise { - this.document = await this.handleFetchPage(this.page, this.pageSize, this.searchQuery); - webviewPanel.webview.options = { - enableScripts: true, - }; - webviewPanel.webview.html = this.getHtmlForWebview(webviewPanel.webview); - - const updateWebview = () => { - const dictionaryContent = this.document; - console.log("sending dictionaryContent to webview", dictionaryContent); - safePostMessageToPanel(webviewPanel, { - command: "providerTellsWebviewToUpdateData", - data: dictionaryContent, - } as DictionaryReceiveMessages); - }; - - // Watch for changes in the project.dictionary file - const workspaceFolderUri = getWorkSpaceUri(); - if (workspaceFolderUri) { - const dictionaryUri = vscode.Uri.joinPath( - workspaceFolderUri, - "files", - "project.dictionary" - ); - this.fileWatcher = vscode.workspace.createFileSystemWatcher(dictionaryUri.fsPath); - - this.fileWatcher.onDidChange(() => { - this.refreshEditor(webviewPanel); - updateWebview(); - }); - } - - const changeDocumentSubscription = vscode.workspace.onDidChangeTextDocument((e) => { - if (e.document.uri.toString() === document.uri.toString()) { - updateWebview(); - } - }); - - webviewPanel.onDidDispose(() => { - if (this.fileWatcher) { - this.fileWatcher.dispose(); - } - changeDocumentSubscription.dispose(); - }); - - webviewPanel.webview.onDidReceiveMessage(async (e: DictionaryPostMessages) => { - switch (e.command) { - case "webviewTellsProviderToUpdateData": { - if (e.operation === "fetchPage" && e.pagination) { - this.page = e.pagination.page; - this.pageSize = e.pagination.pageSize; - this.searchQuery = e.pagination.searchQuery; - const pageData = await this.handleFetchPage( - e.pagination.page, - e.pagination.pageSize, - e.pagination.searchQuery - ); - - safePostMessageToPanel(webviewPanel, { - command: "providerTellsWebviewToUpdateData", - data: { - dictionaryData: { - id: "", - label: "", - metadata: {}, - }, - entries: pageData.entries, - total: pageData.total, - page: pageData.page, - pageSize: pageData.pageSize, - }, - } as DictionaryReceiveMessages); - break; - } - const db = (global as any).db as Database; - if (!db) { - throw new Error("SQLite database not initialized"); - } - - switch (e.operation) { - case "update": - // TODO: this is not updating the database because the table is not sending updates here - await updateWord({ - db, - id: e.entry.id, - headWord: e.entry.headWord, - definition: e.entry.definition, - authorId: "", // TODO: get authorId - }); - vscode.window.showInformationMessage(`✏️ "${e.entry.headWord}"`); - break; - - case "delete": - try { - await deleteWord({ db, id: e.entry.id }); - vscode.window.showInformationMessage(`🗑️ ✅`); - } catch (error) { - vscode.window.showErrorMessage(`Error deleting word: ${error}`); - } - break; - - case "add": - if (e.entry.headWord) { - // Only add if headWord is not empty - await addWord({ - db, - headWord: e.entry.headWord, - definition: e.entry.definition, - authorId: "", // TODO: get authorId - }); - vscode.window.showInformationMessage(`"${e.entry.headWord}" → 📖`); - } - break; - } - - // Notify webview of successful update if needed - // FIXME: this is not updating the webview because it is stale - const pageData = await this.handleFetchPage( - this.page, - this.pageSize, - this.searchQuery - ); - this.document = pageData; - safePostMessageToPanel(webviewPanel, { - command: "providerTellsWebviewToUpdateData", - data: pageData, - } as DictionaryReceiveMessages); - break; - } - case "webviewAsksProviderToConfirmRemove": { - console.log("confirmRemove received in DictionaryEditorProvider", e.count); - const confirmed = await vscode.window.showInformationMessage( - `Are you sure you want to remove ${e.count} item${e.count > 1 ? "s" : ""}?`, - { modal: true }, - "Yes", - "No" - ); - if (confirmed === "Yes") { - await this.updateTextDocument(document, e.data, webviewPanel); - safePostMessageToPanel(webviewPanel, { - command: "providerTellsWebviewRemoveConfirmed", - } as DictionaryReceiveMessages); - } - break; - } - case "callCommand": { - await vscode.commands.executeCommand(e.vscodeCommandName, ...e.args); - break; - } - } - }); - - updateWebview(); - } - - private getHtmlForWebview(webview: vscode.Webview): string { - // Note: CSS URIs are now handled by the webview template - return getWebviewHtml(webview, this.context, { - title: "Dictionary Editor", - scriptPath: ["EditableReactTable", "index.js"], - csp: `default-src 'none'; style-src ${webview.cspSource} 'unsafe-inline'; script-src 'nonce-\${nonce}'; connect-src ${webview.cspSource}; img-src ${webview.cspSource} https:; font-src ${webview.cspSource};` - }); - } - - private async updateTextDocument( - document: vscode.TextDocument, - dictionary: Dictionary, - webviewPanel: vscode.WebviewPanel - ) { - const db = (global as any).db as Database; - if (!db) { - throw new Error("SQLite database not initialized"); - } - - // Update SQLite database instead of file - dictionary.entries.forEach((entry) => { - db.run( - ` - INSERT OR REPLACE INTO entries (word, definition) - VALUES (?, ?) - `, - [entry.headWord, entry.definition || ""] - ); - }); - - // Notify webview of updates - safePostMessageToPanel(webviewPanel, { - command: "providerTellsWebviewToUpdateData", - data: this.document, - } as DictionaryReceiveMessages); - } - - - private async refreshEditor(webviewPanel: vscode.WebviewPanel) { - if (this.document) { - try { - const updatedContent = this.document; - console.log("updatedContent", updatedContent); - - // Compare with current entries - if (!this.areEntriesEqual(this.document.entries, updatedContent.entries)) { - // Update only if there are changes - this.document = updatedContent; - - // Notify the webview of the updated content - safePostMessageToPanel(webviewPanel, { - command: "providerTellsWebviewToUpdateData", - data: updatedContent, - } as DictionaryReceiveMessages); - - } - } catch (error) { - vscode.window.showErrorMessage(`Failed to refresh dictionary: ${error}`); - } - } - } - - // private parseEntriesFromJsonl(content: string): DictionaryEntry[] { - // return content - // .split("\n") - // .filter((line) => line.trim() !== "") - // .map((line) => ensureCompleteEntry(JSON.parse(line) as PartialDictionaryEntry)); - // } - - private areEntriesEqual(entries1: DictionaryEntry[], entries2: DictionaryEntry[]): boolean { - if (entries1.length !== entries2.length) return false; - return entries1.every( - (entry, index) => JSON.stringify(entry) === JSON.stringify(entries2[index]) - ); - } - - public saveCustomDocument( - document: Dictionary, - cancellation: vscode.CancellationToken - ): Thenable { - // Serialize the document content - const content = this.serializeDictionary(document); - - // Use vscode.workspace.fs to write the file - const encoder = new TextEncoder(); - const array = encoder.encode(content); - const workspaceFolderUri = getWorkSpaceUri(); - if (!workspaceFolderUri) { - console.error("Workspace folder not found. Aborting save of dictionary."); - return Promise.reject(new Error("Workspace folder not found")); - } - const metadataUri = vscode.Uri.joinPath(workspaceFolderUri, "metadata.json"); - const dictionaryUri = vscode.Uri.joinPath( - workspaceFolderUri, - "files", - "project.dictionary" - ); - - return vscode.workspace.fs.stat(metadataUri).then( - () => { - // metadata.json exists, proceed with writing the dictionary - return vscode.workspace.fs.writeFile(dictionaryUri, array); - }, - () => { - // metadata.json doesn't exist, abort the save - console.error("metadata.json not found. Aborting save of dictionary."); - return Promise.reject(new Error("metadata.json not found")); - } - ); - } - - private serializeDictionary(document: Dictionary): string { - // Convert the dictionary entries to JSON Lines - return document.entries.map((entry) => JSON.stringify(entry)).join("\n"); - } - - private hasDataChanged(newData: Dictionary): boolean { - if (!this.lastSentData) { - return true; - } - return !isEqual(this.lastSentData, newData); - } - - private async handleFetchPage( - page: number, - pageSize: number, - searchQuery?: string - ): Promise { - const db = (global as any).db as Database; - if (!db) { - throw new Error("SQLite database not initialized"); - } - - const { entries, total } = getPagedWords({ db, page, pageSize, searchQuery }); - - return { - entries, - total, - page, - pageSize, - }; - } -} diff --git a/src/providers/dictionaryTable/dictionaryTableProvider.ts b/src/providers/dictionaryTable/dictionaryTableProvider.ts deleted file mode 100644 index 57e10cee6..000000000 --- a/src/providers/dictionaryTable/dictionaryTableProvider.ts +++ /dev/null @@ -1,55 +0,0 @@ -import * as vscode from "vscode"; -import { DictionaryEditorProvider } from "./DictionaryEditorProvider"; -import { getWorkSpaceUri } from "../../utils"; - -export function registerDictionaryTableProvider(context: vscode.ExtensionContext) { - // Register the DictionaryEditorProvider - const providerRegistration = vscode.window.registerCustomEditorProvider( - DictionaryEditorProvider.viewType, - new DictionaryEditorProvider(context), - { - webviewOptions: { enableFindWidget: true, retainContextWhenHidden: true }, - supportsMultipleEditorsPerDocument: false, - } - ); - - // Add the provider registration to the extension context - context.subscriptions.push(providerRegistration); - - // Register a command to open the dictionary editor - const openDictionaryEditorCommand = vscode.commands.registerCommand( - "dictionaryTable.showDictionaryTable", - async () => { - const workspaceUri = getWorkSpaceUri(); - if (!workspaceUri) { - vscode.window.showErrorMessage( - "No workspace found. Please open a workspace to access the dictionary." - ); - return; - } - const dictionaryUri = vscode.Uri.joinPath(workspaceUri, "files", "project.dictionary"); - - try { - await vscode.commands.executeCommand( - "vscode.openWith", - dictionaryUri, - DictionaryEditorProvider.viewType - ); - } catch (error) { - vscode.window.showErrorMessage(`Failed to open dictionary: ${error}`); - } - } - ); - - // Add the command to the extension context - context.subscriptions.push(openDictionaryEditorCommand); - - // Register the 'dictionaryTable.dictionaryUpdated' command so the LSP callback won't fail - const dictionaryUpdatedCommand = vscode.commands.registerCommand( - "dictionaryTable.dictionaryUpdated", - () => { - // No-op; the file system watcher on project.dictionary will handle refreshes - } - ); - context.subscriptions.push(dictionaryUpdatedCommand); -} diff --git a/src/providers/dictionaryTable/utilities/getUri.ts b/src/providers/dictionaryTable/utilities/getUri.ts deleted file mode 100644 index c50e6230b..000000000 --- a/src/providers/dictionaryTable/utilities/getUri.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Uri, Webview } from "vscode"; - -/** - * A helper function which will get the webview URI of a given file or resource. - * - * @remarks This URI can be used within a webview's HTML as a link to the - * given file/resource. - * - * @param webview A reference to the extension webview - * @param extensionUri The URI of the directory containing the extension - * @param pathList An array of strings representing the path to a file/resource - * @returns A URI pointing to the file/resource - */ -export function getUri(webview: Webview, extensionUri: Uri, pathList: string[]) { - return webview.asWebviewUri(Uri.joinPath(extensionUri, ...pathList)); -} diff --git a/src/providers/dictionaryTable/utilities/FileHandler.ts b/src/utils/fileHandler.ts similarity index 100% rename from src/providers/dictionaryTable/utilities/FileHandler.ts rename to src/utils/fileHandler.ts diff --git a/src/providers/dictionaryTable/utilities/getNonce.ts b/src/utils/getNonce.ts similarity index 100% rename from src/providers/dictionaryTable/utilities/getNonce.ts rename to src/utils/getNonce.ts diff --git a/src/utils/webviewTemplate.ts b/src/utils/webviewTemplate.ts index c16847032..551070556 100644 --- a/src/utils/webviewTemplate.ts +++ b/src/utils/webviewTemplate.ts @@ -1,5 +1,5 @@ import * as vscode from "vscode"; -import { getNonce } from "../providers/dictionaryTable/utilities/getNonce"; +import { getNonce } from "./getNonce"; interface WebviewTemplateOptions { title?: string; From 558165c712e15e62ed85ffdb56a332b683961197 Mon Sep 17 00:00:00 2001 From: dadukhankevin Date: Wed, 4 Feb 2026 14:22:48 -0600 Subject: [PATCH 09/13] I've removed all the Bible download stuff --- src/utils/dictionaryUtils/client.ts | 24 - src/utils/dictionaryUtils/common.ts | 45 - src/utils/ebible/ebibleCorpusUtils.ts | 57640 ---------------- .../EbibleDownloadImporterForm.tsx | 4 +- .../components/EbibleDownloadForm.tsx | 337 - .../components/ExistingBiblesCheck.tsx | 141 - 6 files changed, 1 insertion(+), 58190 deletions(-) delete mode 100644 src/utils/dictionaryUtils/client.ts delete mode 100644 src/utils/dictionaryUtils/common.ts delete mode 100644 src/utils/ebible/ebibleCorpusUtils.ts delete mode 100644 webviews/codex-webviews/src/NewSourceUploader/importers/ebibleCorpus/components/EbibleDownloadForm.tsx delete mode 100644 webviews/codex-webviews/src/NewSourceUploader/importers/ebibleCorpus/components/ExistingBiblesCheck.tsx diff --git a/src/utils/dictionaryUtils/client.ts b/src/utils/dictionaryUtils/client.ts deleted file mode 100644 index 6c13f71dd..000000000 --- a/src/utils/dictionaryUtils/client.ts +++ /dev/null @@ -1,24 +0,0 @@ -import * as vscode from "vscode"; -import { Dictionary } from "../../../types"; -import { serializeDictionaryEntries, deserializeDictionaryEntries } from "./common"; - -export async function readDictionaryClient(uri: vscode.Uri): Promise { - try { - const content = await vscode.workspace.fs.readFile(uri); - const entries = deserializeDictionaryEntries(new TextDecoder().decode(content)); - return { - id: "project", - label: "Project", - entries, - metadata: {}, - }; - } catch (error) { - console.error("Error reading dictionary:", error); - return { id: "project", label: "Project", entries: [], metadata: {} }; - } -} - -export async function saveDictionaryClient(uri: vscode.Uri, dictionary: Dictionary): Promise { - const content = serializeDictionaryEntries(dictionary.entries); - await vscode.workspace.fs.writeFile(uri, Buffer.from(content, "utf-8")); -} diff --git a/src/utils/dictionaryUtils/common.ts b/src/utils/dictionaryUtils/common.ts deleted file mode 100644 index 553bfaea5..000000000 --- a/src/utils/dictionaryUtils/common.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { DictionaryEntry } from "../../../types"; - -export function serializeDictionaryEntries(entries: DictionaryEntry[]): string { - return entries.map((entry) => JSON.stringify(entry)).join("\n") + "\n"; -} - -export function deserializeDictionaryEntries(content: string): DictionaryEntry[] { - return content - .split("\n") - .filter((line) => line.trim() !== "") - .map((line) => JSON.parse(line)); -} - -export function repairDictionaryContent(content: string): string { - return content.replace(/}\s*{/g, "}\n{"); -} - -// export function ensureCompleteEntry(entry: Partial): DictionaryEntry { -// let headWord = entry.headWord || ""; -// if (!headWord) { -// headWord = entry.id || "N/A"; -// } - -// return { -// id: entry.id || generateUniqueId(), -// headWord: headWord, -// definition: entry.definition || "", -// isUserEntry: entry.isUserEntry || false, -// authorId: entry.authorId || "", -// }; -// } - -export function createDictionaryEntry(word: string): DictionaryEntry { - return { - id: generateUniqueId(), - headWord: word, - definition: "", - isUserEntry: false, - authorId: "", - }; -} - -function generateUniqueId(): string { - return Math.random().toString(36).substr(2, 9); -} diff --git a/src/utils/ebible/ebibleCorpusUtils.ts b/src/utils/ebible/ebibleCorpusUtils.ts deleted file mode 100644 index 898d0162e..000000000 --- a/src/utils/ebible/ebibleCorpusUtils.ts +++ /dev/null @@ -1,57640 +0,0 @@ -export interface LanguageInfo { - code: string; - name: string; - bibles: ExtendedMetadata[]; -} - -export function getAvailableLanguages(): LanguageInfo[] { - // Create a map to store unique languages and their Bibles - const languageMap = new Map(); - - // Get all extended metadata - const allMetadata = extendedEbibleCorpusMetadata; - - // Group Bibles by language code - allMetadata.forEach((metadata) => { - const { languageCode, languageNameInEnglish, languageName } = metadata; - if (!languageCode) return; - - if (!languageMap.has(languageCode)) { - languageMap.set(languageCode, { - code: languageCode, - name: languageNameInEnglish || languageName || languageCode, - bibles: [], - }); - } - - const langInfo = languageMap.get(languageCode)!; - langInfo.bibles.push(metadata); - }); - - // Convert to array and sort by name - return Array.from(languageMap.values()).sort((a, b) => a.name.localeCompare(b.name)); -} - -export function getBiblesForLanguage(languageCode: string): ExtendedMetadata[] { - return extendedEbibleCorpusMetadata.filter( - (metadata) => metadata.languageCode === languageCode - ); -} - -export function getEBCorpusMetadataByLanguageCode(languageCode: string): EbibleCorpusMetadata[] { - if (languageCode === "") { - return eBibleCorpusMetadata; - } - - return eBibleCorpusMetadata - .filter((metadata) => metadata.code === languageCode) - .map((metadata) => { - return { - ...metadata, - extendedMetadata: [ - ...extendedEbibleCorpusMetadata.filter( - (extMetadata: ExtendedMetadata) => - extMetadata.languageCode === metadata.code - ), - ], - }; - }); -} - -export function getExtendedEbibleMetadataByLanguageNameOrCode( - languageName?: string, - languageCode?: string -): ExtendedMetadata[] { - return extendedEbibleCorpusMetadata.filter((metadata) => { - if (languageName) { - return metadata.languageName === languageName; - } - if (languageCode) { - return metadata.languageCode === languageCode; - } - return false; - }); -} - -export interface EbibleCorpusMetadata { - file: string; - code: string; - lang: string; - family: string; - country: string; - Total: number; - Books: number; - OT: number; - NT: number; - DT: number; -} - -export interface ExtendedMetadata { - languageCode: string; - translationId?: string | null; - languageName?: string | null; - languageNameInEnglish?: string | null; - dialect?: string | null; - homeDomain?: string | null; - title?: string | null; - description?: string | null; - Redistributable?: boolean | null; - Copyright?: string | null; - UpdateDate?: string | null; - publicationURL?: string | null; - OTbooks?: number | null; - OTchapters?: number | null; - OTverses?: number | null; - NTbooks?: number | null; - NTchapters?: number | null; - NTverses?: number | null; - DCbooks?: number | null; - DCchapters?: number | null; - DCverses?: number | null; - FCBHID?: string | null; - Certified?: boolean | null; - inScript?: string | null; - swordName?: string | null; - rodCode?: number | null; - textDirection?: string | null; - downloadable?: boolean | null; - font?: string | null; - shortTitle?: string | null; - PODISBN?: string | null; - script?: string | null; - sourceDate?: string | null; -} - -const eBibleCorpusMetadata: EbibleCorpusMetadata[] = [ - { - file: "aai-aai.txt", - code: "aai", - lang: "Miniafia Oyan", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "aak-aak.txt", - code: "aak", - lang: "Ankave", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "aau-aau.txt", - code: "aau", - lang: "Abau", - family: "Sepik", - country: "Papua New Guinea", - Total: 7946, - Books: 27, - OT: 0, - NT: 7946, - DT: 0, - }, - { - file: "aaz-aaz.txt", - code: "aaz", - lang: "Amarasi", - family: "Austronesian", - country: "Indonesia", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "abt-abt-maprik.txt", - code: "abt", - lang: "Ambulas", - family: "Sepik", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "abt-abt-wosera.txt", - code: "abt", - lang: "Ambulas", - family: "Sepik", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "abx-abx.txt", - code: "abx", - lang: "Inabaknon", - family: "Austronesian", - country: "Philippines", - Total: 7940, - Books: 27, - OT: 0, - NT: 7940, - DT: 0, - }, - { - file: "aby-aby.txt", - code: "aby", - lang: "Aneme Wake", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "acf-acfNT.txt", - code: "acf", - lang: "Lesser Antillean French Creole", - family: "Creole", - country: "Saint Lucia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "acr-acr-acc.txt", - code: "acr", - lang: "Achi", - family: "Mayan", - country: "Guatemala", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "acr-acrNNT.txt", - code: "acr", - lang: "Achi", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "acr-acrTNT.txt", - code: "acr", - lang: "Achi", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "acu-acuNT.txt", - code: "acu", - lang: "Achuar-Shiwiar", - family: "Jivaroan", - country: "Ecuador", - Total: 12006, - Books: 31, - OT: 4050, - NT: 7956, - DT: 0, - }, - { - file: "adz-adz.txt", - code: "adz", - lang: "Adzera", - family: "Austronesian", - country: "Papua New Guinea", - Total: 3655, - Books: 5, - OT: 1581, - NT: 2074, - DT: 0, - }, - { - file: "aer-aer.txt", - code: "aer", - lang: "Arrernte, Eastern", - family: "Australian", - country: "Australia", - Total: 10165, - Books: 30, - OT: 2208, - NT: 7957, - DT: 0, - }, - { - file: "aey-aey.txt", - code: "aey", - lang: "Amele", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "agd-agd.txt", - code: "agd", - lang: "Agarabi", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "agg-agg.txt", - code: "agg", - lang: "Angor", - family: "Senagi", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "agm-agm.txt", - code: "agm", - lang: "Angaataha", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "agn-agn.txt", - code: "agn", - lang: "Agutaynen", - family: "Austronesian", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "agr-agr.txt", - code: "agr", - lang: "Awaj\u00fan", - family: "Jivaroan", - country: "Peru", - Total: 17061, - Books: 57, - OT: 9104, - NT: 7957, - DT: 0, - }, - { - file: "agt-agt.txt", - code: "agt", - lang: "Agta, Central Cagayan", - family: "Austronesian", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "agu-aguBl.txt", - code: "agu", - lang: "Awakateko", - family: "Mayan", - country: "Guatemala", - Total: 20062, - Books: 53, - OT: 12105, - NT: 7957, - DT: 0, - }, - { - file: "aia-aia.txt", - code: "aia", - lang: "Arosi", - family: "Austronesian", - country: "Solomon Islands", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "aii-aii.txt", - code: "aii", - lang: "Assyrian Neo-Aramaic", - family: "Afro-Asiatic", - country: "Iraq", - Total: 10417, - Books: 28, - OT: 2460, - NT: 7957, - DT: 0, - }, - { - file: "aka-aka.txt", - code: "aka", - lang: "Akan", - family: "Niger-Congo", - country: "Ghana", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "ake-akeNT.txt", - code: "ake", - lang: "Akawaio", - family: "Cariban", - country: "Guyana", - Total: 7951, - Books: 27, - OT: 0, - NT: 7951, - DT: 0, - }, - { - file: "alp-alpNT.txt", - code: "alp", - lang: "Alune", - family: "Austronesian", - country: "Indonesia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "alq-alqALGNT.txt", - code: "alq", - lang: "Algonquin", - family: "Algic", - country: "Canada", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "als-alsSHQ.txt", - code: "als", - lang: "Albanian, Tosk", - family: "Indo-European", - country: "Albania", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "aly-aly.txt", - code: "aly", - lang: "Alyawarr", - family: "Australian", - country: "Australia", - Total: 8892, - Books: 22, - OT: 2386, - NT: 6506, - DT: 0, - }, - { - file: "ame-ameNT.txt", - code: "ame", - lang: "Yanesha\u2019", - family: "Maipurean", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "amf-amf.txt", - code: "amf", - lang: "Hamer-Banna", - family: "Afro-Asiatic", - country: "Ethiopia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "amk-amk.txt", - code: "amk", - lang: "Ambai", - family: "Austronesian", - country: "Indonesia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "amm-amm.txt", - code: "amm", - lang: "Sawiyanu", - family: "Arai (Left May)", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "amn-amn-amanab.txt", - code: "amn", - lang: "Amanab", - family: "Border", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "amn-amn-n.txt", - code: "amn", - lang: "Amanab", - family: "Border", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "amo-amo.txt", - code: "amo", - lang: "Amo", - family: "Niger-Congo", - country: "Nigeria", - Total: 7953, - Books: 27, - OT: 0, - NT: 7953, - DT: 0, - }, - { - file: "amp-amp.txt", - code: "amp", - lang: "Alamblak", - family: "Sepik", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "amr-amrNT.txt", - code: "amr", - lang: "Amarakaeri", - family: "Har\u00e1kmbut", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "amu-amuNT.txt", - code: "amu", - lang: "Amuzgo, Guerrero", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "amx-amx.txt", - code: "amx", - lang: "Anmatyerre", - family: "Australian", - country: "Australia", - Total: 4225, - Books: 11, - OT: 0, - NT: 4225, - DT: 0, - }, - { - file: "anh-anh.txt", - code: "anh", - lang: "Nend", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 678, - Books: 1, - OT: 0, - NT: 678, - DT: 0, - }, - { - file: "anv-anvNT.txt", - code: "anv", - lang: "Denya", - family: "Niger-Congo", - country: "Cameroon", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "aoi-aoi.txt", - code: "aoi", - lang: "Anindilyakwa", - family: "Australian", - country: "Australia", - Total: 3987, - Books: 7, - OT: 1581, - NT: 2406, - DT: 0, - }, - { - file: "aoj-aoj-filifita.txt", - code: "aoj", - lang: "Mufian", - family: "Torricelli", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "aoj-aoj.txt", - code: "aoj", - lang: "Mufian", - family: "Torricelli", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "aom-aom.txt", - code: "aom", - lang: "\u00d6mie", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "aon-aon.txt", - code: "aon", - lang: "Weri", - family: "Torricelli", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "apb-apb.txt", - code: "apb", - lang: "Sa\u2019a", - family: "Austronesian", - country: "Solomon Islands", - Total: 7944, - Books: 27, - OT: 0, - NT: 7944, - DT: 0, - }, - { - file: "ape-apeB.txt", - code: "ape", - lang: "Bukiyip", - family: "Torricelli", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ape-apec.txt", - code: "ape", - lang: "Bukiyip", - family: "Torricelli", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "apn-apnNT.txt", - code: "apn", - lang: "Apinay\u00e9", - family: "Jean", - country: "Brazil", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "apr-apr.txt", - code: "apr", - lang: "Arop-Lokep", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "apu-apuNT.txt", - code: "apu", - lang: "Apurin\u00e3", - family: "Maipurean", - country: "Brazil", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "apw-apwNT.txt", - code: "apw", - lang: "Apache, Western", - family: "Eyak-Athabaskan", - country: "United States", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "apz-apz.txt", - code: "apz", - lang: "Safeyoka", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "arb-arb-vd.txt", - code: "arb", - lang: "Arabic, Standard", - family: "Afro-Asiatic", - country: "Saudi Arabia", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "arb-arbnav.txt", - code: "arb", - lang: "Arabic, Standard", - family: "Afro-Asiatic", - country: "Saudi Arabia", - Total: 31096, - Books: 66, - OT: 23141, - NT: 7955, - DT: 0, - }, - { - file: "are-are.txt", - code: "are", - lang: "Arrarnta, Western", - family: "Australian", - country: "Australia", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "arl-arlNT.txt", - code: "arl", - lang: "Arabela", - family: "Zaparoan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "arn-arnNT.txt", - code: "arn", - lang: "Mapudungun", - family: "Mapudungu", - country: "Chile", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "arp-arp.txt", - code: "arp", - lang: "Arapaho", - family: "Algic", - country: "United States", - Total: 1151, - Books: 1, - OT: 0, - NT: 1151, - DT: 0, - }, - { - file: "asm-asmfb.txt", - code: "asm", - lang: "Assamese", - family: "Indo-European", - country: "India", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "aso-aso.txt", - code: "aso", - lang: "Dano", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ata-ata.txt", - code: "ata", - lang: "Pele-Ata", - family: "Yele-West New Britain", - country: "Papua New Guinea", - Total: 9535, - Books: 29, - OT: 1581, - NT: 7954, - DT: 0, - }, - { - file: "atb-atbNT.txt", - code: "atb", - lang: "Zaiwa", - family: "Sino-Tibetan", - country: "China", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "atd-atdNT.txt", - code: "atd", - lang: "Manobo, Ata", - family: "Austronesian", - country: "Philippines", - Total: 7954, - Books: 27, - OT: 0, - NT: 7954, - DT: 0, - }, - { - file: "atg-atgNT.txt", - code: "atg", - lang: "Ivbie North-Okpela-Arhe", - family: "Niger-Congo", - country: "Nigeria", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "att-att.txt", - code: "att", - lang: "Atta, Pamplona", - family: "Austronesian", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "auc-aucNT.txt", - code: "auc", - lang: "Waorani", - family: "Language isolate", - country: "Ecuador", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "aui-aui.txt", - code: "aui", - lang: "Anuki", - family: "Austronesian", - country: "Papua New Guinea", - Total: 4168, - Books: 30, - OT: 2486, - NT: 1682, - DT: 0, - }, - { - file: "auy-auy.txt", - code: "auy", - lang: "Awiyaana", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "avt-avt.txt", - code: "avt", - lang: "Au", - family: "Torricelli", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "awb-awb.txt", - code: "awb", - lang: "Awa", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "awk-awk.txt", - code: "awk", - lang: "Awabakal", - family: "Australian", - country: "Australia", - Total: 1136, - Books: 1, - OT: 0, - NT: 1136, - DT: 0, - }, - { - file: "awx-awx.txt", - code: "awx", - lang: "Awara", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 1666, - Books: 3, - OT: 1666, - NT: 0, - DT: 0, - }, - { - file: "azb-azb.txt", - code: "azb", - lang: "Azerbaijani, South", - family: "Turkic", - country: "Iran, Islamic Republic of", - Total: 31084, - Books: 66, - OT: 23142, - NT: 7942, - DT: 0, - }, - { - file: "azg-azgNT.txt", - code: "azg", - lang: "Amuzgo, San Pedro Amuzgos", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "azz-azzNT.txt", - code: "azz", - lang: "Nahuatl, Highland Puebla", - family: "Uto-Aztecan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "bao-baoNT.txt", - code: "bao", - lang: "Waimaha", - family: "Tucanoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bba-bba.txt", - code: "bba", - lang: "Baatonum", - family: "Niger-Congo", - country: "Benin", - Total: 31169, - Books: 66, - OT: 23212, - NT: 7957, - DT: 0, - }, - { - file: "bbb-bbb.txt", - code: "bbb", - lang: "Barai", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 13139, - Books: 33, - OT: 5182, - NT: 7957, - DT: 0, - }, - { - file: "bbr-bbr.txt", - code: "bbr", - lang: "Girawa", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bch-bch.txt", - code: "bch", - lang: "Bariai", - family: "Austronesian", - country: "Papua New Guinea", - Total: 10703, - Books: 29, - OT: 2746, - NT: 7957, - DT: 0, - }, - { - file: "bco-bco.txt", - code: "bco", - lang: "Kaluli", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 1650, - Books: 11, - OT: 0, - NT: 1650, - DT: 0, - }, - { - file: "bdd-bdd.txt", - code: "bdd", - lang: "Bunama", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bea-bea.txt", - code: "bea", - lang: "Beaver", - family: "Eyak-Athabaskan", - country: "Canada", - Total: 678, - Books: 1, - OT: 0, - NT: 678, - DT: 0, - }, - { - file: "bef-bef.txt", - code: "bef", - lang: "Benabena", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bel-bel.txt", - code: "bel", - lang: "Belarusian", - family: "Indo-European", - country: "Belarus", - Total: 31160, - Books: 66, - OT: 23205, - NT: 7955, - DT: 0, - }, - { - file: "bel-beln.txt", - code: "bel", - lang: "Belarusian", - family: "Indo-European", - country: "Belarus", - Total: 13085, - Books: 31, - OT: 5129, - NT: 7956, - DT: 0, - }, - { - file: "ben-ben2017.txt", - code: "ben", - lang: "Bengali", - family: "Indo-European", - country: "Bangladesh", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "beo-beo.txt", - code: "beo", - lang: "Bedamuni", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 31100, - Books: 66, - OT: 23143, - NT: 7957, - DT: 0, - }, - { - file: "beu-beu.txt", - code: "beu", - lang: "Blagar", - family: "Trans-New Guinea", - country: "Indonesia", - Total: 3217, - Books: 3, - OT: 1533, - NT: 1684, - DT: 0, - }, - { - file: "bgs-bgs.txt", - code: "bgs", - lang: "Tagabawa", - family: "Austronesian", - country: "Philippines", - Total: 10073, - Books: 30, - OT: 2117, - NT: 7956, - DT: 0, - }, - { - file: "bgt-bgt.txt", - code: "bgt", - lang: "Bughotu", - family: "Austronesian", - country: "Solomon Islands", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bhg-bhg.txt", - code: "bhg", - lang: "Binandere", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 5573, - Books: 14, - OT: 0, - NT: 5573, - DT: 0, - }, - { - file: "bhl-bhl.txt", - code: "bhl", - lang: "Bimin", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 9819, - Books: 31, - OT: 1862, - NT: 7957, - DT: 0, - }, - { - file: "big-big.txt", - code: "big", - lang: "Biangai", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bjk-bjk.txt", - code: "bjk", - lang: "Barok", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7950, - Books: 27, - OT: 0, - NT: 7950, - DT: 0, - }, - { - file: "bjp-bjp.txt", - code: "bjp", - lang: "Fanamaket", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bjr-bjr.txt", - code: "bjr", - lang: "Binumarien", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 14239, - Books: 32, - OT: 6287, - NT: 7952, - DT: 0, - }, - { - file: "bjv-bjvNT.txt", - code: "bjv", - lang: "Bedjond", - family: "Nilo-Saharan", - country: "Chad", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bjz-bjz.txt", - code: "bjz", - lang: "Baruga", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bkd-bkd.txt", - code: "bkd", - lang: "Binukid", - family: "Austronesian", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bki-bki.txt", - code: "bki", - lang: "Baki", - family: "Austronesian", - country: "Vanuatu", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bkq-bkqNT.txt", - code: "bkq", - lang: "Bakair\u00ed", - family: "Cariban", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bkx-bkx.txt", - code: "bkx", - lang: "Baikeno", - family: "Austronesian", - country: "Timor-Leste", - Total: 678, - Books: 1, - OT: 0, - NT: 678, - DT: 0, - }, - { - file: "bla-bla.txt", - code: "bla", - lang: "Blackfoot", - family: "Algic", - country: "Canada", - Total: 1071, - Books: 1, - OT: 0, - NT: 1071, - DT: 0, - }, - { - file: "blw-blw.txt", - code: "blw", - lang: "Balangao", - family: "Austronesian", - country: "Philippines", - Total: 7953, - Books: 27, - OT: 0, - NT: 7953, - DT: 0, - }, - { - file: "blz-blzNT.txt", - code: "blz", - lang: "Balantak", - family: "Austronesian", - country: "Indonesia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bmh-bmh.txt", - code: "bmh", - lang: "Kein", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bmk-bmk.txt", - code: "bmk", - lang: "Ghayavi", - family: "Austronesian", - country: "Papua New Guinea", - Total: 678, - Books: 1, - OT: 0, - NT: 678, - DT: 0, - }, - { - file: "bmr-bmrNT.txt", - code: "bmr", - lang: "Muinane", - family: "Witotoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bmu-bmu.txt", - code: "bmu", - lang: "Somba-Siawari", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 9623, - Books: 30, - OT: 1666, - NT: 7957, - DT: 0, - }, - { - file: "bnp-bnp.txt", - code: "bnp", - lang: "Bola", - family: "Austronesian", - country: "Papua New Guinea", - Total: 14600, - Books: 35, - OT: 6643, - NT: 7957, - DT: 0, - }, - { - file: "boa-boaNT.txt", - code: "boa", - lang: "Bora", - family: "Witotoan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "boj-boj.txt", - code: "boj", - lang: "Anjam", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "boj-boj2014.txt", - code: "boj", - lang: "Anjam", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bon-bon.txt", - code: "bon", - lang: "Bine", - family: "Eastern Trans-Fly", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "box-boxNT.txt", - code: "box", - lang: "Buamu", - family: "Niger-Congo", - country: "Burkina Faso", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bpr-bpr.txt", - code: "bpr", - lang: "Blaan, Koronadal", - family: "Austronesian", - country: "Philippines", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "bps-bps.txt", - code: "bps", - lang: "Blaan, Sarangani", - family: "Austronesian", - country: "Philippines", - Total: 11584, - Books: 33, - OT: 3627, - NT: 7957, - DT: 0, - }, - { - file: "bqc-bqcsim.txt", - code: "bqc", - lang: "Boko", - family: "Niger-Congo", - country: "Benin", - Total: 31169, - Books: 66, - OT: 23212, - NT: 7957, - DT: 0, - }, - { - file: "bqp-bqp.txt", - code: "bqp", - lang: "Bis\u00e3", - family: "Niger-Congo", - country: "Nigeria", - Total: 25750, - Books: 65, - OT: 17793, - NT: 7957, - DT: 0, - }, - { - file: "bre-breBRG.txt", - code: "bre", - lang: "Breton", - family: "Indo-European", - country: "France", - Total: 3779, - Books: 4, - OT: 0, - NT: 3779, - DT: 0, - }, - { - file: "bsj-bsj.txt", - code: "bsj", - lang: "Bangwinji", - family: "Niger-Congo", - country: "Nigeria", - Total: 7836, - Books: 26, - OT: 0, - NT: 7836, - DT: 0, - }, - { - file: "bsn-bsnNT.txt", - code: "bsn", - lang: "Barasana-Eduria", - family: "Tucanoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bsp-bsp.txt", - code: "bsp", - lang: "Baga Sitemu", - family: "Niger-Congo", - country: "Guinea", - Total: 4540, - Books: 6, - OT: 2275, - NT: 2265, - DT: 0, - }, - { - file: "bss-bssNT.txt", - code: "bss", - lang: "Akoose", - family: "Niger-Congo", - country: "Cameroon", - Total: 7941, - Books: 27, - OT: 0, - NT: 7941, - DT: 0, - }, - { - file: "buk-buk.txt", - code: "buk", - lang: "Bugawac", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bus-bus.txt", - code: "bus", - lang: "Bokobaru", - family: "Niger-Congo", - country: "Nigeria", - Total: 19427, - Books: 49, - OT: 11470, - NT: 7957, - DT: 0, - }, - { - file: "bvd-bvd.txt", - code: "bvd", - lang: "Baeggu", - family: "Austronesian", - country: "Solomon Islands", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bvr-bvr.txt", - code: "bvr", - lang: "Burarra", - family: "Australian", - country: "Australia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bxh-bxh.txt", - code: "bxh", - lang: "Buhutu", - family: "Austronesian", - country: "Papua New Guinea", - Total: 4280, - Books: 31, - OT: 2596, - NT: 1684, - DT: 0, - }, - { - file: "byr-byr-w.txt", - code: "byr", - lang: "Yipma", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 136, - Books: 4, - OT: 0, - NT: 136, - DT: 0, - }, - { - file: "byr-byr.txt", - code: "byr", - lang: "Yipma", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "byx-byx.txt", - code: "byx", - lang: "Qaqet", - family: "East New Britain", - country: "Papua New Guinea", - Total: 8042, - Books: 28, - OT: 85, - NT: 7957, - DT: 0, - }, - { - file: "bzd-bzdNTpo.txt", - code: "bzd", - lang: "Bribri", - family: "Chibchan", - country: "Costa Rica", - Total: 10077, - Books: 30, - OT: 2121, - NT: 7956, - DT: 0, - }, - { - file: "bzh-bzh.txt", - code: "bzh", - lang: "Buang, Mapos", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "bzj-bzj.txt", - code: "bzj", - lang: "Belize English Creole", - family: "Creole", - country: "Belize", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "caa-caa.txt", - code: "caa", - lang: "Ch\u2019orti\u2019", - family: "Mayan", - country: "Guatemala", - Total: 12209, - Books: 34, - OT: 4253, - NT: 7956, - DT: 0, - }, - { - file: "cab-cabNT.txt", - code: "cab", - lang: "Garifuna", - family: "Maipurean", - country: "Honduras", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cac-cac.txt", - code: "cac", - lang: "Chuj", - family: "Mayan", - country: "Guatemala", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "caf-cafNT.txt", - code: "caf", - lang: "Carrier, Southern", - family: "Eyak-Athabaskan", - country: "Canada", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cak-cak.txt", - code: "cak", - lang: "Kaqchikel", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cak-cakCNT.txt", - code: "cak", - lang: "Kaqchikel", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cak-cakENT.txt", - code: "cak", - lang: "Kaqchikel", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cak-cakNT.txt", - code: "cak", - lang: "Kaqchikel", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cak-cakSNT.txt", - code: "cak", - lang: "Kaqchikel", - family: "Mayan", - country: "Guatemala", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "cak-cakWNT.txt", - code: "cak", - lang: "Kaqchikel", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cak-cakYNT.txt", - code: "cak", - lang: "Kaqchikel", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cao-caoNT.txt", - code: "cao", - lang: "Ch\u00e1cobo", - family: "Panoan", - country: "Bolivia, Plurinational State of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cap-capNT.txt", - code: "cap", - lang: "Chipaya", - family: "Chipaya-Uru", - country: "Bolivia, Plurinational State of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "car-carNT.txt", - code: "car", - lang: "Carib", - family: "Cariban", - country: "Venezuela, Bolivarian Republic of", - Total: 7942, - Books: 27, - OT: 0, - NT: 7942, - DT: 0, - }, - { - file: "cav-cavNT.txt", - code: "cav", - lang: "Cavine\u00f1a", - family: "Tacanan", - country: "Bolivia, Plurinational State of", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "cax-caxNT.txt", - code: "cax", - lang: "Chiquitano", - family: "Language isolate", - country: "Bolivia, Plurinational State of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cbc-cbcNT.txt", - code: "cbc", - lang: "Carapana", - family: "Tucanoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cbi-cbiNTpo.txt", - code: "cbi", - lang: "Chachi", - family: "Barbacoan", - country: "Ecuador", - Total: 10689, - Books: 29, - OT: 2746, - NT: 7943, - DT: 0, - }, - { - file: "cbk-cbk.txt", - code: "cbk", - lang: "Chavacano", - family: "Creole", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cbr-cbrNT.txt", - code: "cbr", - lang: "Kakataibo-Kashibo", - family: "Panoan", - country: "Peru", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "cbs-cbsNT.txt", - code: "cbs", - lang: "Kashinawa", - family: "Panoan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cbt-cbtNTpo.txt", - code: "cbt", - lang: "Shawi", - family: "Cahuapanan", - country: "Peru", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "cbu-cbuNT.txt", - code: "cbu", - lang: "Kandozi-Chapra", - family: "Language isolate", - country: "Peru", - Total: 16231, - Books: 52, - OT: 8274, - NT: 7957, - DT: 0, - }, - { - file: "cbv-cbv.txt", - code: "cbv", - lang: "Cacua", - family: "Puinavean", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cco-ccoNT.txt", - code: "cco", - lang: "Chinantec, Comaltepec", - family: "Otomanguean", - country: "Mexico", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ceb-cebulb.txt", - code: "ceb", - lang: "Cebuano", - family: "Austronesian", - country: "Philippines", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "cek-cekak.txt", - code: "cek", - lang: "Chin, Eastern Khumi", - family: "Sino-Tibetan", - country: "Myanmar", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "ces-ces1613.txt", - code: "ces", - lang: "Czech", - family: "Indo-European", - country: "Czechia", - Total: 30862, - Books: 66, - OT: 22906, - NT: 7956, - DT: 0, - }, - { - file: "ces-cesnkb.txt", - code: "ces", - lang: "Czech", - family: "Indo-European", - country: "Czechia", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "cgc-cgc.txt", - code: "cgc", - lang: "Kagayanen", - family: "Austronesian", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cha-cha.txt", - code: "cha", - lang: "Chamorro", - family: "Austronesian", - country: "Guam", - Total: 7244, - Books: 6, - OT: 2460, - NT: 4784, - DT: 0, - }, - { - file: "chd-chdNT.txt", - code: "chd", - lang: "Chontal, Highland Oaxaca", - family: "Tequistlatecan", - country: "Mexico", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "chf-chfNT.txt", - code: "chf", - lang: "Chontal, Tabasco", - family: "Mayan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "chk-chk.txt", - code: "chk", - lang: "Chuukese", - family: "Austronesian", - country: "Micronesia, Federated States of", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "chq-chqNT.txt", - code: "chq", - lang: "Chinantec, Quiotepec", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "chz-chzNTps.txt", - code: "chz", - lang: "Chinantec, Ozumac\u00edn", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "cjo-cjoNT.txt", - code: "cjo", - lang: "Ash\u00e9ninka, Pajonal", - family: "Maipurean", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cjv-cjv.txt", - code: "cjv", - lang: "Chuave", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ckb-ckb.txt", - code: "ckb", - lang: "Kurdish, Central", - family: "Indo-European", - country: "Iraq", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "cle-cleNT.txt", - code: "cle", - lang: "Chinantec, Lealao", - family: "Otomanguean", - country: "Mexico", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "clu-clu.txt", - code: "clu", - lang: "Caluyanun", - family: "Austronesian", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cme-cmeNT.txt", - code: "cme", - lang: "Cerma", - family: "Niger-Congo", - country: "Burkina Faso", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cmn-cmn-cu89s.txt", - code: "cmn", - lang: "Chinese, Mandarin", - family: "Sino-Tibetan", - country: "China", - Total: 31087, - Books: 66, - OT: 23142, - NT: 7945, - DT: 0, - }, - { - file: "cmn-cmn-cu89t.txt", - code: "cmn", - lang: "Chinese, Mandarin", - family: "Sino-Tibetan", - country: "China", - Total: 31087, - Books: 66, - OT: 23142, - NT: 7945, - DT: 0, - }, - { - file: "cmn-cmnfeb.txt", - code: "cmn", - lang: "Chinese, Mandarin", - family: "Sino-Tibetan", - country: "China", - Total: 7940, - Books: 27, - OT: 0, - NT: 7940, - DT: 0, - }, - { - file: "cni-cniNT.txt", - code: "cni", - lang: "Ash\u00e1ninka", - family: "Maipurean", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cnl-cnlNT.txt", - code: "cnl", - lang: "Chinantec, Lalana", - family: "Otomanguean", - country: "Mexico", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cnt-cntNT.txt", - code: "cnt", - lang: "Chinantec, Tepetotutla", - family: "Otomanguean", - country: "Mexico", - Total: 7947, - Books: 27, - OT: 0, - NT: 7947, - DT: 0, - }, - { - file: "cof-cofNT.txt", - code: "cof", - lang: "Tsafiki", - family: "Barbacoan", - country: "Ecuador", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "con-conNTpo.txt", - code: "con", - lang: "Cof\u00e1n", - family: "Language isolate", - country: "Ecuador", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "cop-copbhc.txt", - code: "cop", - lang: "Coptic", - family: "Afro-Asiatic", - country: "Egypt", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "cop-copcnt.txt", - code: "cop", - lang: "Coptic", - family: "Afro-Asiatic", - country: "Egypt", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "cot-cotNT.txt", - code: "cot", - lang: "Caquinte", - family: "Maipurean", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cpa-cpaNT.txt", - code: "cpa", - lang: "Chinantec, Palantla", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "cpb-cpbNT.txt", - code: "cpb", - lang: "Ash\u00e9ninka, Ucayali-Yur\u00faa", - family: "Maipurean", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cpc-cpcNT.txt", - code: "cpc", - lang: "Ajy\u00edninka Apurucayali", - family: "Maipurean", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cpu-cpuNT.txt", - code: "cpu", - lang: "Ash\u00e9ninka, Pichis", - family: "Maipurean", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cpy-cpy.txt", - code: "cpy", - lang: "Ash\u00e9ninka, South Ucayali", - family: "Maipurean", - country: "Peru", - Total: 10641, - Books: 49, - OT: 3576, - NT: 7065, - DT: 0, - }, - { - file: "crn-crnNT.txt", - code: "crn", - lang: "Cora, El Nayar", - family: "Uto-Aztecan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "crx-crxNTpo.txt", - code: "crx", - lang: "Carrier", - family: "Eyak-Athabaskan", - country: "Canada", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "cso-csoNT.txt", - code: "cso", - lang: "Chinantec, Sochiapam", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "csy-csy.txt", - code: "csy", - lang: "Chin, Siyin", - family: "Sino-Tibetan", - country: "Myanmar", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cta-ctaNT.txt", - code: "cta", - lang: "Chatino, Tataltepec", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "cth-cth.txt", - code: "cth", - lang: "Chin, Thaiphum", - family: "Sino-Tibetan", - country: "Myanmar", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "ctp-ctpNT.txt", - code: "ctp", - lang: "Chatino, Western Highland", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ctu-ctu76.txt", - code: "ctu", - lang: "Chol", - family: "Mayan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ctu-ctuBl.txt", - code: "ctu", - lang: "Chol", - family: "Mayan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ctu-ctucti.txt", - code: "ctu", - lang: "Chol", - family: "Mayan", - country: "Mexico", - Total: 8381, - Books: 28, - OT: 425, - NT: 7956, - DT: 0, - }, - { - file: "cub-cubNT.txt", - code: "cub", - lang: "Cubeo", - family: "Tucanoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cuc-cucNT.txt", - code: "cuc", - lang: "Chinantec, Usila", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "cui-cui.txt", - code: "cui", - lang: "Cuiba", - family: "Guajiboan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "cuk-cuk.txt", - code: "cuk", - lang: "Kuna, San Blas", - family: "Chibchan", - country: "Panama", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "cuk-cuk09.txt", - code: "cuk", - lang: "Kuna, San Blas", - family: "Chibchan", - country: "Panama", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "cut-cutNT.txt", - code: "cut", - lang: "Cuicatec, Teutila", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "cux-cuxNT.txt", - code: "cux", - lang: "Cuicatec, Tepeuxila", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "cwe-cwe.txt", - code: "cwe", - lang: "Kwere", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 13806, - Books: 32, - OT: 5852, - NT: 7954, - DT: 0, - }, - { - file: "cya-cya.txt", - code: "cya", - lang: "Chatino, Nopala", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "daa-daaNT.txt", - code: "daa", - lang: "Dangal\u00e9at", - family: "Afro-Asiatic", - country: "Chad", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "dad-dad.txt", - code: "dad", - lang: "Marik", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7940, - Books: 27, - OT: 0, - NT: 7940, - DT: 0, - }, - { - file: "dah-dah.txt", - code: "dah", - lang: "Gwahatike", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "dan-dan1931.txt", - code: "dan", - lang: "Danish", - family: "Indo-European", - country: "Denmark", - Total: 31053, - Books: 66, - OT: 23096, - NT: 7957, - DT: 0, - }, - { - file: "ded-ded.txt", - code: "ded", - lang: "Dedua", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 10417, - Books: 28, - OT: 2460, - NT: 7957, - DT: 0, - }, - { - file: "deu-deu1912.txt", - code: "deu", - lang: "German, Standard", - family: "Indo-European", - country: "Germany", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "deu-deu1951.txt", - code: "deu", - lang: "German, Standard", - family: "Indo-European", - country: "Germany", - Total: 31096, - Books: 66, - OT: 23142, - NT: 7954, - DT: 0, - }, - { - file: "deu-deuelo.txt", - code: "deu", - lang: "German, Standard", - family: "Indo-European", - country: "Germany", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "deu-deutkw.txt", - code: "deu", - lang: "German, Standard", - family: "Indo-European", - country: "Germany", - Total: 31153, - Books: 66, - OT: 23202, - NT: 7951, - DT: 0, - }, - { - file: "dgc-dgc.txt", - code: "dgc", - lang: "Agta, Casiguran Dumagat", - family: "Austronesian", - country: "Philippines", - Total: 7952, - Books: 27, - OT: 0, - NT: 7952, - DT: 0, - }, - { - file: "dgr-dgrDOGNT.txt", - code: "dgr", - lang: "Tlicho", - family: "Eyak-Athabaskan", - country: "Canada", - Total: 9488, - Books: 28, - OT: 1533, - NT: 7955, - DT: 0, - }, - { - file: "dgz-dgz.txt", - code: "dgz", - lang: "Daga", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "dhg-dhg.txt", - code: "dhg", - lang: "Dhangu-Djangu", - family: "Australian", - country: "Australia", - Total: 685, - Books: 2, - OT: 0, - NT: 685, - DT: 0, - }, - { - file: "dhg-dhgduwadha.txt", - code: "dhg", - lang: "Dhangu-Djangu", - family: "Australian", - country: "Australia", - Total: 678, - Books: 1, - OT: 0, - NT: 678, - DT: 0, - }, - { - file: "dif-dif.txt", - code: "dif", - lang: "Diyari", - family: "Australian", - country: "Australia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "dik-dikNT.txt", - code: "dik", - lang: "Dinka, Southwestern", - family: "Nilo-Saharan", - country: "South Sudan", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "dji-dji.txt", - code: "dji", - lang: "Djinang", - family: "Australian", - country: "Australia", - Total: 988, - Books: 2, - OT: 883, - NT: 105, - DT: 0, - }, - { - file: "djk-djkNT.txt", - code: "djk", - lang: "Aukan", - family: "Creole", - country: "Suriname", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "djr-djr.txt", - code: "djr", - lang: "Djambarrpuyngu", - family: "Australian", - country: "Australia", - Total: 8122, - Books: 28, - OT: 165, - NT: 7957, - DT: 0, - }, - { - file: "dob-dob.txt", - code: "dob", - lang: "Dobu", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "dop-dop.txt", - code: "dop", - lang: "Lukpa", - family: "Niger-Congo", - country: "Benin", - Total: 24205, - Books: 66, - OT: 17594, - NT: 6611, - DT: 0, - }, - { - file: "dov-dov.txt", - code: "dov", - lang: "Dombe", - family: "Niger-Congo", - country: "Zimbabwe", - Total: 7954, - Books: 27, - OT: 0, - NT: 7954, - DT: 0, - }, - { - file: "dwr-dwrENT.txt", - code: "dwr", - lang: "Dawro", - family: "Afro-Asiatic", - country: "Ethiopia", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "dwr-dwrNT.txt", - code: "dwr", - lang: "Dawro", - family: "Afro-Asiatic", - country: "Ethiopia", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "dww-dww.txt", - code: "dww", - lang: "Dawawa", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "dwy-dwy.txt", - code: "dwy", - lang: "Dhuwaya", - family: "Australian", - country: "Australia", - Total: 717, - Books: 2, - OT: 0, - NT: 717, - DT: 0, - }, - { - file: "ebk-ebk.txt", - code: "ebk", - lang: "Bontok, Eastern", - family: "Austronesian", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "eko-eko.txt", - code: "eko", - lang: "Koti", - family: "Niger-Congo", - country: "Mozambique", - Total: 6354, - Books: 9, - OT: 2126, - NT: 4228, - DT: 0, - }, - { - file: "emi-emi.txt", - code: "emi", - lang: "Mussau-Emira", - family: "Austronesian", - country: "Papua New Guinea", - Total: 8090, - Books: 29, - OT: 133, - NT: 7957, - DT: 0, - }, - { - file: "emp-empNTpo.txt", - code: "emp", - lang: "Ember\u00e1, Northern", - family: "Chocoan", - country: "Panama", - Total: 13442, - Books: 44, - OT: 5486, - NT: 7956, - DT: 0, - }, - { - file: "eng-eng-asv.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 31081, - Books: 66, - OT: 23142, - NT: 7939, - DT: 0, - }, - { - file: "eng-eng-Brenton.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 26657, - Books: 52, - OT: 21241, - NT: 0, - DT: 5416, - }, - { - file: "eng-eng-glw.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 1012, - Books: 4, - OT: 0, - NT: 1012, - DT: 0, - }, - { - file: "eng-eng-kjv.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 36694, - Books: 81, - OT: 23142, - NT: 7955, - DT: 5597, - }, - { - file: "eng-eng-kjv2006.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "eng-eng-lxx2012.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 28145, - Books: 54, - OT: 22719, - NT: 0, - DT: 5426, - }, - { - file: "eng-eng-rv.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 36710, - Books: 81, - OT: 23142, - NT: 7939, - DT: 5629, - }, - { - file: "eng-eng-t4t.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "eng-eng-uk-lxx2012.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 28145, - Books: 54, - OT: 22719, - NT: 0, - DT: 5426, - }, - { - file: "eng-eng-web-c.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 34761, - Books: 73, - OT: 22618, - NT: 7948, - DT: 4195, - }, - { - file: "eng-eng-web.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 37395, - Books: 81, - OT: 23142, - NT: 7948, - DT: 6305, - }, - { - file: "eng-eng-webbe.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 37395, - Books: 81, - OT: 23142, - NT: 7948, - DT: 6305, - }, - { - file: "eng-engaoi.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 3108, - Books: 6, - OT: 1581, - NT: 1527, - DT: 0, - }, - { - file: "eng-engasvbt.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 37732, - Books: 85, - OT: 23142, - NT: 7948, - DT: 6642, - }, - { - file: "eng-engBBE.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "eng-engDBY.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 31094, - Books: 66, - OT: 23142, - NT: 7952, - DT: 0, - }, - { - file: "eng-engDRA.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 23504, - Books: 32, - OT: 21854, - NT: 0, - DT: 1650, - }, - { - file: "eng-engemtv.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 7949, - Books: 27, - OT: 0, - NT: 7949, - DT: 0, - }, - { - file: "eng-engf35.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 7948, - Books: 27, - OT: 0, - NT: 7948, - DT: 0, - }, - { - file: "eng-engfbv.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 31082, - Books: 66, - OT: 23142, - NT: 7940, - DT: 0, - }, - { - file: "eng-enggnv.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 30807, - Books: 66, - OT: 22856, - NT: 7951, - DT: 0, - }, - { - file: "eng-engjps.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 23142, - Books: 39, - OT: 23142, - NT: 0, - DT: 0, - }, - { - file: "eng-engkjvcpb.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 36702, - Books: 81, - OT: 23142, - NT: 7955, - DT: 5605, - }, - { - file: "eng-englee.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 23140, - Books: 39, - OT: 23140, - NT: 0, - DT: 0, - }, - { - file: "eng-englsv.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "eng-englxxup.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 26273, - Books: 51, - OT: 20839, - NT: 0, - DT: 5434, - }, - { - file: "eng-engnna.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 1543, - Books: 26, - OT: 862, - NT: 681, - DT: 0, - }, - { - file: "eng-engnoy.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 18209, - Books: 49, - OT: 10273, - NT: 7936, - DT: 0, - }, - { - file: "eng-engoebcw.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 11700, - Books: 42, - OT: 3762, - NT: 7938, - DT: 0, - }, - { - file: "eng-engoebus.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 11700, - Books: 42, - OT: 3762, - NT: 7938, - DT: 0, - }, - { - file: "eng-engoke.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 5817, - Books: 5, - OT: 5817, - NT: 0, - DT: 0, - }, - { - file: "eng-engourb.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 15228, - Books: 14, - OT: 10518, - NT: 3779, - DT: 931, - }, - { - file: "eng-engPEV.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 6611, - Books: 25, - OT: 1195, - NT: 5416, - DT: 0, - }, - { - file: "eng-engtcent.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 7948, - Books: 27, - OT: 0, - NT: 7948, - DT: 0, - }, - { - file: "eng-engtnt.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 7952, - Books: 27, - OT: 0, - NT: 7952, - DT: 0, - }, - { - file: "eng-engULB.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 31083, - Books: 66, - OT: 23142, - NT: 7941, - DT: 0, - }, - { - file: "eng-engwebp.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 31090, - Books: 66, - OT: 23142, - NT: 7948, - DT: 0, - }, - { - file: "eng-engwebpb.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 31090, - Books: 66, - OT: 23142, - NT: 7948, - DT: 0, - }, - { - file: "eng-engwebster.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "eng-engwmb.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 31090, - Books: 66, - OT: 23142, - NT: 7948, - DT: 0, - }, - { - file: "eng-engwmbb.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 31090, - Books: 66, - OT: 23142, - NT: 7948, - DT: 0, - }, - { - file: "eng-engwyc2017.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 35796, - Books: 80, - OT: 23142, - NT: 7956, - DT: 4698, - }, - { - file: "eng-engwyc2018.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 35796, - Books: 80, - OT: 23142, - NT: 7956, - DT: 4698, - }, - { - file: "eng-engWycliffe.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 9623, - Books: 9, - OT: 5844, - NT: 3779, - DT: 0, - }, - { - file: "eng-engylt.txt", - code: "eng", - lang: "English", - family: "Indo-European", - country: "United Kingdom", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "enq-enq.txt", - code: "enq", - lang: "Enga", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "enq-enq2.txt", - code: "enq", - lang: "Enga", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 2127, - Books: 3, - OT: 378, - NT: 1749, - DT: 0, - }, - { - file: "epo-epo.txt", - code: "epo", - lang: "Esperanto", - family: "Constructed language", - country: "Poland", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "eri-eri.txt", - code: "eri", - lang: "Ogea", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ese-eseNT.txt", - code: "ese", - lang: "Ese Ejja", - family: "Tacanan", - country: "Bolivia, Plurinational State of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "esk-eskNT.txt", - code: "esk", - lang: "Inupiatun, Northwest Alaska", - family: "Eskimo-Aleut", - country: "United States", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "etr-etr.txt", - code: "etr", - lang: "Edolo", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 4094, - Books: 11, - OT: 85, - NT: 4009, - DT: 0, - }, - { - file: "ewe-ewe.txt", - code: "ewe", - lang: "\u00c9w\u00e9", - family: "Niger-Congo", - country: "Ghana", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "faa-faa.txt", - code: "faa", - lang: "Fasu", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "fai-fai.txt", - code: "fai", - lang: "Faiwol", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "far-far.txt", - code: "far", - lang: "Fataleka", - family: "Austronesian", - country: "Solomon Islands", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ffm-ffm.txt", - code: "ffm", - lang: "Fulfulde, Maasina", - family: "Niger-Congo", - country: "Mali", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "for-for.txt", - code: "for", - lang: "Fore", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "fra-fraLSG.txt", - code: "fra", - lang: "French", - family: "Indo-European", - country: "France", - Total: 31055, - Books: 66, - OT: 23098, - NT: 7957, - DT: 0, - }, - { - file: "fra-francl.txt", - code: "fra", - lang: "French", - family: "Indo-European", - country: "France", - Total: 23151, - Books: 32, - OT: 21502, - NT: 0, - DT: 1649, - }, - { - file: "fra-frasbl.txt", - code: "fra", - lang: "French", - family: "Indo-European", - country: "France", - Total: 37392, - Books: 80, - OT: 23142, - NT: 7948, - DT: 6302, - }, - { - file: "fra-fra_fob.txt", - code: "fra", - lang: "French", - family: "Indo-European", - country: "France", - Total: 31098, - Books: 66, - OT: 23141, - NT: 7957, - DT: 0, - }, - { - file: "fue-fue.txt", - code: "fue", - lang: "Fulfulde, Borgu", - family: "Niger-Congo", - country: "Benin", - Total: 4669, - Books: 21, - OT: 0, - NT: 4669, - DT: 0, - }, - { - file: "fuf-fuf.txt", - code: "fuf", - lang: "Pular", - family: "Niger-Congo", - country: "Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "fuh-fuhbkf.txt", - code: "fuh", - lang: "Fulfulde, Western Niger", - family: "Niger-Congo", - country: "Niger", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gah-gah.txt", - code: "gah", - lang: "Alekano", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gai-gai.txt", - code: "gai", - lang: "Mbore", - family: "Ramu-Lower Sepik", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gam-gam.txt", - code: "gam", - lang: "Kandawo", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gaw-gaw.txt", - code: "gaw", - lang: "Nobonob", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gdn-gdn.txt", - code: "gdn", - lang: "Umanakaina", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gdr-gdr.txt", - code: "gdr", - lang: "Wipi", - family: "Eastern Trans-Fly", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "geb-geb.txt", - code: "geb", - lang: "Kire", - family: "Ramu-Lower Sepik", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gfk-gfk.txt", - code: "gfk", - lang: "Patpatar", - family: "Austronesian", - country: "Papua New Guinea", - Total: 10417, - Books: 28, - OT: 2460, - NT: 7957, - DT: 0, - }, - { - file: "gfk-gfkh.txt", - code: "gfk", - lang: "Patpatar", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7951, - Books: 27, - OT: 0, - NT: 7951, - DT: 0, - }, - { - file: "gfk-gfks.txt", - code: "gfk", - lang: "Patpatar", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7951, - Books: 27, - OT: 0, - NT: 7951, - DT: 0, - }, - { - file: "ghs-ghs.txt", - code: "ghs", - lang: "Guhu-Samane", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "glk-glk.txt", - code: "glk", - lang: "Gilaki", - family: "Indo-European", - country: "Iran, Islamic Republic of", - Total: 879, - Books: 1, - OT: 0, - NT: 879, - DT: 0, - }, - { - file: "gmv-gmvNT.txt", - code: "gmv", - lang: "Gamo", - family: "Afro-Asiatic", - country: "Ethiopia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gmv-gmvRNT.txt", - code: "gmv", - lang: "Gamo", - family: "Afro-Asiatic", - country: "Ethiopia", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "gng-gngNT.txt", - code: "gng", - lang: "Ngangam", - family: "Niger-Congo", - country: "Togo", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gnn-gnn.txt", - code: "gnn", - lang: "Gumatj", - family: "Australian", - country: "Australia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gnw-gnwNT.txt", - code: "gnw", - lang: "Guaran\u00ed, Western Bolivian", - family: "Tupian", - country: "Bolivia, Plurinational State of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gof-gofENT.txt", - code: "gof", - lang: "Gofa", - family: "Afro-Asiatic", - country: "Ethiopia", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "gof-gofRNT.txt", - code: "gof", - lang: "Gofa", - family: "Afro-Asiatic", - country: "Ethiopia", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "grc-grc-tisch.txt", - code: "grc", - lang: "Greek, Ancient", - family: "Indo-European", - country: "Greece", - Total: 7937, - Books: 27, - OT: 0, - NT: 7937, - DT: 0, - }, - { - file: "grc-grcbrent.txt", - code: "grc", - lang: "Greek, Ancient", - family: "Indo-European", - country: "Greece", - Total: 26248, - Books: 51, - OT: 20832, - NT: 0, - DT: 5416, - }, - { - file: "grc-grcbyz.txt", - code: "grc", - lang: "Greek, Ancient", - family: "Indo-European", - country: "Greece", - Total: 7952, - Books: 27, - OT: 0, - NT: 7952, - DT: 0, - }, - { - file: "grc-grcf35.txt", - code: "grc", - lang: "Greek, Ancient", - family: "Indo-European", - country: "Greece", - Total: 7949, - Books: 27, - OT: 0, - NT: 7949, - DT: 0, - }, - { - file: "grc-grcmt.txt", - code: "grc", - lang: "Greek, Ancient", - family: "Indo-European", - country: "Greece", - Total: 7948, - Books: 27, - OT: 0, - NT: 7948, - DT: 0, - }, - { - file: "grc-grcsr.txt", - code: "grc", - lang: "Greek, Ancient", - family: "Indo-European", - country: "Greece", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "grc-grctcgnt.txt", - code: "grc", - lang: "Greek, Ancient", - family: "Indo-European", - country: "Greece", - Total: 7948, - Books: 27, - OT: 0, - NT: 7948, - DT: 0, - }, - { - file: "grc-grctr.txt", - code: "grc", - lang: "Greek, Ancient", - family: "Indo-European", - country: "Greece", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "gub-gubBl.txt", - code: "gub", - lang: "Guajaj\u00e1ra", - family: "Tupian", - country: "Brazil", - Total: 31100, - Books: 66, - OT: 23143, - NT: 7957, - DT: 0, - }, - { - file: "guh-guh.txt", - code: "guh", - lang: "Guahibo", - family: "Guajiboan", - country: "Colombia", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "gui-guiNT.txt", - code: "gui", - lang: "Guaran\u00ed, Eastern Bolivian", - family: "Tupian", - country: "Bolivia, Plurinational State of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "guj-guj2017.txt", - code: "guj", - lang: "Gujarati", - family: "Indo-European", - country: "India", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "gul-gulNT.txt", - code: "gul", - lang: "Sea Island English Creole", - family: "Creole", - country: "United States", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gum-gum.txt", - code: "gum", - lang: "Misak", - family: "Paezan", - country: "Colombia", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "gun-gun.txt", - code: "gun", - lang: "Guaran\u00ed, Mby\u00e1", - family: "Tupian", - country: "Brazil", - Total: 31098, - Books: 66, - OT: 23141, - NT: 7957, - DT: 0, - }, - { - file: "guo-guoNT.txt", - code: "guo", - lang: "Guayabero", - family: "Guajiboan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gup-gup.txt", - code: "gup", - lang: "Gunwinggu", - family: "Australian", - country: "Australia", - Total: 14539, - Books: 32, - OT: 6582, - NT: 7957, - DT: 0, - }, - { - file: "gux-gux.txt", - code: "gux", - lang: "Gourmanch\u00e9ma", - family: "Niger-Congo", - country: "Burkina Faso", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gux-guxg.txt", - code: "gux", - lang: "Gourmanch\u00e9ma", - family: "Niger-Congo", - country: "Burkina Faso", - Total: 7951, - Books: 27, - OT: 0, - NT: 7951, - DT: 0, - }, - { - file: "gvc-gvc.txt", - code: "gvc", - lang: "Wanano", - family: "Tucanoan", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gvf-gvf.txt", - code: "gvf", - lang: "Golin", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gvn-gvn.txt", - code: "gvn", - lang: "Kuku-Yalanji", - family: "Australian", - country: "Australia", - Total: 10993, - Books: 45, - OT: 3039, - NT: 7954, - DT: 0, - }, - { - file: "gvs-gvs.txt", - code: "gvs", - lang: "Gumawana", - family: "Austronesian", - country: "Papua New Guinea", - Total: 10836, - Books: 31, - OT: 2879, - NT: 7957, - DT: 0, - }, - { - file: "gwi-gwiNT.txt", - code: "gwi", - lang: "Gwich\u2019in", - family: "Eyak-Athabaskan", - country: "Canada", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gym-gymNT.txt", - code: "gym", - lang: "Ng\u00e4bere", - family: "Chibchan", - country: "Panama", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "gyr-gyrNT.txt", - code: "gyr", - lang: "Guarayu", - family: "Tupian", - country: "Bolivia, Plurinational State of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "hat-hat.txt", - code: "hat", - lang: "Haitian Creole", - family: "Creole", - country: "Haiti", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "hat-hatbsa.txt", - code: "hat", - lang: "Haitian Creole", - family: "Creole", - country: "Haiti", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "hau-hausa.txt", - code: "hau", - lang: "Hausa", - family: "Afro-Asiatic", - country: "Nigeria", - Total: 31082, - Books: 66, - OT: 23142, - NT: 7940, - DT: 0, - }, - { - file: "hau-hauulb.txt", - code: "hau", - lang: "Hausa", - family: "Afro-Asiatic", - country: "Nigeria", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "haw-haw1868.txt", - code: "haw", - lang: "Hawaiian", - family: "Austronesian", - country: "United States", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "hbo-hbo.txt", - code: "hbo", - lang: "Hebrew, Ancient", - family: "Afro-Asiatic", - country: "Israel", - Total: 23213, - Books: 39, - OT: 23213, - NT: 0, - DT: 0, - }, - { - file: "hbo-hboWLC.txt", - code: "hbo", - lang: "Hebrew, Ancient", - family: "Afro-Asiatic", - country: "Israel", - Total: 23213, - Books: 39, - OT: 23213, - NT: 0, - DT: 0, - }, - { - file: "hch-hchNT.txt", - code: "hch", - lang: "Huichol", - family: "Uto-Aztecan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "heb-heb.txt", - code: "heb", - lang: "Hebrew", - family: "Afro-Asiatic", - country: "Israel", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "heg-hegNTpo.txt", - code: "heg", - lang: "Helong", - family: "Austronesian", - country: "Indonesia", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "hin-hin2017.txt", - code: "hin", - lang: "Hindi", - family: "Indo-European", - country: "India", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "hix-hixNT.txt", - code: "hix", - lang: "Hixkary\u00e1na", - family: "Cariban", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "hla-hla.txt", - code: "hla", - lang: "Halia", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "hlt-hlt.txt", - code: "hlt", - lang: "Chin, Matu", - family: "Sino-Tibetan", - country: "Myanmar", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "hlt-hltmcsb.txt", - code: "hlt", - lang: "Chin, Matu", - family: "Sino-Tibetan", - country: "Myanmar", - Total: 36689, - Books: 79, - OT: 23142, - NT: 7957, - DT: 5590, - }, - { - file: "hlt-hltthb.txt", - code: "hlt", - lang: "Chin, Matu", - family: "Sino-Tibetan", - country: "Myanmar", - Total: 11330, - Books: 29, - OT: 3375, - NT: 7955, - DT: 0, - }, - { - file: "hmo-hmo.txt", - code: "hmo", - lang: "Motu, Hiri", - family: "Pidgin", - country: "Papua New Guinea", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "hns-hnsNT.txt", - code: "hns", - lang: "Hindustani, Sarnami", - family: "Indo-European", - country: "Suriname", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "hop-hopNT.txt", - code: "hop", - lang: "Hopi", - family: "Uto-Aztecan", - country: "United States", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "hot-hot.txt", - code: "hot", - lang: "Malei", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "hrv-hrv.txt", - code: "hrv", - lang: "Croatian", - family: "Indo-European", - country: "Croatia", - Total: 35202, - Books: 73, - OT: 23039, - NT: 7957, - DT: 4206, - }, - { - file: "hto-hto.txt", - code: "hto", - lang: "Witoto, Minika", - family: "Witotoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "hub-hubNT.txt", - code: "hub", - lang: "Wamp\u00eds", - family: "Jivaroan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "hui-hui.txt", - code: "hui", - lang: "Huli", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 35451, - Books: 78, - OT: 23143, - NT: 7957, - DT: 4351, - }, - { - file: "hun-hun.txt", - code: "hun", - lang: "Hungarian", - family: "Uralic", - country: "Hungary", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "hus-husNT1971.txt", - code: "hus", - lang: "Huastec", - family: "Mayan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "hus-husNT2005.txt", - code: "hus", - lang: "Huastec", - family: "Mayan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "huu-huuNT.txt", - code: "huu", - lang: "Witoto, Murui", - family: "Witotoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "huv-huvNT.txt", - code: "huv", - lang: "Huave, San Mateo del Mar", - family: "Huavean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "hvn-hvn.txt", - code: "hvn", - lang: "Hawu", - family: "Austronesian", - country: "Indonesia", - Total: 678, - Books: 1, - OT: 0, - NT: 678, - DT: 0, - }, - { - file: "ian-ian.txt", - code: "ian", - lang: "Iatmul", - family: "Sepik", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ign-ignNT.txt", - code: "ign", - lang: "Ignaciano", - family: "Maipurean", - country: "Bolivia, Plurinational State of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ikk-ikkNT.txt", - code: "ikk", - lang: "Ika", - family: "Niger-Congo", - country: "Nigeria", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ikw-ikwNT.txt", - code: "ikw", - lang: "Ikwere", - family: "Niger-Congo", - country: "Nigeria", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ilo-iloulb.txt", - code: "ilo", - lang: "Ilocano", - family: "Austronesian", - country: "Philippines", - Total: 31086, - Books: 66, - OT: 23142, - NT: 7944, - DT: 0, - }, - { - file: "imo-imo.txt", - code: "imo", - lang: "Imbongu", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "inb-inb.txt", - code: "inb", - lang: "Inga", - family: "Quechuan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ind-ind.txt", - code: "ind", - lang: "Indonesian", - family: "Austronesian", - country: "Indonesia", - Total: 11224, - Books: 33, - OT: 3268, - NT: 7956, - DT: 0, - }, - { - file: "ind-indags.txt", - code: "ind", - lang: "Indonesian", - family: "Austronesian", - country: "Indonesia", - Total: 7940, - Books: 27, - OT: 0, - NT: 7940, - DT: 0, - }, - { - file: "ino-ino.txt", - code: "ino", - lang: "Inoke-Yate", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "iou-iou.txt", - code: "iou", - lang: "Tuma-Irumu", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 13159, - Books: 56, - OT: 5202, - NT: 7957, - DT: 0, - }, - { - file: "ipi-ipi.txt", - code: "ipi", - lang: "Ipili", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "isn-isn.txt", - code: "isn", - lang: "Isanzu", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7953, - Books: 27, - OT: 0, - NT: 7953, - DT: 0, - }, - { - file: "ita-ita1885.txt", - code: "ita", - lang: "Italian", - family: "Indo-European", - country: "Italy", - Total: 31064, - Books: 66, - OT: 23110, - NT: 7954, - DT: 0, - }, - { - file: "ita-ita1927.txt", - code: "ita", - lang: "Italian", - family: "Indo-European", - country: "Italy", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "iws-iws.txt", - code: "iws", - lang: "Iwam, Sepik", - family: "Sepik", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ixl-ixlCNT.txt", - code: "ixl", - lang: "Ixil", - family: "Mayan", - country: "Guatemala", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ixl-ixlNNT.txt", - code: "ixl", - lang: "Ixil", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "jac-jacNT.txt", - code: "jac", - lang: "Jakalteko", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "jae-jae.txt", - code: "jae", - lang: "Yabem", - family: "Austronesian", - country: "Papua New Guinea", - Total: 18125, - Books: 57, - OT: 10472, - NT: 7653, - DT: 0, - }, - { - file: "jao-jao.txt", - code: "jao", - lang: "Yanyuwa", - family: "Australian", - country: "Australia", - Total: 870, - Books: 6, - OT: 447, - NT: 423, - DT: 0, - }, - { - file: "jic-jicNT.txt", - code: "jic", - lang: "Tol", - family: "Jicaquean", - country: "Honduras", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "jid-jid.txt", - code: "jid", - lang: "Bu", - family: "Niger-Congo", - country: "Nigeria", - Total: 7953, - Books: 27, - OT: 0, - NT: 7953, - DT: 0, - }, - { - file: "jiv-jivNT.txt", - code: "jiv", - lang: "Shuar", - family: "Jivaroan", - country: "Ecuador", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "jni-jni.txt", - code: "jni", - lang: "Janji", - family: "Niger-Congo", - country: "Nigeria", - Total: 7951, - Books: 27, - OT: 0, - NT: 7951, - DT: 0, - }, - { - file: "jpn-jpn1965.txt", - code: "jpn", - lang: "Japanese", - family: "Japonic", - country: "Japan", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "jvn-jvnNT.txt", - code: "jvn", - lang: "Javanese, Suriname", - family: "Austronesian", - country: "Suriname", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kan-kan2017.txt", - code: "kan", - lang: "Kannada", - family: "Dravidian", - country: "India", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "kaq-kaqNT.txt", - code: "kaq", - lang: "Capanahua", - family: "Panoan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kbc-kbcNT.txt", - code: "kbc", - lang: "Kadiw\u00e9u", - family: "Guaykuruan", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kbh-kbh.txt", - code: "kbh", - lang: "Cams\u00e1", - family: "Language isolate", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kbm-kbm.txt", - code: "kbm", - lang: "Iwal", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7937, - Books: 27, - OT: 0, - NT: 7937, - DT: 0, - }, - { - file: "kbq-kbq.txt", - code: "kbq", - lang: "Kamano", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "kdc-kdc.txt", - code: "kdc", - lang: "Kutu", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kde-kde.txt", - code: "kde", - lang: "Makonde", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kdl-kdlNT.txt", - code: "kdl", - lang: "Tsikimba", - family: "Niger-Congo", - country: "Nigeria", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kek-kekNT.txt", - code: "kek", - lang: "Q\u2019eqchi\u2019", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ken-kenNT.txt", - code: "ken", - lang: "Kenyang", - family: "Niger-Congo", - country: "Cameroon", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kew-kew.txt", - code: "kew", - lang: "Kewapi, West", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 9447, - Books: 31, - OT: 1490, - NT: 7957, - DT: 0, - }, - { - file: "kgf-kgf.txt", - code: "kgf", - lang: "Kube", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 10417, - Books: 28, - OT: 2460, - NT: 7957, - DT: 0, - }, - { - file: "kgk-kgkNT.txt", - code: "kgk", - lang: "Kaiw\u00e1", - family: "Tupian", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kgp-kgpNT.txt", - code: "kgp", - lang: "Kaingang", - family: "Jean", - country: "Brazil", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "khs-khs.txt", - code: "khs", - lang: "Kasua", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "khz-khz.txt", - code: "khz", - lang: "Keapara", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kik-kik.txt", - code: "kik", - lang: "Gikuyu", - family: "Niger-Congo", - country: "Kenya", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "kiw-kiw.txt", - code: "kiw", - lang: "Kiwai, Northeast", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 1151, - Books: 1, - OT: 0, - NT: 1151, - DT: 0, - }, - { - file: "kiz-kiz.txt", - code: "kiz", - lang: "Kisi", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7944, - Books: 27, - OT: 0, - NT: 7944, - DT: 0, - }, - { - file: "kje-kjeNT.txt", - code: "kje", - lang: "Kisar", - family: "Austronesian", - country: "Indonesia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kjn-kjn.txt", - code: "kjn", - lang: "Kunjen", - family: "Australian", - country: "Australia", - Total: 138, - Books: 1, - OT: 0, - NT: 138, - DT: 0, - }, - { - file: "kjs-kjs.txt", - code: "kjs", - lang: "Kewapi, East", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kkc-kkc.txt", - code: "kkc", - lang: "Odoodee", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 5339, - Books: 15, - OT: 0, - NT: 5339, - DT: 0, - }, - { - file: "kkl-kkl.txt", - code: "kkl", - lang: "Yale, Kosarek", - family: "Trans-New Guinea", - country: "Indonesia", - Total: 3834, - Books: 12, - OT: 1618, - NT: 2216, - DT: 0, - }, - { - file: "klt-klt.txt", - code: "klt", - lang: "Nukna", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 3826, - Books: 14, - OT: 85, - NT: 3741, - DT: 0, - }, - { - file: "klv-klv.txt", - code: "klv", - lang: "Maskelynes", - family: "Austronesian", - country: "Vanuatu", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kmg-kmg.txt", - code: "kmg", - lang: "K\u00e2te", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "kmh-kmh-m.txt", - code: "kmh", - lang: "Kalam", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kmh-kmh.txt", - code: "kmh", - lang: "Kalam", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "kmk-kmk.txt", - code: "kmk", - lang: "Kalinga, Limos", - family: "Austronesian", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kmo-kmo.txt", - code: "kmo", - lang: "Kwoma", - family: "Sepik", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kms-kms.txt", - code: "kms", - lang: "Kamasau", - family: "Torricelli", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kmu-kmu.txt", - code: "kmu", - lang: "Kanite", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kne-kne.txt", - code: "kne", - lang: "Kankanaey", - family: "Austronesian", - country: "Philippines", - Total: 17672, - Books: 62, - OT: 9718, - NT: 7954, - DT: 0, - }, - { - file: "knf-knf.txt", - code: "knf", - lang: "Mankanya", - family: "Niger-Congo", - country: "Guinea-Bissau", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "knj-knjNT.txt", - code: "knj", - lang: "Akateko", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "knv-knv-aramia.txt", - code: "knv", - lang: "Tabo", - family: "South-Central Papuan", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "knv-knv-fly_river.txt", - code: "knv", - lang: "Tabo", - family: "South-Central Papuan", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "kos-kos.txt", - code: "kos", - lang: "Kosraean", - family: "Austronesian", - country: "Micronesia, Federated States of", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "kpf-kpf.txt", - code: "kpf", - lang: "Komba", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kpg-kpg.txt", - code: "kpg", - lang: "Kapingamarangi", - family: "Austronesian", - country: "Micronesia, Federated States of", - Total: 31099, - Books: 66, - OT: 23143, - NT: 7956, - DT: 0, - }, - { - file: "kpj-kpjNT.txt", - code: "kpj", - lang: "Karaj\u00e1", - family: "Karaj\u00e1", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kpr-kpr.txt", - code: "kpr", - lang: "Korafe-Yegha", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kpw-kpw.txt", - code: "kpw", - lang: "Kobon", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kpx-kpx.txt", - code: "kpx", - lang: "Koiali, Mountain", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "kqa-kqa.txt", - code: "kqa", - lang: "Mum", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 1071, - Books: 1, - OT: 0, - NT: 1071, - DT: 0, - }, - { - file: "kqc-kqc.txt", - code: "kqc", - lang: "Doromu-Koki", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 8026, - Books: 28, - OT: 85, - NT: 7941, - DT: 0, - }, - { - file: "kqf-kqf.txt", - code: "kqf", - lang: "Kakabai", - family: "Austronesian", - country: "Papua New Guinea", - Total: 4164, - Books: 30, - OT: 2486, - NT: 1678, - DT: 0, - }, - { - file: "kql-kql.txt", - code: "kql", - lang: "Kyenele", - family: "Yuat", - country: "Papua New Guinea", - Total: 678, - Books: 1, - OT: 0, - NT: 678, - DT: 0, - }, - { - file: "kqw-kqw.txt", - code: "kqw", - lang: "Kandas", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ksd-ksd.txt", - code: "ksd", - lang: "Kuanua", - family: "Austronesian", - country: "Papua New Guinea", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "ksj-ksj.txt", - code: "ksj", - lang: "Uare", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 4234, - Books: 8, - OT: 0, - NT: 4234, - DT: 0, - }, - { - file: "ksr-ksr.txt", - code: "ksr", - lang: "Borong", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 9623, - Books: 30, - OT: 1666, - NT: 7957, - DT: 0, - }, - { - file: "ktm-ktm.txt", - code: "ktm", - lang: "Kurti", - family: "Austronesian", - country: "Papua New Guinea", - Total: 2472, - Books: 4, - OT: 1533, - NT: 939, - DT: 0, - }, - { - file: "kto-kto.txt", - code: "kto", - lang: "Kuot", - family: "Language isolate", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kud-kud.txt", - code: "kud", - lang: "\u2019Auhelawa", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kue-kue.txt", - code: "kue", - lang: "Kuman", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kup-kup.txt", - code: "kup", - lang: "Kunimaipa", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kvg-kvg.txt", - code: "kvg", - lang: "Kuni-Boazi", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 8074, - Books: 29, - OT: 133, - NT: 7941, - DT: 0, - }, - { - file: "kvn-kvnNT.txt", - code: "kvn", - lang: "Kuna, Border", - family: "Chibchan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kwd-kwd.txt", - code: "kwd", - lang: "Kwaio", - family: "Austronesian", - country: "Solomon Islands", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "kwf-kwf.txt", - code: "kwf", - lang: "Kwara\u2019ae", - family: "Austronesian", - country: "Solomon Islands", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "kwi-kwi.txt", - code: "kwi", - lang: "Awa-Cuaiquer", - family: "Barbacoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kwj-kwj.txt", - code: "kwj", - lang: "Kwanga", - family: "Sepik", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "kyc-kyc.txt", - code: "kyc", - lang: "Kyaka", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 17190, - Books: 65, - OT: 9234, - NT: 7956, - DT: 0, - }, - { - file: "kyf-kyf.txt", - code: "kyf", - lang: "Kouya", - family: "Niger-Congo", - country: "C\u00f4te d'Ivoire", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kyg-kyg.txt", - code: "kyg", - lang: "Keyagana", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 9714, - Books: 32, - OT: 1759, - NT: 7955, - DT: 0, - }, - { - file: "kyq-kyq.txt", - code: "kyq", - lang: "Kenga", - family: "Nilo-Saharan", - country: "Chad", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kyz-kyzNT.txt", - code: "kyz", - lang: "Kayab\u00ed", - family: "Tupian", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "kze-kze.txt", - code: "kze", - lang: "Kosena", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "lac-lacNT.txt", - code: "lac", - lang: "Lacandon", - family: "Mayan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "lat-latVUC.txt", - code: "lat", - lang: "Latin", - family: "Indo-European", - country: "Holy See (Vatican City State)", - Total: 23505, - Books: 32, - OT: 21855, - NT: 0, - DT: 1650, - }, - { - file: "lbb-lbb.txt", - code: "lbb", - lang: "Label", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "lbk-lbk.txt", - code: "lbk", - lang: "Bontok, Central", - family: "Austronesian", - country: "Philippines", - Total: 9486, - Books: 28, - OT: 1533, - NT: 7953, - DT: 0, - }, - { - file: "lcm-lcm.txt", - code: "lcm", - lang: "Tungag", - family: "Austronesian", - country: "Papua New Guinea", - Total: 9623, - Books: 30, - OT: 1666, - NT: 7957, - DT: 0, - }, - { - file: "leu-leu.txt", - code: "leu", - lang: "Kara", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "lex-lex.txt", - code: "lex", - lang: "Luang", - family: "Austronesian", - country: "Indonesia", - Total: 9790, - Books: 31, - OT: 1833, - NT: 7957, - DT: 0, - }, - { - file: "lgl-lgl.txt", - code: "lgl", - lang: "Wala", - family: "Austronesian", - country: "Solomon Islands", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "lid-lid.txt", - code: "lid", - lang: "Nyindrou", - family: "Austronesian", - country: "Papua New Guinea", - Total: 9621, - Books: 30, - OT: 1666, - NT: 7955, - DT: 0, - }, - { - file: "lif-lifNT.txt", - code: "lif", - lang: "Limbu", - family: "Sino-Tibetan", - country: "Nepal", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "lif-lifNT2.txt", - code: "lif", - lang: "Limbu", - family: "Sino-Tibetan", - country: "Nepal", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "lin-lin.txt", - code: "lin", - lang: "Lingala", - family: "Niger-Congo", - country: "Congo, The Democratic Republic of the", - Total: 31170, - Books: 66, - OT: 23213, - NT: 7957, - DT: 0, - }, - { - file: "lit-lit.txt", - code: "lit", - lang: "Lithuanian", - family: "Indo-European", - country: "Lithuania", - Total: 7081, - Books: 66, - OT: 2547, - NT: 4534, - DT: 0, - }, - { - file: "llg-llg.txt", - code: "llg", - lang: "Lole", - family: "Austronesian", - country: "Indonesia", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "lug-lug.txt", - code: "lug", - lang: "Ganda", - family: "Niger-Congo", - country: "Uganda", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "luo-luo.txt", - code: "luo", - lang: "Dholuo", - family: "Nilo-Saharan", - country: "Kenya", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "lww-lww.txt", - code: "lww", - lang: "Lewo", - family: "Austronesian", - country: "Vanuatu", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "maa-maaNT.txt", - code: "maa", - lang: "Mazatec, San Jer\u00f3nimo Tec\u00f3atl", - family: "Otomanguean", - country: "Mexico", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "maj-majNT.txt", - code: "maj", - lang: "Mazatec, Jalapa de D\u00edaz", - family: "Otomanguean", - country: "Mexico", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mal-mal.txt", - code: "mal", - lang: "Malayalam", - family: "Dravidian", - country: "India", - Total: 31089, - Books: 66, - OT: 23136, - NT: 7953, - DT: 0, - }, - { - file: "mal-malc.txt", - code: "mal", - lang: "Malayalam", - family: "Dravidian", - country: "India", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "mam-mamC.txt", - code: "mam", - lang: "Mam", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mam-mamNT.txt", - code: "mam", - lang: "Mam", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "maq-maqNT.txt", - code: "maq", - lang: "Mazatec, Chiquihuitl\u00e1n", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mar-mar.txt", - code: "mar", - lang: "Marathi", - family: "Indo-European", - country: "India", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "mau-mauNT.txt", - code: "mau", - lang: "Mazatec, Huautla", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mav-mavNT.txt", - code: "mav", - lang: "Sater\u00e9-Maw\u00e9", - family: "Tupian", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "maz-mazNT.txt", - code: "maz", - lang: "Mazahua, Central", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mbb-mbbOT.txt", - code: "mbb", - lang: "Manobo, Western Bukidnon", - family: "Austronesian", - country: "Philippines", - Total: 23142, - Books: 39, - OT: 23142, - NT: 0, - DT: 0, - }, - { - file: "mbc-mbcNT.txt", - code: "mbc", - lang: "Macushi", - family: "Cariban", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mbh-mbh.txt", - code: "mbh", - lang: "Mangseng", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "mbj-mbjNT.txt", - code: "mbj", - lang: "Nad\u00ebb", - family: "Puinavean", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mbl-mblNT.txt", - code: "mbl", - lang: "Maxakal\u00ed", - family: "Maxakalian", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mbs-mbs.txt", - code: "mbs", - lang: "Manobo, Sarangani", - family: "Austronesian", - country: "Philippines", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "mbt-mbtNT.txt", - code: "mbt", - lang: "Manobo, Matigsalug", - family: "Austronesian", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mca-mca.txt", - code: "mca", - lang: "Maka", - family: "Matacoan", - country: "Paraguay", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mcb-mcbNT.txt", - code: "mcb", - lang: "Matsigenka", - family: "Maipurean", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mcd-mcdNT.txt", - code: "mcd", - lang: "Sharanahua", - family: "Panoan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mcf-mcfNT.txt", - code: "mcf", - lang: "Matses", - family: "Panoan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mco-mcoNT.txt", - code: "mco", - lang: "Mixe, Coatl\u00e1n", - family: "Mixe-Zoquean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mcp-mcp.txt", - code: "mcp", - lang: "Makaa", - family: "Niger-Congo", - country: "Cameroon", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mcq-mcq.txt", - code: "mcq", - lang: "Ese", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "mcr-mcr.txt", - code: "mcr", - lang: "Menya", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mdy-mdyeth.txt", - code: "mdy", - lang: "Male", - family: "Afro-Asiatic", - country: "Ethiopia", - Total: 7954, - Books: 27, - OT: 0, - NT: 7954, - DT: 0, - }, - { - file: "med-med.txt", - code: "med", - lang: "Melpa", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mee-mee.txt", - code: "mee", - lang: "Mengen", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "mek-mek.txt", - code: "mek", - lang: "Mekeo", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "meq-meq.txt", - code: "meq", - lang: "Merey", - family: "Afro-Asiatic", - country: "Cameroon", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "met-met.txt", - code: "met", - lang: "Mato", - family: "Austronesian", - country: "Papua New Guinea", - Total: 11107, - Books: 31, - OT: 3150, - NT: 7957, - DT: 0, - }, - { - file: "meu-meu.txt", - code: "meu", - lang: "Motu", - family: "Austronesian", - country: "Papua New Guinea", - Total: 31094, - Books: 66, - OT: 23142, - NT: 7952, - DT: 0, - }, - { - file: "mgc-mgc.txt", - code: "mgc", - lang: "Morokodo", - family: "Nilo-Saharan", - country: "South Sudan", - Total: 3846, - Books: 6, - OT: 0, - NT: 3846, - DT: 0, - }, - { - file: "mgh-mgh.txt", - code: "mgh", - lang: "Makhuwa-Meetto", - family: "Niger-Congo", - country: "Mozambique", - Total: 2367, - Books: 4, - OT: 1581, - NT: 786, - DT: 0, - }, - { - file: "mgh-mgh2016.txt", - code: "mgh", - lang: "Makhuwa-Meetto", - family: "Niger-Congo", - country: "Mozambique", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mgw-mgw.txt", - code: "mgw", - lang: "Matumbi", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 2153, - Books: 2, - OT: 0, - NT: 2153, - DT: 0, - }, - { - file: "mhl-mhl.txt", - code: "mhl", - lang: "Mauwake", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mib-mibNT.txt", - code: "mib", - lang: "Mixtec, Atatlahuca", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mic-micMIQNT.txt", - code: "mic", - lang: "Mi\u2019kmaq", - family: "Algic", - country: "Canada", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mie-mieNT.txt", - code: "mie", - lang: "Mixtec, Ocotepec", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mig-migNT.txt", - code: "mig", - lang: "Mixtec, San Miguel el Grande", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mih-mihNT.txt", - code: "mih", - lang: "Mixtec, Chayuco", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mil-milNT.txt", - code: "mil", - lang: "Mixtec, Pe\u00f1oles", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mio-mioNT.txt", - code: "mio", - lang: "Mixtec, Pinotepa Nacional", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mir-mirNT.txt", - code: "mir", - lang: "Mixe, Isthmus", - family: "Mixe-Zoquean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mit-mitNT.txt", - code: "mit", - lang: "Mixtec, Southern Puebla", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "miz-mizNT.txt", - code: "miz", - lang: "Mixtec, Coatzospan", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mjc-mjcNT.txt", - code: "mjc", - lang: "Mixtec, San Juan Colorado", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mkj-mkj.txt", - code: "mkj", - lang: "Mokilese", - family: "Austronesian", - country: "Micronesia, Federated States of", - Total: 2900, - Books: 3, - OT: 0, - NT: 2900, - DT: 0, - }, - { - file: "mkl-mkl.txt", - code: "mkl", - lang: "Mokole", - family: "Niger-Congo", - country: "Benin", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mkn-mkn.txt", - code: "mkn", - lang: "Malay, Kupang", - family: "Creole", - country: "Indonesia", - Total: 9790, - Books: 31, - OT: 1833, - NT: 7957, - DT: 0, - }, - { - file: "mks-mksNT.txt", - code: "mks", - lang: "Mixtec, Silacayoapan", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mle-mle.txt", - code: "mle", - lang: "Manambu", - family: "Sepik", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mlh-mlh.txt", - code: "mlh", - lang: "Mape", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mlp-mlp.txt", - code: "mlp", - lang: "Bargam", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "mmo-mmo.txt", - code: "mmo", - lang: "Buang, Mangga", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mmx-mmx.txt", - code: "mmx", - lang: "Madak", - family: "Austronesian", - country: "Papua New Guinea", - Total: 10417, - Books: 28, - OT: 2460, - NT: 7957, - DT: 0, - }, - { - file: "mna-mna.txt", - code: "mna", - lang: "Mbula", - family: "Austronesian", - country: "Papua New Guinea", - Total: 13792, - Books: 33, - OT: 5835, - NT: 7957, - DT: 0, - }, - { - file: "mop-mopNT.txt", - code: "mop", - lang: "Maya, Mop\u00e1n", - family: "Mayan", - country: "Belize", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mox-mox.txt", - code: "mox", - lang: "Molima", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mph-mph.txt", - code: "mph", - lang: "Maung", - family: "Australian", - country: "Australia", - Total: 680, - Books: 2, - OT: 0, - NT: 680, - DT: 0, - }, - { - file: "mpj-mpj.txt", - code: "mpj", - lang: "Martu Wangka", - family: "Australian", - country: "Australia", - Total: 5658, - Books: 22, - OT: 0, - NT: 5658, - DT: 0, - }, - { - file: "mpm-mpmNT.txt", - code: "mpm", - lang: "Mixtec, Yosond\u00faa", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mpp-mpp.txt", - code: "mpp", - lang: "Migabac", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 8042, - Books: 28, - OT: 85, - NT: 7957, - DT: 0, - }, - { - file: "mps-mps.txt", - code: "mps", - lang: "Dadibi", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "mpt-mpt.txt", - code: "mpt", - lang: "Mian", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mpx-mpx.txt", - code: "mpx", - lang: "Misima-Panaeati", - family: "Austronesian", - country: "Papua New Guinea", - Total: 12159, - Books: 37, - OT: 4204, - NT: 7955, - DT: 0, - }, - { - file: "mqb-mqbNT.txt", - code: "mqb", - lang: "Mbuko", - family: "Afro-Asiatic", - country: "Cameroon", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mqj-mqjNT.txt", - code: "mqj", - lang: "Mamasa", - family: "Austronesian", - country: "Indonesia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "msb-msb.txt", - code: "msb", - lang: "Masbatenyo", - family: "Austronesian", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "msc-msc.txt", - code: "msc", - lang: "Maninka, Sankaran", - family: "Niger-Congo", - country: "Guinea", - Total: 2940, - Books: 4, - OT: 1532, - NT: 1408, - DT: 0, - }, - { - file: "msk-msk.txt", - code: "msk", - lang: "Mansaka", - family: "Austronesian", - country: "Philippines", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "msm-msmNT.txt", - code: "msm", - lang: "Manobo, Agusan", - family: "Austronesian", - country: "Philippines", - Total: 7939, - Books: 27, - OT: 0, - NT: 7939, - DT: 0, - }, - { - file: "msy-msy.txt", - code: "msy", - lang: "Aruamu", - family: "Ramu-Lower Sepik", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "msy-msy2020.txt", - code: "msy", - lang: "Aruamu", - family: "Ramu-Lower Sepik", - country: "Papua New Guinea", - Total: 31098, - Books: 66, - OT: 23141, - NT: 7957, - DT: 0, - }, - { - file: "mti-mti.txt", - code: "mti", - lang: "Maiwa", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "mto-mtoNT.txt", - code: "mto", - lang: "Mixe, Totontepec", - family: "Mixe-Zoquean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mux-mux.txt", - code: "mux", - lang: "Bo-Ung", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "muy-muy.txt", - code: "muy", - lang: "Muyang", - family: "Afro-Asiatic", - country: "Cameroon", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mva-mva.txt", - code: "mva", - lang: "Manam", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mvn-mvn.txt", - code: "mvn", - lang: "Minaveha", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7951, - Books: 27, - OT: 0, - NT: 7951, - DT: 0, - }, - { - file: "mwc-mwc.txt", - code: "mwc", - lang: "Are", - family: "Austronesian", - country: "Papua New Guinea", - Total: 4409, - Books: 12, - OT: 1580, - NT: 2829, - DT: 0, - }, - { - file: "mwe-mwe.txt", - code: "mwe", - lang: "Mwera", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mwf-mwf2018.txt", - code: "mwf", - lang: "Murrinh-Patha", - family: "Australian", - country: "Australia", - Total: 4374, - Books: 12, - OT: 290, - NT: 4084, - DT: 0, - }, - { - file: "mwp-mwp.txt", - code: "mwp", - lang: "Kala Lagaw Ya", - family: "Australian", - country: "Australia", - Total: 5928, - Books: 8, - OT: 1533, - NT: 4395, - DT: 0, - }, - { - file: "mxb-mxbNT.txt", - code: "mxb", - lang: "Mixtec, Tezoatl\u00e1n", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mxp-mxpNT.txt", - code: "mxp", - lang: "Mixe, Tlahuitoltepec", - family: "Mixe-Zoquean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mxq-mxqNT.txt", - code: "mxq", - lang: "Mixe, Juquila", - family: "Mixe-Zoquean", - country: "Mexico", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "mxt-mxtNT.txt", - code: "mxt", - lang: "Mixtec, Jamiltepec", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "mya-mya.txt", - code: "mya", - lang: "Burmese", - family: "Sino-Tibetan", - country: "Myanmar", - Total: 31072, - Books: 66, - OT: 23116, - NT: 7956, - DT: 0, - }, - { - file: "mya-myajvb.txt", - code: "mya", - lang: "Burmese", - family: "Sino-Tibetan", - country: "Myanmar", - Total: 31040, - Books: 66, - OT: 23085, - NT: 7955, - DT: 0, - }, - { - file: "myk-myk.txt", - code: "myk", - lang: "S\u00e9noufo, Mamara", - family: "Niger-Congo", - country: "Mali", - Total: 8089, - Books: 29, - OT: 132, - NT: 7957, - DT: 0, - }, - { - file: "myu-myu.txt", - code: "myu", - lang: "Munduruk\u00fa", - family: "Tupian", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "myw-myw.txt", - code: "myw", - lang: "Muyuw", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "myy-myy.txt", - code: "myy", - lang: "Macuna", - family: "Tucanoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "mzz-mzz.txt", - code: "mzz", - lang: "Maiadomu", - family: "Austronesian", - country: "Papua New Guinea", - Total: 678, - Books: 1, - OT: 0, - NT: 678, - DT: 0, - }, - { - file: "nab-nabNT.txt", - code: "nab", - lang: "Nambiku\u00e1ra, Southern", - family: "Nambikwara", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "naf-naf.txt", - code: "naf", - lang: "Nabak", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "nak-nak.txt", - code: "nak", - lang: "Nakanai", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "nas-nas.txt", - code: "nas", - lang: "Naasioi", - family: "South Bougainville", - country: "Papua New Guinea", - Total: 8094, - Books: 28, - OT: 138, - NT: 7956, - DT: 0, - }, - { - file: "nay-nay.txt", - code: "nay", - lang: "Ngarrindjeri", - family: "Australian", - country: "Australia", - Total: 390, - Books: 4, - OT: 121, - NT: 269, - DT: 0, - }, - { - file: "nbq-nbq.txt", - code: "nbq", - lang: "Nggem", - family: "Trans-New Guinea", - country: "Indonesia", - Total: 3855, - Books: 13, - OT: 0, - NT: 3855, - DT: 0, - }, - { - file: "nca-nca.txt", - code: "nca", - lang: "Iyo", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "nch-nchBl.txt", - code: "nch", - lang: "Nahuatl, Central Huasteca", - family: "Uto-Aztecan", - country: "Mexico", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "ncj-ncjNT.txt", - code: "ncj", - lang: "Nahuatl, Northern Puebla", - family: "Uto-Aztecan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ncl-nclNT.txt", - code: "ncl", - lang: "Nahuatl, Michoac\u00e1n", - family: "Uto-Aztecan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ncu-ncuNT.txt", - code: "ncu", - lang: "Chumburung", - family: "Niger-Congo", - country: "Ghana", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ndg-ndg.txt", - code: "ndg", - lang: "Ndengereko", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7951, - Books: 27, - OT: 0, - NT: 7951, - DT: 0, - }, - { - file: "ndj-ndj.txt", - code: "ndj", - lang: "Ndamba", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "nfa-nfa.txt", - code: "nfa", - lang: "Dhao", - family: "Austronesian", - country: "Indonesia", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "ngp-ngp.txt", - code: "ngp", - lang: "Ngulu", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ngu-nguNT.txt", - code: "ngu", - lang: "Nahuatl, Guerrero", - family: "Uto-Aztecan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "nhe-nheBl.txt", - code: "nhe", - lang: "Nahuatl, Eastern Huasteca", - family: "Uto-Aztecan", - country: "Mexico", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "nhe-nheNT.txt", - code: "nhe", - lang: "Nahuatl, Eastern Huasteca", - family: "Uto-Aztecan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "nhg-nhgNT.txt", - code: "nhg", - lang: "Nahuatl, Tetelcingo", - family: "Uto-Aztecan", - country: "Mexico", - Total: 7954, - Books: 27, - OT: 0, - NT: 7954, - DT: 0, - }, - { - file: "nhi-nhiNT.txt", - code: "nhi", - lang: "Nahuatl, Zacatl\u00e1n-Ahuacatl\u00e1n-Tepetzintla", - family: "Uto-Aztecan", - country: "Mexico", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "nho-nho.txt", - code: "nho", - lang: "Takuu", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "nhr-nhr.txt", - code: "nhr", - lang: "Naro", - family: "Khoe-Kwadi", - country: "Botswana", - Total: 7949, - Books: 27, - OT: 0, - NT: 7949, - DT: 0, - }, - { - file: "nhu-nhuNT.txt", - code: "nhu", - lang: "Noone", - family: "Niger-Congo", - country: "Cameroon", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "nhw-nhwBl.txt", - code: "nhw", - lang: "Nahuatl, Western Huasteca", - family: "Uto-Aztecan", - country: "Mexico", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "nhy-nhyNT.txt", - code: "nhy", - lang: "Nahuatl, Northern Oaxaca", - family: "Uto-Aztecan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "nif-nif.txt", - code: "nif", - lang: "Nek", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 3779, - Books: 4, - OT: 0, - NT: 3779, - DT: 0, - }, - { - file: "nii-nii.txt", - code: "nii", - lang: "Nii", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "nin-ninNT.txt", - code: "nin", - lang: "Ninzo", - family: "Niger-Congo", - country: "Nigeria", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "nko-nkoNT.txt", - code: "nko", - lang: "Nkonya", - family: "Niger-Congo", - country: "Ghana", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "nld-nld1939.txt", - code: "nld", - lang: "Dutch", - family: "Indo-European", - country: "Netherlands", - Total: 34780, - Books: 73, - OT: 22785, - NT: 7954, - DT: 4041, - }, - { - file: "nlg-nlg.txt", - code: "nlg", - lang: "Gela", - family: "Austronesian", - country: "Solomon Islands", - Total: 14632, - Books: 36, - OT: 6681, - NT: 7951, - DT: 0, - }, - { - file: "nmw-nmws.txt", - code: "nmw", - lang: "Rifao", - family: "Austronesian", - country: "Papua New Guinea", - Total: 1226, - Books: 2, - OT: 0, - NT: 1226, - DT: 0, - }, - { - file: "nna-nna.txt", - code: "nna", - lang: "Nyangumarta", - family: "Australian", - country: "Australia", - Total: 2399, - Books: 27, - OT: 1594, - NT: 805, - DT: 0, - }, - { - file: "nnq-nnq.txt", - code: "nnq", - lang: "Ngindo", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "noa-noaE.txt", - code: "noa", - lang: "Woun Meu", - family: "Chocoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "noa-noaH.txt", - code: "noa", - lang: "Woun Meu", - family: "Chocoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "nop-nop.txt", - code: "nop", - lang: "Numanggang", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 11950, - Books: 29, - OT: 3993, - NT: 7957, - DT: 0, - }, - { - file: "not-notNT.txt", - code: "not", - lang: "Nomatsigenga", - family: "Maipurean", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "nou-nou.txt", - code: "nou", - lang: "Ewage-Notu", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "npi-npiulb.txt", - code: "npi", - lang: "Nepali", - family: "Indo-European", - country: "Nepal", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "npl-nplNT.txt", - code: "npl", - lang: "Nahuatl, Southeastern Puebla", - family: "Uto-Aztecan", - country: "Mexico", - Total: 7951, - Books: 27, - OT: 0, - NT: 7951, - DT: 0, - }, - { - file: "nsn-nsn.txt", - code: "nsn", - lang: "Nehan", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "nss-nss.txt", - code: "nss", - lang: "Nali", - family: "Austronesian", - country: "Papua New Guinea", - Total: 5510, - Books: 7, - OT: 1533, - NT: 3977, - DT: 0, - }, - { - file: "ntj-ntj.txt", - code: "ntj", - lang: "Ngaanyatjarra", - family: "Australian", - country: "Australia", - Total: 13028, - Books: 50, - OT: 5072, - NT: 7956, - DT: 0, - }, - { - file: "ntp-ntpNT.txt", - code: "ntp", - lang: "Tepehuan, Northern", - family: "Uto-Aztecan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ntu-ntu.txt", - code: "ntu", - lang: "Nat\u00fcgu", - family: "Austronesian", - country: "Solomon Islands", - Total: 10500, - Books: 29, - OT: 2545, - NT: 7955, - DT: 0, - }, - { - file: "nuy-nuy.txt", - code: "nuy", - lang: "Nunggubuyu", - family: "Australian", - country: "Australia", - Total: 8377, - Books: 30, - OT: 432, - NT: 7945, - DT: 0, - }, - { - file: "nvm-nvm.txt", - code: "nvm", - lang: "Namiae", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "nwi-nwi.txt", - code: "nwi", - lang: "Tanna, Southwest", - family: "Austronesian", - country: "Vanuatu", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "nya-nya.txt", - code: "nya", - lang: "Chichewa", - family: "Niger-Congo", - country: "Malawi", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "nys-nys.txt", - code: "nys", - lang: "Nyungar", - family: "Australian", - country: "Australia", - Total: 1285, - Books: 3, - OT: 85, - NT: 1200, - DT: 0, - }, - { - file: "nyu-nyu.txt", - code: "nyu", - lang: "Nyungwe", - family: "Niger-Congo", - country: "Mozambique", - Total: 2027, - Books: 5, - OT: 48, - NT: 1979, - DT: 0, - }, - { - file: "obo-oboNT.txt", - code: "obo", - lang: "Manobo, Obo", - family: "Austronesian", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "okv-okv.txt", - code: "okv", - lang: "Orokaiva", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "okv-okvh.txt", - code: "okv", - lang: "Orokaiva", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7948, - Books: 27, - OT: 0, - NT: 7948, - DT: 0, - }, - { - file: "omw-omw-a.txt", - code: "omw", - lang: "Tairora, South", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 1557, - Books: 2, - OT: 0, - NT: 1557, - DT: 0, - }, - { - file: "omw-omw-v.txt", - code: "omw", - lang: "Tairora, South", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 348, - Books: 4, - OT: 0, - NT: 348, - DT: 0, - }, - { - file: "omw-omw.txt", - code: "omw", - lang: "Tairora, South", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ong-ong.txt", - code: "ong", - lang: "Olo", - family: "Torricelli", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ons-ons.txt", - code: "ons", - lang: "Ono", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ood-oodNT.txt", - code: "ood", - lang: "Tohono O\u2019odham", - family: "Uto-Aztecan", - country: "United States", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "opm-opm.txt", - code: "opm", - lang: "Oksapmin", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ory-ory.txt", - code: "ory", - lang: "Odia", - family: "Indo-European", - country: "India", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "ote-oteNT.txt", - code: "ote", - lang: "Otomi, Mezquital", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "otm-otmNT.txt", - code: "otm", - lang: "Otomi, Eastern Highland", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "otn-otnNT.txt", - code: "otn", - lang: "Otomi, Tenango", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "otq-otqNT.txt", - code: "otq", - lang: "Otomi, Quer\u00e9taro", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ots-otsNT.txt", - code: "ots", - lang: "Otom\u00ed, Estado de M\u00e9xico", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "pab-pabNT.txt", - code: "pab", - lang: "Parec\u00eds", - family: "Maipurean", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "pad-padNT.txt", - code: "pad", - lang: "Paumar\u00ed", - family: "Arauan", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "pah-pahNT.txt", - code: "pah", - lang: "Tenharim", - family: "Tupian", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "pan-pan.txt", - code: "pan", - lang: "Punjabi, Eastern", - family: "Indo-European", - country: "India", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "pao-paoNT.txt", - code: "pao", - lang: "Paiute, Northern", - family: "Uto-Aztecan", - country: "United States", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "pes-pesOPV.txt", - code: "pes", - lang: "Persian, Iranian", - family: "Indo-European", - country: "Iran, Islamic Republic of", - Total: 31078, - Books: 66, - OT: 23130, - NT: 7948, - DT: 0, - }, - { - file: "pib-pibNT.txt", - code: "pib", - lang: "Yine", - family: "Maipurean", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "pio-pioNT.txt", - code: "pio", - lang: "Piapoco", - family: "Maipurean", - country: "Colombia", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "pir-pirNT.txt", - code: "pir", - lang: "Piratapuyo", - family: "Tucanoan", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "piu-piu2006.txt", - code: "piu", - lang: "Pintupi-Luritja", - family: "Australian", - country: "Australia", - Total: 14699, - Books: 56, - OT: 6742, - NT: 7957, - DT: 0, - }, - { - file: "pjt-pjt.txt", - code: "pjt", - lang: "Pitjantjatjara", - family: "Australian", - country: "Australia", - Total: 12948, - Books: 44, - OT: 4992, - NT: 7956, - DT: 0, - }, - { - file: "pls-plsNT.txt", - code: "pls", - lang: "Popoloca, San Marcos Tlacoyalco", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "plu-plu.txt", - code: "plu", - lang: "Palik\u00far", - family: "Maipurean", - country: "Brazil", - Total: 7954, - Books: 27, - OT: 0, - NT: 7954, - DT: 0, - }, - { - file: "pma-pma.txt", - code: "pma", - lang: "Paama", - family: "Austronesian", - country: "Vanuatu", - Total: 11047, - Books: 54, - OT: 3104, - NT: 7943, - DT: 0, - }, - { - file: "poe-poeNT.txt", - code: "poe", - lang: "Popoloca, San Juan Atzingo", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "poh-pohNT.txt", - code: "poh", - lang: "Poqomchi\u2019", - family: "Mayan", - country: "Guatemala", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "poi-poiNT.txt", - code: "poi", - lang: "Popoluca, Highland", - family: "Mixe-Zoquean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "pol-polsz.txt", - code: "pol", - lang: "Polish", - family: "Indo-European", - country: "Poland", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "pol-polubg.txt", - code: "pol", - lang: "Polish", - family: "Indo-European", - country: "Poland", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "pon-pon-pdn.txt", - code: "pon", - lang: "Pohnpeian", - family: "Austronesian", - country: "Micronesia, Federated States of", - Total: 10414, - Books: 28, - OT: 2460, - NT: 7954, - DT: 0, - }, - { - file: "pon-pon.txt", - code: "pon", - lang: "Pohnpeian", - family: "Austronesian", - country: "Micronesia, Federated States of", - Total: 10414, - Books: 28, - OT: 2460, - NT: 7954, - DT: 0, - }, - { - file: "pon-pon2006.txt", - code: "pon", - lang: "Pohnpeian", - family: "Austronesian", - country: "Micronesia, Federated States of", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "pon-pon2006a.txt", - code: "pon", - lang: "Pohnpeian", - family: "Austronesian", - country: "Micronesia, Federated States of", - Total: 32934, - Books: 72, - OT: 23142, - NT: 7956, - DT: 1836, - }, - { - file: "por-porblt.txt", - code: "por", - lang: "Portuguese", - family: "Indo-European", - country: "Portugal", - Total: 7940, - Books: 27, - OT: 0, - NT: 7940, - DT: 0, - }, - { - file: "por-porbr2018.txt", - code: "por", - lang: "Portuguese", - family: "Indo-European", - country: "Portugal", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "por-porbrbsl.txt", - code: "por", - lang: "Portuguese", - family: "Indo-European", - country: "Portugal", - Total: 31090, - Books: 66, - OT: 23142, - NT: 7948, - DT: 0, - }, - { - file: "por-portft.txt", - code: "por", - lang: "Portuguese", - family: "Indo-European", - country: "Portugal", - Total: 7953, - Books: 27, - OT: 0, - NT: 7953, - DT: 0, - }, - { - file: "poy-poy.txt", - code: "poy", - lang: "Pogolo", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ppo-ppo.txt", - code: "ppo", - lang: "Folopa", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "prf-prfNT.txt", - code: "prf", - lang: "Paranan", - family: "Austronesian", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "pri-priNT.txt", - code: "pri", - lang: "Paic\u00ee", - family: "Austronesian", - country: "New Caledonia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ptp-ptp.txt", - code: "ptp", - lang: "Patep", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ptu-ptu.txt", - code: "ptu", - lang: "Bambam", - family: "Austronesian", - country: "Indonesia", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "pwg-pwg.txt", - code: "pwg", - lang: "Gapapaiwa", - family: "Austronesian", - country: "Papua New Guinea", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "qub-qub.txt", - code: "qub", - lang: "Quechua, Huallaga", - family: "Quechuan", - country: "Peru", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "quc-qucNNT.txt", - code: "quc", - lang: "K\u2019iche\u2019", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "quc-qucTNT.txt", - code: "quc", - lang: "K\u2019iche\u2019", - family: "Mayan", - country: "Guatemala", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "quf-qufNT.txt", - code: "quf", - lang: "Quechua, Lambayeque", - family: "Quechuan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "quh-quhNT.txt", - code: "quh", - lang: "Quechua, South Bolivian", - family: "Quechuan", - country: "Bolivia, Plurinational State of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "qul-qulNT.txt", - code: "qul", - lang: "Quechua, North Bolivian", - family: "Quechuan", - country: "Bolivia, Plurinational State of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "qup-qupNT.txt", - code: "qup", - lang: "Quechua, Southern Pastaza", - family: "Quechuan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "qvc-qvcNT.txt", - code: "qvc", - lang: "Quechua, Cajamarca", - family: "Quechuan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "qve-qveNT.txt", - code: "qve", - lang: "Quechua, Eastern Apur\u00edmac", - family: "Quechuan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "qvh-qvhNT.txt", - code: "qvh", - lang: "Quechua, Huamal\u00edes-Dos de Mayo Hu\u00e1nuco", - family: "Quechuan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "qvm-qvmNT.txt", - code: "qvm", - lang: "Quechua, Margos-Yarowilca-Lauricocha", - family: "Quechuan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "qvn-qvnNT.txt", - code: "qvn", - lang: "Quechua, North Jun\u00edn", - family: "Quechuan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "qvs-qvsNT.txt", - code: "qvs", - lang: "Quechua, San Mart\u00edn", - family: "Quechuan", - country: "Peru", - Total: 8308, - Books: 28, - OT: 351, - NT: 7957, - DT: 0, - }, - { - file: "qvw-qvwNT.txt", - code: "qvw", - lang: "Quechua, Huaylla Wanca", - family: "Quechuan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "qvz-qvzNT.txt", - code: "qvz", - lang: "Quichua, Northern Pastaza", - family: "Quechuan", - country: "Ecuador", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "qwh-qwhNT.txt", - code: "qwh", - lang: "Quechua, Huaylas Ancash", - family: "Quechuan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "qxh-qxhNT.txt", - code: "qxh", - lang: "Quechua, Panao", - family: "Quechuan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "qxn-qxnNT.txt", - code: "qxn", - lang: "Quechua, Northern Conchucos Ancash", - family: "Quechuan", - country: "Peru", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "qxo-qxoNT.txt", - code: "qxo", - lang: "Quechua, Southern Conchucos", - family: "Quechuan", - country: "Peru", - Total: 7954, - Books: 27, - OT: 0, - NT: 7954, - DT: 0, - }, - { - file: "rai-rai.txt", - code: "rai", - lang: "Ramoaaina", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "reg-reg.txt", - code: "reg", - lang: "Kara", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7954, - Books: 27, - OT: 0, - NT: 7954, - DT: 0, - }, - { - file: "rgu-rgu.txt", - code: "rgu", - lang: "Rikou", - family: "Austronesian", - country: "Indonesia", - Total: 8611, - Books: 27, - OT: 1533, - NT: 7078, - DT: 0, - }, - { - file: "rkb-rkbNT.txt", - code: "rkb", - lang: "Rikbaktsa", - family: "Language isolate", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "rmc-rmc.txt", - code: "rmc", - lang: "Romani, Carpathian", - family: "Indo-European", - country: "Slovakia", - Total: 20019, - Books: 44, - OT: 12062, - NT: 7957, - DT: 0, - }, - { - file: "rmy-rmyArli.txt", - code: "rmy", - lang: "Romani, Vlax", - family: "Indo-European", - country: "Romania", - Total: 1150, - Books: 1, - OT: 0, - NT: 1150, - DT: 0, - }, - { - file: "rmy-rmyChergash.txt", - code: "rmy", - lang: "Romani, Vlax", - family: "Indo-European", - country: "Romania", - Total: 1150, - Books: 1, - OT: 0, - NT: 1150, - DT: 0, - }, - { - file: "rmy-rmyGurbet.txt", - code: "rmy", - lang: "Romani, Vlax", - family: "Indo-European", - country: "Romania", - Total: 1150, - Books: 1, - OT: 0, - NT: 1150, - DT: 0, - }, - { - file: "ron-ron1924.txt", - code: "ron", - lang: "Romanian", - family: "Indo-European", - country: "Romania", - Total: 31040, - Books: 66, - OT: 23142, - NT: 7898, - DT: 0, - }, - { - file: "ron-ronBayash.txt", - code: "ron", - lang: "Romanian", - family: "Indo-European", - country: "Romania", - Total: 1149, - Books: 1, - OT: 0, - NT: 1149, - DT: 0, - }, - { - file: "ron-ronlsb.txt", - code: "ron", - lang: "Romanian", - family: "Indo-European", - country: "Romania", - Total: 7948, - Books: 27, - OT: 0, - NT: 7948, - DT: 0, - }, - { - file: "ron-ronludari.txt", - code: "ron", - lang: "Romanian", - family: "Indo-European", - country: "Romania", - Total: 1151, - Books: 1, - OT: 0, - NT: 1151, - DT: 0, - }, - { - file: "roo-roo.txt", - code: "roo", - lang: "Rotokas", - family: "North Bougainville", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "rop-rop.txt", - code: "rop", - lang: "Kriol", - family: "Creole", - country: "Australia", - Total: 31098, - Books: 66, - OT: 23141, - NT: 7957, - DT: 0, - }, - { - file: "row-row.txt", - code: "row", - lang: "Dela-Oenale", - family: "Austronesian", - country: "Indonesia", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "rro-rro.txt", - code: "rro", - lang: "Waima", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ruf-ruf.txt", - code: "ruf", - lang: "Luguru", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "rug-rug.txt", - code: "rug", - lang: "Roviana", - family: "Austronesian", - country: "Solomon Islands", - Total: 31092, - Books: 66, - OT: 23143, - NT: 7949, - DT: 0, - }, - { - file: "rus-russyn.txt", - code: "rus", - lang: "Russian", - family: "Indo-European", - country: "Russian Federation", - Total: 31160, - Books: 66, - OT: 23205, - NT: 7955, - DT: 0, - }, - { - file: "rwo-rwo-karo.txt", - code: "rwo", - lang: "Rawa", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "rwo-rwo-rawa.txt", - code: "rwo", - lang: "Rawa", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "sab-sabNT.txt", - code: "sab", - lang: "Buglere", - family: "Chibchan", - country: "Panama", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-sanasm.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-sanben.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-sanbur.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-sandev.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-sanguj.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-sanhk.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-sanias.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-saniso.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-sanitr.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-sankhm.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-sanmal.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-sanori.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-sanpun.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-sansin.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-santam.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-santel.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-santha.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-santib.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-sanurd.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "san-sanvel.txt", - code: "san", - lang: "Sanskrit", - family: "Indo-European", - country: "India", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "sbe-sbe.txt", - code: "sbe", - lang: "Saliba", - family: "Austronesian", - country: "Papua New Guinea", - Total: 6326, - Books: 24, - OT: 0, - NT: 6326, - DT: 0, - }, - { - file: "sbk-sbk.txt", - code: "sbk", - lang: "Safwa", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7951, - Books: 27, - OT: 0, - NT: 7951, - DT: 0, - }, - { - file: "sbs-sbs.txt", - code: "sbs", - lang: "Kuhane", - family: "Niger-Congo", - country: "Namibia", - Total: 7953, - Books: 27, - OT: 0, - NT: 7953, - DT: 0, - }, - { - file: "seh-seh.txt", - code: "seh", - lang: "Sena", - family: "Niger-Congo", - country: "Mozambique", - Total: 1962, - Books: 5, - OT: 0, - NT: 1962, - DT: 0, - }, - { - file: "sey-seyNT.txt", - code: "sey", - lang: "Paicoca", - family: "Tucanoan", - country: "Ecuador", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "sgb-sgb.txt", - code: "sgb", - lang: "Ayta, Mag-antsi", - family: "Austronesian", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "sgz-sgz.txt", - code: "sgz", - lang: "Sursurunga", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "shj-shj.txt", - code: "shj", - lang: "Shatt", - family: "Nilo-Saharan", - country: "Sudan", - Total: 1151, - Books: 1, - OT: 0, - NT: 1151, - DT: 0, - }, - { - file: "shp-shpNTpo.txt", - code: "shp", - lang: "Shipibo-Conibo", - family: "Panoan", - country: "Peru", - Total: 9807, - Books: 33, - OT: 1850, - NT: 7957, - DT: 0, - }, - { - file: "sim-sim.txt", - code: "sim", - lang: "Mende", - family: "Sepik", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "sja-sjaNT.txt", - code: "sja", - lang: "Epena", - family: "Chocoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "sll-sll.txt", - code: "sll", - lang: "Yui", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7951, - Books: 27, - OT: 0, - NT: 7951, - DT: 0, - }, - { - file: "smk-smkNT.txt", - code: "smk", - lang: "Bolinao", - family: "Austronesian", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "snc-snc.txt", - code: "snc", - lang: "Sinaugoro", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "snn-snnNT.txt", - code: "snn", - lang: "Siona", - family: "Tucanoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "snp-snp-lambau.txt", - code: "snp", - lang: "Siane", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "snp-snp.txt", - code: "snp", - lang: "Siane", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "snx-snx.txt", - code: "snx", - lang: "Sam", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 678, - Books: 1, - OT: 0, - NT: 678, - DT: 0, - }, - { - file: "sny-sny.txt", - code: "sny", - lang: "Saniyo-Hiyewe", - family: "Sepik", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "som-som.txt", - code: "som", - lang: "Somali", - family: "Afro-Asiatic", - country: "Somalia", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "soq-soq.txt", - code: "soq", - lang: "Kanasi", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 10856, - Books: 55, - OT: 2901, - NT: 7955, - DT: 0, - }, - { - file: "soy-soy.txt", - code: "soy", - lang: "Miyobe", - family: "Niger-Congo", - country: "Benin", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "spa-spabes.txt", - code: "spa", - lang: "Spanish", - family: "Indo-European", - country: "Spain", - Total: 31096, - Books: 66, - OT: 23141, - NT: 7955, - DT: 0, - }, - { - file: "spa-spablm.txt", - code: "spa", - lang: "Spanish", - family: "Indo-European", - country: "Spain", - Total: 37395, - Books: 81, - OT: 23142, - NT: 7948, - DT: 6305, - }, - { - file: "spa-spapddpt.txt", - code: "spa", - lang: "Spanish", - family: "Indo-European", - country: "Spain", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "spa-spaRV1909.txt", - code: "spa", - lang: "Spanish", - family: "Indo-European", - country: "Spain", - Total: 31081, - Books: 66, - OT: 23126, - NT: 7955, - DT: 0, - }, - { - file: "spa-sparvg.txt", - code: "spa", - lang: "Spanish", - family: "Indo-European", - country: "Spain", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "spa-spavbl.txt", - code: "spa", - lang: "Spanish", - family: "Indo-European", - country: "Spain", - Total: 31081, - Books: 66, - OT: 23142, - NT: 7939, - DT: 0, - }, - { - file: "spl-spl.txt", - code: "spl", - lang: "Selepet", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "spm-spm.txt", - code: "spm", - lang: "Akukem", - family: "Ramu-Lower Sepik", - country: "Papua New Guinea", - Total: 1684, - Books: 2, - OT: 0, - NT: 1684, - DT: 0, - }, - { - file: "spp-spp.txt", - code: "spp", - lang: "S\u00e9noufo, Supyire", - family: "Niger-Congo", - country: "Mali", - Total: 9574, - Books: 29, - OT: 1617, - NT: 7957, - DT: 0, - }, - { - file: "sps-sps.txt", - code: "sps", - lang: "Saposa", - family: "Austronesian", - country: "Papua New Guinea", - Total: 8242, - Books: 29, - OT: 285, - NT: 7957, - DT: 0, - }, - { - file: "spy-spyNT.txt", - code: "spy", - lang: "Sabaot", - family: "Nilo-Saharan", - country: "Kenya", - Total: 7943, - Books: 27, - OT: 0, - NT: 7943, - DT: 0, - }, - { - file: "sri-sri.txt", - code: "sri", - lang: "Siriano", - family: "Tucanoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "srm-srmNT.txt", - code: "srm", - lang: "Saramaccan", - family: "Creole", - country: "Suriname", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "srn-srnNT.txt", - code: "srn", - lang: "Sranan Tongo", - family: "Creole", - country: "Suriname", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "srp-srp1865.txt", - code: "srp", - lang: "Serbian", - family: "Indo-European", - country: "Serbia", - Total: 31072, - Books: 66, - OT: 23119, - NT: 7953, - DT: 0, - }, - { - file: "srq-srqNT.txt", - code: "srq", - lang: "Sirion\u00f3", - family: "Tupian", - country: "Bolivia, Plurinational State of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ssd-ssd.txt", - code: "ssd", - lang: "Siroi", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 11147, - Books: 33, - OT: 3190, - NT: 7957, - DT: 0, - }, - { - file: "ssg-ssg.txt", - code: "ssg", - lang: "Seimat", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ssx-ssx.txt", - code: "ssx", - lang: "Samberigi", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 9489, - Books: 28, - OT: 1533, - NT: 7956, - DT: 0, - }, - { - file: "stp-stpNT.txt", - code: "stp", - lang: "Tepehuan, Southeastern", - family: "Uto-Aztecan", - country: "Mexico", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "sua-sua.txt", - code: "sua", - lang: "Sulka", - family: "Language isolate", - country: "Papua New Guinea", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "sue-sue.txt", - code: "sue", - lang: "Suena", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "sus-sus.txt", - code: "sus", - lang: "Susu", - family: "Niger-Congo", - country: "Guinea", - Total: 31170, - Books: 66, - OT: 23213, - NT: 7957, - DT: 0, - }, - { - file: "sus-susa.txt", - code: "sus", - lang: "Susu", - family: "Niger-Congo", - country: "Guinea", - Total: 31170, - Books: 66, - OT: 23213, - NT: 7957, - DT: 0, - }, - { - file: "suz-suzBl.txt", - code: "suz", - lang: "Sunwar", - family: "Sino-Tibetan", - country: "Nepal", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "swe-swe.txt", - code: "swe", - lang: "Swedish", - family: "Indo-European", - country: "Sweden", - Total: 11913, - Books: 32, - OT: 3968, - NT: 7945, - DT: 0, - }, - { - file: "swh-swh1850.txt", - code: "swh", - lang: "Swahili", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7851, - Books: 26, - OT: 0, - NT: 7851, - DT: 0, - }, - { - file: "swh-swhonen.txt", - code: "swh", - lang: "Swahili", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "swh-swhulb.txt", - code: "swh", - lang: "Swahili", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "swp-swp.txt", - code: "swp", - lang: "Suau", - family: "Austronesian", - country: "Papua New Guinea", - Total: 11725, - Books: 31, - OT: 3769, - NT: 7956, - DT: 0, - }, - { - file: "sxb-sxbNT.txt", - code: "sxb", - lang: "Suba", - family: "Niger-Congo", - country: "Kenya", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tac-tacNT.txt", - code: "tac", - lang: "Tarahumara, Western", - family: "Uto-Aztecan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "taj-taj.txt", - code: "taj", - lang: "Tamang, Eastern", - family: "Sino-Tibetan", - country: "Nepal", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tam-tam2017.txt", - code: "tam", - lang: "Tamil", - family: "Dravidian", - country: "India", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "tav-tav.txt", - code: "tav", - lang: "Tatuyo", - family: "Tucanoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "taw-taw.txt", - code: "taw", - lang: "Tay", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tbc-tbc.txt", - code: "tbc", - lang: "Takia", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7950, - Books: 27, - OT: 0, - NT: 7950, - DT: 0, - }, - { - file: "tbf-tbf.txt", - code: "tbf", - lang: "Mandara", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tbg-tbg-a.txt", - code: "tbg", - lang: "Tairora, North", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 793, - Books: 5, - OT: 434, - NT: 359, - DT: 0, - }, - { - file: "tbg-tbg.txt", - code: "tbg", - lang: "Tairora, North", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 19848, - Books: 45, - OT: 11891, - NT: 7957, - DT: 0, - }, - { - file: "tbl-tblNT.txt", - code: "tbl", - lang: "Tboli", - family: "Austronesian", - country: "Philippines", - Total: 1071, - Books: 1, - OT: 0, - NT: 1071, - DT: 0, - }, - { - file: "tbo-tbo.txt", - code: "tbo", - lang: "Tawala", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7950, - Books: 27, - OT: 0, - NT: 7950, - DT: 0, - }, - { - file: "tbz-tbzsim.txt", - code: "tbz", - lang: "Ditammari", - family: "Niger-Congo", - country: "Benin", - Total: 31169, - Books: 66, - OT: 23212, - NT: 7957, - DT: 0, - }, - { - file: "tca-tcaNT.txt", - code: "tca", - lang: "Ticuna", - family: "Language isolate", - country: "Brazil", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "tcs-tcs.txt", - code: "tcs", - lang: "Torres Strait Creole", - family: "Creole", - country: "Australia", - Total: 9622, - Books: 30, - OT: 1666, - NT: 7956, - DT: 0, - }, - { - file: "tcz-tczchongthu.txt", - code: "tcz", - lang: "Chin, Thado", - family: "Sino-Tibetan", - country: "India", - Total: 31068, - Books: 66, - OT: 23113, - NT: 7955, - DT: 0, - }, - { - file: "tdt-tdt.txt", - code: "tdt", - lang: "Tetun Dili", - family: "Creole", - country: "Timor-Leste", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tee-teeNT.txt", - code: "tee", - lang: "Tepehua, Huehuetla", - family: "Totonacan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "tel-tel2017.txt", - code: "tel", - lang: "Telugu", - family: "Dravidian", - country: "India", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "ter-terNT.txt", - code: "ter", - lang: "Ter\u00eana", - family: "Maipurean", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tet-tet.txt", - code: "tet", - lang: "Tetun", - family: "Austronesian", - country: "Timor-Leste", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "tew-tew.txt", - code: "tew", - lang: "Tewa", - family: "Kiowa-Tanoan", - country: "United States", - Total: 4997, - Books: 17, - OT: 0, - NT: 4997, - DT: 0, - }, - { - file: "tfr-tfrNTpo.txt", - code: "tfr", - lang: "Teribe", - family: "Chibchan", - country: "Panama", - Total: 9623, - Books: 30, - OT: 1666, - NT: 7957, - DT: 0, - }, - { - file: "tgk-tgk.txt", - code: "tgk", - lang: "Tajik", - family: "Indo-European", - country: "Tajikistan", - Total: 4411, - Books: 13, - OT: 252, - NT: 4159, - DT: 0, - }, - { - file: "tgl-tglulb.txt", - code: "tgl", - lang: "Tagalog", - family: "Austronesian", - country: "Philippines", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "tgo-tgo.txt", - code: "tgo", - lang: "Sudest", - family: "Austronesian", - country: "Papua New Guinea", - Total: 8087, - Books: 29, - OT: 133, - NT: 7954, - DT: 0, - }, - { - file: "tgp-tgp.txt", - code: "tgp", - lang: "Tangoa", - family: "Austronesian", - country: "Vanuatu", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tha-thaKJV.txt", - code: "tha", - lang: "Thai", - family: "Kra-Dai", - country: "Thailand", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "thd-thd.txt", - code: "thd", - lang: "Kuuk Thayorre", - family: "Australian", - country: "Australia", - Total: 171, - Books: 4, - OT: 5, - NT: 166, - DT: 0, - }, - { - file: "tif-tif.txt", - code: "tif", - lang: "Tifal", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tim-tim.txt", - code: "tim", - lang: "Timbe", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tiw-tiw.txt", - code: "tiw", - lang: "Tiwi", - family: "Australian", - country: "Australia", - Total: 1575, - Books: 4, - OT: 0, - NT: 1575, - DT: 0, - }, - { - file: "tiy-tiy.txt", - code: "tiy", - lang: "Teduray", - family: "Austronesian", - country: "Philippines", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "tke-tke.txt", - code: "tke", - lang: "Takwane", - family: "Niger-Congo", - country: "Mozambique", - Total: 1150, - Books: 1, - OT: 0, - NT: 1150, - DT: 0, - }, - { - file: "tku-tkuNT.txt", - code: "tku", - lang: "Totonac, Upper Necaxa", - family: "Totonacan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "tlf-tlf.txt", - code: "tlf", - lang: "Telefol", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "tmd-tmd.txt", - code: "tmd", - lang: "Haruai", - family: "Piawi", - country: "Papua New Guinea", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "tna-tnaNT.txt", - code: "tna", - lang: "Tacana", - family: "Tacanan", - country: "Bolivia, Plurinational State of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tnc-tnc.txt", - code: "tnc", - lang: "Tanimuca-Letuama", - family: "Tucanoan", - country: "Colombia", - Total: 3235, - Books: 10, - OT: 0, - NT: 3235, - DT: 0, - }, - { - file: "tnk-tnk.txt", - code: "tnk", - lang: "Kwamera", - family: "Austronesian", - country: "Vanuatu", - Total: 7950, - Books: 27, - OT: 0, - NT: 7950, - DT: 0, - }, - { - file: "tnn-tnn.txt", - code: "tnn", - lang: "Tanna, North", - family: "Austronesian", - country: "Vanuatu", - Total: 7948, - Books: 27, - OT: 0, - NT: 7948, - DT: 0, - }, - { - file: "tnp-tnp.txt", - code: "tnp", - lang: "Whitesands", - family: "Austronesian", - country: "Vanuatu", - Total: 7948, - Books: 27, - OT: 0, - NT: 7948, - DT: 0, - }, - { - file: "toc-tocNT.txt", - code: "toc", - lang: "Totonac, Coyutla", - family: "Totonacan", - country: "Mexico", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tod-tod.txt", - code: "tod", - lang: "Toma", - family: "Niger-Congo", - country: "Guinea", - Total: 11167, - Books: 19, - OT: 10161, - NT: 1006, - DT: 0, - }, - { - file: "tof-tof.txt", - code: "tof", - lang: "Gizrra", - family: "Eastern Trans-Fly", - country: "Papua New Guinea", - Total: 8963, - Books: 40, - OT: 1994, - NT: 6969, - DT: 0, - }, - { - file: "toj-tojNT.txt", - code: "toj", - lang: "Tojolabal", - family: "Mayan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ton-ton.txt", - code: "ton", - lang: "Tongan", - family: "Austronesian", - country: "Tonga", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "too-tooNT.txt", - code: "too", - lang: "Totonac, Xicotepec de Ju\u00e1rez", - family: "Totonacan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "top-topNT.txt", - code: "top", - lang: "Totonac, Papantla", - family: "Totonacan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "tos-tosNT.txt", - code: "tos", - lang: "Totonac, Highland", - family: "Totonacan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "tpa-tpa.txt", - code: "tpa", - lang: "Taupota", - family: "Austronesian", - country: "Papua New Guinea", - Total: 678, - Books: 1, - OT: 0, - NT: 678, - DT: 0, - }, - { - file: "tpi-tpi.txt", - code: "tpi", - lang: "Tok Pisin", - family: "Creole", - country: "Papua New Guinea", - Total: 35547, - Books: 78, - OT: 23142, - NT: 7957, - DT: 4448, - }, - { - file: "tpi-tpiOTNT.txt", - code: "tpi", - lang: "Tok Pisin", - family: "Creole", - country: "Papua New Guinea", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "tpt-tptNT.txt", - code: "tpt", - lang: "Tepehua, Tlachichilco", - family: "Totonacan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "tpz-tpz.txt", - code: "tpz", - lang: "Tinputz", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "trc-trcNT.txt", - code: "trc", - lang: "Triqui, Copala", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "tsw-tswNT.txt", - code: "tsw", - lang: "Tsishingini", - family: "Niger-Congo", - country: "Nigeria", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "ttc-ttcNT.txt", - code: "ttc", - lang: "Tektiteko", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tte-tte.txt", - code: "tte", - lang: "Bwanabwana", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "tte-tteo.txt", - code: "tte", - lang: "Bwanabwana", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7264, - Books: 13, - OT: 7264, - NT: 0, - DT: 0, - }, - { - file: "tuc-tuc-o.txt", - code: "tuc", - lang: "Mutu", - family: "Austronesian", - country: "Papua New Guinea", - Total: 12877, - Books: 32, - OT: 4920, - NT: 7957, - DT: 0, - }, - { - file: "tuc-tuc-t.txt", - code: "tuc", - lang: "Mutu", - family: "Austronesian", - country: "Papua New Guinea", - Total: 12877, - Books: 32, - OT: 4920, - NT: 7957, - DT: 0, - }, - { - file: "tue-tue.txt", - code: "tue", - lang: "Tuyuca", - family: "Tucanoan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tuf-tuf.txt", - code: "tuf", - lang: "Tunebo, Central", - family: "Chibchan", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tuo-tuoNT.txt", - code: "tuo", - lang: "Tucano", - family: "Tucanoan", - country: "Brazil", - Total: 11007, - Books: 33, - OT: 3050, - NT: 7957, - DT: 0, - }, - { - file: "tur-turev.txt", - code: "tur", - lang: "Turkish", - family: "Turkic", - country: "Turkey", - Total: 31097, - Books: 66, - OT: 23141, - NT: 7956, - DT: 0, - }, - { - file: "tvk-tvk.txt", - code: "tvk", - lang: "Ambrym, Southeast", - family: "Austronesian", - country: "Vanuatu", - Total: 8076, - Books: 29, - OT: 133, - NT: 7943, - DT: 0, - }, - { - file: "twi-twi.txt", - code: "twi", - lang: "Twi", - family: "Niger-Congo", - country: "Ghana", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "txq-txq.txt", - code: "txq", - lang: "Tii", - family: "Austronesian", - country: "Indonesia", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "txu-txuNT.txt", - code: "txu", - lang: "Kayap\u00f3", - family: "Jean", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tzj-tzjE.txt", - code: "tzj", - lang: "Tz\u2019utujil", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tzj-tzjNT.txt", - code: "tzj", - lang: "Tz\u2019utujil", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "tzo-tzoNT.txt", - code: "tzo", - lang: "Tzotzil", - family: "Mayan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "tzo-tzoSA.txt", - code: "tzo", - lang: "Tzotzil", - family: "Mayan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "tzo-tzotzc.txt", - code: "tzo", - lang: "Tzotzil", - family: "Mayan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "tzo-tzotze.txt", - code: "tzo", - lang: "Tzotzil", - family: "Mayan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "tzo-tzoZNT.txt", - code: "tzo", - lang: "Tzotzil", - family: "Mayan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ubr-ubr.txt", - code: "ubr", - lang: "Ubir", - family: "Austronesian", - country: "Papua New Guinea", - Total: 9488, - Books: 28, - OT: 1533, - NT: 7955, - DT: 0, - }, - { - file: "ubu-ubu-andelale.txt", - code: "ubu", - lang: "Umbu-Ungu", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ubu-ubu-kala.txt", - code: "ubu", - lang: "Umbu-Ungu", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ubu-ubu-nopenge.txt", - code: "ubu", - lang: "Umbu-Ungu", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "udu-udu.txt", - code: "udu", - lang: "Uduk", - family: "Nilo-Saharan", - country: "Sudan", - Total: 12494, - Books: 30, - OT: 4538, - NT: 7956, - DT: 0, - }, - { - file: "uig-uigara.txt", - code: "uig", - lang: "Uyghur", - family: "Turkic", - country: "China", - Total: 31091, - Books: 66, - OT: 23137, - NT: 7954, - DT: 0, - }, - { - file: "uig-uigcyr.txt", - code: "uig", - lang: "Uyghur", - family: "Turkic", - country: "China", - Total: 31146, - Books: 66, - OT: 23193, - NT: 7953, - DT: 0, - }, - { - file: "uig-uiglat.txt", - code: "uig", - lang: "Uyghur", - family: "Turkic", - country: "China", - Total: 31089, - Books: 66, - OT: 23136, - NT: 7953, - DT: 0, - }, - { - file: "uig-uigpin.txt", - code: "uig", - lang: "Uyghur", - family: "Turkic", - country: "China", - Total: 31090, - Books: 66, - OT: 23136, - NT: 7954, - DT: 0, - }, - { - file: "ukr-ukr1871.txt", - code: "ukr", - lang: "Ukrainian", - family: "Indo-European", - country: "Ukraine", - Total: 7954, - Books: 27, - OT: 0, - NT: 7954, - DT: 0, - }, - { - file: "uli-uli.txt", - code: "uli", - lang: "Ulithian", - family: "Austronesian", - country: "Micronesia, Federated States of", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ulk-ulk.txt", - code: "ulk", - lang: "Meriam Mir", - family: "Eastern Trans-Fly", - country: "Australia", - Total: 1188, - Books: 12, - OT: 79, - NT: 1109, - DT: 0, - }, - { - file: "upv-upv.txt", - code: "upv", - lang: "Uripiv-Wala-Rano-Atchin", - family: "Austronesian", - country: "Vanuatu", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ura-uraNT.txt", - code: "ura", - lang: "Urarina", - family: "Language isolate", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "urb-urbNT.txt", - code: "urb", - lang: "Kaapor", - family: "Tupian", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "urd-urd.txt", - code: "urd", - lang: "Urdu", - family: "Indo-European", - country: "Pakistan", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "urd-urdgvh.txt", - code: "urd", - lang: "Urdu", - family: "Indo-European", - country: "Pakistan", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "urd-urdgvr.txt", - code: "urd", - lang: "Urdu", - family: "Indo-European", - country: "Pakistan", - Total: 31098, - Books: 66, - OT: 23142, - NT: 7956, - DT: 0, - }, - { - file: "urd-urdgvu.txt", - code: "urd", - lang: "Urdu", - family: "Indo-European", - country: "Pakistan", - Total: 31099, - Books: 66, - OT: 23142, - NT: 7957, - DT: 0, - }, - { - file: "uri-uri.txt", - code: "uri", - lang: "Urim", - family: "Torricelli", - country: "Papua New Guinea", - Total: 2510, - Books: 6, - OT: 0, - NT: 2510, - DT: 0, - }, - { - file: "urt-urt.txt", - code: "urt", - lang: "Urat", - family: "Torricelli", - country: "Papua New Guinea", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "urw-urw.txt", - code: "urw", - lang: "Sop", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 1199, - Books: 2, - OT: 48, - NT: 1151, - DT: 0, - }, - { - file: "usa-usa.txt", - code: "usa", - lang: "Usarufa", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 8229, - Books: 28, - OT: 273, - NT: 7956, - DT: 0, - }, - { - file: "usp-uspNT.txt", - code: "usp", - lang: "Uspanteko", - family: "Mayan", - country: "Guatemala", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "uvh-uvh.txt", - code: "uvh", - lang: "Uri", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "uvl-uvl.txt", - code: "uvl", - lang: "Lote", - family: "Austronesian", - country: "Papua New Guinea", - Total: 9490, - Books: 28, - OT: 1533, - NT: 7957, - DT: 0, - }, - { - file: "vid-vid.txt", - code: "vid", - lang: "Vidunda", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 13809, - Books: 32, - OT: 5852, - NT: 7957, - DT: 0, - }, - { - file: "vie-vie1934.txt", - code: "vie", - lang: "Vietnamese", - family: "Austro-Asiatic", - country: "Viet Nam", - Total: 31097, - Books: 66, - OT: 23142, - NT: 7955, - DT: 0, - }, - { - file: "vie-vieovcb.txt", - code: "vie", - lang: "Vietnamese", - family: "Austro-Asiatic", - country: "Viet Nam", - Total: 31091, - Books: 66, - OT: 23142, - NT: 7949, - DT: 0, - }, - { - file: "viv-viv.txt", - code: "viv", - lang: "Iduna", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "vmy-vmyNT.txt", - code: "vmy", - lang: "Mazatec, Ayautla", - family: "Otomanguean", - country: "Mexico", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "waj-waj.txt", - code: "waj", - lang: "Waffa", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "wal-wal.txt", - code: "wal", - lang: "Wolaytta", - family: "Afro-Asiatic", - country: "Ethiopia", - Total: 27289, - Books: 58, - OT: 20216, - NT: 7073, - DT: 0, - }, - { - file: "wap-wapNT.txt", - code: "wap", - lang: "Wapishana", - family: "Maipurean", - country: "Guyana", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "wat-wat.txt", - code: "wat", - lang: "Kaninuwa", - family: "Austronesian", - country: "Papua New Guinea", - Total: 2664, - Books: 5, - OT: 989, - NT: 1675, - DT: 0, - }, - { - file: "wbi-wbi.txt", - code: "wbi", - lang: "Vwanji", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7952, - Books: 27, - OT: 0, - NT: 7952, - DT: 0, - }, - { - file: "wbp-wbp.txt", - code: "wbp", - lang: "Warlpiri", - family: "Australian", - country: "Australia", - Total: 11098, - Books: 36, - OT: 3141, - NT: 7957, - DT: 0, - }, - { - file: "wed-wed-topura.txt", - code: "wed", - lang: "Wedau", - family: "Austronesian", - country: "Papua New Guinea", - Total: 678, - Books: 1, - OT: 0, - NT: 678, - DT: 0, - }, - { - file: "wed-wed.txt", - code: "wed", - lang: "Wedau", - family: "Austronesian", - country: "Papua New Guinea", - Total: 4188, - Books: 30, - OT: 2508, - NT: 1680, - DT: 0, - }, - { - file: "wer-wer.txt", - code: "wer", - lang: "Amam", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "wim-wim.txt", - code: "wim", - lang: "Wik-Mungkan", - family: "Australian", - country: "Australia", - Total: 7949, - Books: 27, - OT: 0, - NT: 7949, - DT: 0, - }, - { - file: "wiu-wiu.txt", - code: "wiu", - lang: "Witu", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "wiv-wiv.txt", - code: "wiv", - lang: "Vitu", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7949, - Books: 27, - OT: 0, - NT: 7949, - DT: 0, - }, - { - file: "wmt-wmt.txt", - code: "wmt", - lang: "Walmajarri", - family: "Australian", - country: "Australia", - Total: 3384, - Books: 17, - OT: 2226, - NT: 1158, - DT: 0, - }, - { - file: "wmw-wmw.txt", - code: "wmw", - lang: "Mwani", - family: "Niger-Congo", - country: "Mozambique", - Total: 7940, - Books: 27, - OT: 0, - NT: 7940, - DT: 0, - }, - { - file: "wnc-wnc.txt", - code: "wnc", - lang: "Wantoat", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 10415, - Books: 28, - OT: 2460, - NT: 7955, - DT: 0, - }, - { - file: "wnu-wnu.txt", - code: "wnu", - lang: "Usan", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "wol-wol2010.txt", - code: "wol", - lang: "Wolof", - family: "Niger-Congo", - country: "Senegal", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "wol-wolKYG.txt", - code: "wol", - lang: "Wolof", - family: "Niger-Congo", - country: "Senegal", - Total: 25368, - Books: 56, - OT: 20172, - NT: 5196, - DT: 0, - }, - { - file: "wos-wos.txt", - code: "wos", - lang: "Hanga Hundi", - family: "Sepik", - country: "Papua New Guinea", - Total: 8004, - Books: 28, - OT: 48, - NT: 7956, - DT: 0, - }, - { - file: "wrk-wrk.txt", - code: "wrk", - lang: "Garrwa", - family: "Australian", - country: "Australia", - Total: 5267, - Books: 22, - OT: 0, - NT: 5267, - DT: 0, - }, - { - file: "wro-wro.txt", - code: "wro", - lang: "Worrorra", - family: "Australian", - country: "Australia", - Total: 1828, - Books: 2, - OT: 0, - NT: 1828, - DT: 0, - }, - { - file: "wrs-wrs.txt", - code: "wrs", - lang: "Waris", - family: "Border", - country: "Papua New Guinea", - Total: 9623, - Books: 30, - OT: 1666, - NT: 7957, - DT: 0, - }, - { - file: "wsk-wsk.txt", - code: "wsk", - lang: "Waskia", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 13590, - Books: 38, - OT: 5650, - NT: 7940, - DT: 0, - }, - { - file: "wuv-wuv.txt", - code: "wuv", - lang: "Wuvulu-Aua", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7939, - Books: 27, - OT: 0, - NT: 7939, - DT: 0, - }, - { - file: "xav-xavNT.txt", - code: "xav", - lang: "Xav\u00e1nte", - family: "Jean", - country: "Brazil", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "xbi-xbi-w.txt", - code: "xbi", - lang: "Kombio", - family: "Torricelli", - country: "Papua New Guinea", - Total: 1255, - Books: 4, - OT: 48, - NT: 1207, - DT: 0, - }, - { - file: "xbi-xbi-y.txt", - code: "xbi", - lang: "Kombio", - family: "Torricelli", - country: "Papua New Guinea", - Total: 1384, - Books: 6, - OT: 177, - NT: 1207, - DT: 0, - }, - { - file: "xed-xed.txt", - code: "xed", - lang: "Hdi", - family: "Afro-Asiatic", - country: "Cameroon", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "xla-xla.txt", - code: "xla", - lang: "Kamula", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 10171, - Books: 30, - OT: 2214, - NT: 7957, - DT: 0, - }, - { - file: "xnn-xnn.txt", - code: "xnn", - lang: "Kankanay, Northern", - family: "Austronesian", - country: "Philippines", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "xon-xon.txt", - code: "xon", - lang: "Konkomba", - family: "Niger-Congo", - country: "Ghana", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "xsi-xsi.txt", - code: "xsi", - lang: "Sio", - family: "Austronesian", - country: "Papua New Guinea", - Total: 10416, - Books: 28, - OT: 2460, - NT: 7956, - DT: 0, - }, - { - file: "xtd-xtdNT.txt", - code: "xtd", - lang: "Mixtec, Diuxi-Tilantongo", - family: "Otomanguean", - country: "Mexico", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "xtm-xtmNTpp.txt", - code: "xtm", - lang: "Mixtec, Magdalena Pe\u00f1asco", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "yaa-yaaNT.txt", - code: "yaa", - lang: "Yaminahua", - family: "Panoan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "yad-yadNT.txt", - code: "yad", - lang: "Yagua", - family: "Yaguan", - country: "Peru", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "yal-yal.txt", - code: "yal", - lang: "Yalunka", - family: "Niger-Congo", - country: "Guinea", - Total: 31170, - Books: 66, - OT: 23213, - NT: 7957, - DT: 0, - }, - { - file: "yap-yap.txt", - code: "yap", - lang: "Yapese", - family: "Austronesian", - country: "Micronesia, Federated States of", - Total: 31087, - Books: 66, - OT: 23143, - NT: 7944, - DT: 0, - }, - { - file: "yaq-yaqNT.txt", - code: "yaq", - lang: "Yaqui", - family: "Uto-Aztecan", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "yby-yby.txt", - code: "yby", - lang: "Yaweyuha", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "ycn-ycn.txt", - code: "ycn", - lang: "Yucuna", - family: "Maipurean", - country: "Colombia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "yka-yka.txt", - code: "yka", - lang: "Yakan", - family: "Austronesian", - country: "Philippines", - Total: 8090, - Books: 29, - OT: 133, - NT: 7957, - DT: 0, - }, - { - file: "yle-yle.txt", - code: "yle", - lang: "Y\u00e9l\u00ee Dnye", - family: "Yele-West New Britain", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "yml-yml.txt", - code: "yml", - lang: "Iamalele", - family: "Austronesian", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "yon-yon.txt", - code: "yon", - lang: "Yongkom", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 11950, - Books: 29, - OT: 3993, - NT: 7957, - DT: 0, - }, - { - file: "yor-yor.txt", - code: "yor", - lang: "Yoruba", - family: "Niger-Congo", - country: "Nigeria", - Total: 31082, - Books: 66, - OT: 23142, - NT: 7940, - DT: 0, - }, - { - file: "yrb-yrb.txt", - code: "yrb", - lang: "Yareba", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7955, - Books: 27, - OT: 0, - NT: 7955, - DT: 0, - }, - { - file: "yre-yreNT.txt", - code: "yre", - lang: "Yaour\u00e9", - family: "Niger-Congo", - country: "C\u00f4te d'Ivoire", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "yss-yss-yamano.txt", - code: "yss", - lang: "Yessan-Mayo", - family: "Sepik", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "yss-yss-yawu.txt", - code: "yss", - lang: "Yessan-Mayo", - family: "Sepik", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "yuj-yuj.txt", - code: "yuj", - lang: "Karkar-Yuri", - family: "Pauwasi", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "yut-yut.txt", - code: "yut", - lang: "Yopno", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 10417, - Books: 28, - OT: 2460, - NT: 7957, - DT: 0, - }, - { - file: "yuw-yuw.txt", - code: "yuw", - lang: "Yau", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "yva-yvaNT.txt", - code: "yva", - lang: "Yawa", - family: "West Papuan", - country: "Indonesia", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "zaa-zaaNT.txt", - code: "zaa", - lang: "Zapotec, Sierra de Ju\u00e1rez", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zab-zabNT.txt", - code: "zab", - lang: "Zapotec, Western Tlacolula Valley", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zac-zacNT.txt", - code: "zac", - lang: "Zapotec, Ocotl\u00e1n", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zad-zadNT.txt", - code: "zad", - lang: "Zapotec, Cajonos", - family: "Otomanguean", - country: "Mexico", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "zai-zaiNT.txt", - code: "zai", - lang: "Zapotec, Isthmus", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zaj-zaj.txt", - code: "zaj", - lang: "Zaramo", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "zam-zamNT.txt", - code: "zam", - lang: "Zapotec, Miahuatl\u00e1n", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zao-zaoNT.txt", - code: "zao", - lang: "Zapotec, Ozolotepec", - family: "Otomanguean", - country: "Mexico", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "zap-zapNT.txt", - code: "zap", - lang: "Zapotec (?)", // FIXME: these values were null in the ebible metadata spreadsheet - family: "Otomanguean (?)", // FIXME: these values were null in the ebible metadata spreadsheet - country: "Mexico (?)", // FIXME: these values were null in the ebible metadata spreadsheet - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zar-zarNT.txt", - code: "zar", - lang: "Zapotec, Rinc\u00f3n", - family: "Otomanguean", - country: "Mexico", - Total: 10416, - Books: 28, - OT: 2460, - NT: 7956, - DT: 0, - }, - { - file: "zas-zasNT.txt", - code: "zas", - lang: "Zapotec, Santo Domingo Albarradas", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zat-zatNTps.txt", - code: "zat", - lang: "Zapotec, Tabaa", - family: "Otomanguean", - country: "Mexico", - Total: 10416, - Books: 28, - OT: 2460, - NT: 7956, - DT: 0, - }, - { - file: "zav-zavNT.txt", - code: "zav", - lang: "Zapotec, Yatzachi", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zaw-zawNT.txt", - code: "zaw", - lang: "Zapotec, Mitla", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zca-zcaNT.txt", - code: "zca", - lang: "Zapotec, Coatecas Altas", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zga-zgam.txt", - code: "zga", - lang: "Kinga", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7909, - Books: 26, - OT: 0, - NT: 7909, - DT: 0, - }, - { - file: "zia-zia.txt", - code: "zia", - lang: "Zia", - family: "Trans-New Guinea", - country: "Papua New Guinea", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "ziw-ziw.txt", - code: "ziw", - lang: "Zigula", - family: "Niger-Congo", - country: "Tanzania, United Republic of", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "zlm-zlmKSZI.txt", - code: "zlm", - lang: "Malay", - family: "Austronesian", - country: "Malaysia", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zos-zosNT.txt", - code: "zos", - lang: "Zoque, Francisco Le\u00f3n", - family: "Mixe-Zoquean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zpc-zpcNT.txt", - code: "zpc", - lang: "Zapotec, Choapan", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zpl-zplNT.txt", - code: "zpl", - lang: "Zapotec, Lachix\u00edo", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zpm-zpmNT.txt", - code: "zpm", - lang: "Zapotec, Mixtepec", - family: "Otomanguean", - country: "Mexico", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "zpo-zpoNT.txt", - code: "zpo", - lang: "Zapotec, Amatl\u00e1n", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zpq-zpqNT.txt", - code: "zpq", - lang: "Zapotec, Zoogocho", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zpu-zpuNT.txt", - code: "zpu", - lang: "Zapotec, Yal\u00e1lag", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zpv-zpvNT.txt", - code: "zpv", - lang: "Zapotec, Chichicapan", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zpz-zpzNTpp.txt", - code: "zpz", - lang: "Zapotec, Texmelucan", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "zsr-zsrNT.txt", - code: "zsr", - lang: "Zapotec, Southern Rincon", - family: "Otomanguean", - country: "Mexico", - Total: 7956, - Books: 27, - OT: 0, - NT: 7956, - DT: 0, - }, - { - file: "ztq-ztqNT.txt", - code: "ztq", - lang: "Zapotec, Quioquitani-Quier\u00ed", - family: "Otomanguean", - country: "Mexico", - Total: 7957, - Books: 27, - OT: 0, - NT: 7957, - DT: 0, - }, - { - file: "zty-ztyNTps.txt", - code: "zty", - lang: "Zapotec, Yatee", - family: "Otomanguean", - country: "Mexico", - Total: 10416, - Books: 28, - OT: 2460, - NT: 7956, - DT: 0, - }, - { - file: "zyp-zypNT.txt", - code: "zyp", - lang: "Chin, Zyphe", - family: "Sino-Tibetan", - country: "Myanmar", - Total: 7953, - Books: 27, - OT: 0, - NT: 7953, - DT: 0, - }, -]; - -const extendedEbibleCorpusMetadata: ExtendedMetadata[] = [ - { - languageCode: "aai", - translationId: "aai", - languageName: "Miniafia", - languageNameInEnglish: "Miniafia", - dialect: null, - homeDomain: "png.bible", - title: "TUR GEWASIN O BAIBASIT BOUBUN", - description: "The New Testament in the Miniafia Language of Oro Province, Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 anonymous", - UpdateDate: "2022-04-14", - publicationURL: "http://png.bible/aai/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AAIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aai2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Miniafia NT", - PODISBN: "978-1-5313-0000-5", - script: "Latin", - sourceDate: "2013-01-05", - }, - { - languageCode: "aak", - translationId: "aak", - languageName: "Angave", - languageNameInEnglish: "Ankave", - dialect: null, - homeDomain: "png.bible", - title: "Xw\u0268y\u00ed\u0335\u00e1 Gor\u0268xoy\u00e1 S\u0268\u014b\u00ed\u0335p\u0268r\u0268n\u0268", - description: "The New Testament in the Ankave language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1990 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-03", - publicationURL: "http://png.bible/aak/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7786, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AAKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aak1990eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Minaifia NT", - PODISBN: "978-1-5313-0001-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "aau", - translationId: "aau", - languageName: "Abau", - languageNameInEnglish: "Abau", - dialect: null, - homeDomain: "png.bible", - title: "God so Sokior-ok Iwon", - description: - "The New Testament in the Abau Language of the Green River area, Sandaun Province, Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2006 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-01-03", - publicationURL: "http://png.bible/aau/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7934, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AAUWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aau2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Abau NT", - PODISBN: "978-1-5313-0002-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "aaz", - translationId: "aaz", - languageName: "Amarasi", - languageNameInEnglish: "Amarasi", - dialect: null, - homeDomain: "ebible.org", - title: "Uisneno In Kabin ma Prenat: Rais Manba'an Fe'u nok Reta' Ahun-hunut", - description: "Genesis and the New Testament in the Amarasi language of Indonesia", - Redistributable: true, - Copyright: "Copyright \u00a9 1999-2014 Unit Bahasa dan Budaya, Kupang NTT, Indonesia", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/aaz/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1422, - NTbooks: 27, - NTchapters: 260, - NTverses: 7663, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AAZUBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aaz2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Amarasi Bible", - PODISBN: "978-1-5313-0775-2", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "abp", - translationId: "abp", - languageName: "Ayta, Abellen", - languageNameInEnglish: "Ayta, Abellen", - dialect: null, - homeDomain: "ebible.org", - title: "Ayta Abellen", - description: "Ayta, Abellen: Ayta Abellen (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-11", - publicationURL: "http://ebible.org/abp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7877, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ABPWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "abp2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ayta, Abellen: Ayta Abellen (New Testament+)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "abt", - translationId: "abt-maprik", - languageName: "Ambulas (Maprik)", - languageNameInEnglish: "Ambulas", - dialect: "Maprik", - homeDomain: "png.bible", - title: "Gotna Kudi", - description: "The New Testament in the Maprik dialect of the Ambulas Language", - Redistributable: true, - Copyright: "Copyright \u00a9 1983 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-01-04", - publicationURL: "http://png.bible/abt-maprik/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7581, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ABTMAP", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "abtM1983eb", - rodCode: 444.0, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Ambulas Maprik NT", - PODISBN: "978-1-5313-0003-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "abt", - translationId: "abt-wosera", - languageName: "Ambulas (Wosera)", - languageNameInEnglish: "Wosera-Kamu dialect of Ambulas", - dialect: "Wosera-Kamu", - homeDomain: "png.bible", - title: "Gotna Kundi", - description: - "The New Testament in the Wosara-Kamu Dialect of the Ambulas Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1996 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-01-07", - publicationURL: "http://png.bible/abt-wosera/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7580, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ABTWOS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "abtW1996eb", - rodCode: 3053.0, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Ambulas Wosera NT", - PODISBN: "978-1-5313-0004-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "abx", - translationId: "abx", - languageName: "Inabaknon", - languageNameInEnglish: "Inabaknon", - dialect: null, - homeDomain: "ebible.org", - title: "I Baha'o Kasuratan", - description: "New Testament in Inabaknon", - Redistributable: true, - Copyright: "Copyright \u00a9 1996 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/abx/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7910, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ABXWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "abx1996eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Inabaknon NT", - PODISBN: "978-1-5313-0005-0", - script: "Latin", - sourceDate: "2014-11-05", - }, - { - languageCode: "aby", - translationId: "aby", - languageName: "Aneme Wake", - languageNameInEnglish: "Aneme Wake", - dialect: null, - homeDomain: "png.bible", - title: "GODINU IRAU WAKE", - description: "The New Testament in the Aneme Wake Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1988 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-01-07", - publicationURL: "http://png.bible/aby/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7072, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ABYWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aby1988eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Aneme Wake NT", - PODISBN: "978-1-5313-0006-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "aca", - translationId: "aca", - languageName: "Achagua", - languageNameInEnglish: "Achagua", - dialect: null, - homeDomain: "ebible.org", - title: "Li\u00e1\ua78ca Chu\u00e1nshi Dios Sh\u00ednaa", - description: "Achagua Partial NT [aca] -Colombia 2013", - Redistributable: false, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/aca/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 10, - NTchapters: 121, - NTverses: 4410, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ACAWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aca2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Achagua Partial NT [aca] -Colombia 2013", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-11", - }, - { - languageCode: "acd", - translationId: "acd", - languageName: "Gikyode", - languageNameInEnglish: "Gikyode", - dialect: null, - homeDomain: "ebible.org", - title: "G\u025bn\u00de Pob\u00der\u00de, G\u025bbono Wurubuaar\u025b Gi Y\u025bg\u025b M\u0254-r\u025b Anyames\u025b M\u025b W\u0254ra M\u0254", - description: "The New Testament in the Gikyode language", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/acd/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7911, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ACDWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "acd2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "The New Testament in the Gikyode language", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "acf", - translationId: "acfNT", - languageName: "Saint Lucian Creole French", - languageNameInEnglish: "Saint Lucian Creole French", - dialect: null, - homeDomain: "ebible.org", - title: "T\u00e8st\u00e8man n\u00e8f-la: \u00c9pi an posy\u00f2n an liv samz-la", - description: - "New Testament in Saint Lucian Creole French (Saint Lucian Creole French New Testament)", - Redistributable: true, - Copyright: "Copyright \u00a9 1999 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/acfNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ACFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "acf1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Saint Lucian Creole French NT", - PODISBN: "978-1-5313-0007-4", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "acr", - translationId: "acr-acc", - languageName: "Achi", - languageNameInEnglish: "Achi", - dialect: "Cubulco", - homeDomain: "ebible.org", - title: "I 'utz laj tzij re i dios", - description: "New Testament in Achi (I 'utz laj tzij re i dios)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-01-05", - publicationURL: "http://ebible.org/acr-acc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ACCIBS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "acrACC2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "New Testament in Achi", - PODISBN: "978-1-5313-0008-1", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "acr", - translationId: "acrNNT", - languageName: "Achi", - languageNameInEnglish: "Achi", - dialect: "Rabinal", - homeDomain: "ebible.org", - title: "Ri utzilaj tzij re ri kanimajawal Jesucristo", - description: "New Testament in Achi Rabinal; acr (GT:acrN:Achi)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-18", - publicationURL: "http://ebible.org/acrNNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ACRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "acrN2009eb", - rodCode: 448.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Achi Rabinal NT (new orthography)", - PODISBN: "978-1-5313-0009-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "acr", - translationId: "acrTNT", - languageName: "Achi", - languageNameInEnglish: "Achi", - dialect: "Rabinal", - homeDomain: "ebible.org", - title: "Ri utzilaj tzij re ri kanimajawal Jesucristo", - description: "New Testament in Achi Rabinal; acr (GT:acrT:Achi)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/acrTNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ACRTNT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "acrTNT2009eb", - rodCode: 448.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Achi Rabinal NT (traditional orthography)", - PODISBN: "978-1-5313-0010-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "acu", - translationId: "acuNT", - languageName: "Achuar-shiwiar", - languageNameInEnglish: "Achuar-shiwiar", - dialect: null, - homeDomain: "ebible.org", - title: "Achuar Peru OT Por and NT 2019 4th edition", - description: "Achuar-Shiwiar: Achuar Peru OT Por and NT 2019 4th edition (New Testament+)", - Redistributable: true, - Copyright: "Copyright \u00a9 2019-07-01 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/acuNT/", - OTbooks: 32, - OTchapters: 218, - OTverses: 3877, - NTbooks: 27, - NTchapters: 260, - NTverses: 7646, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ACUTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "acuNT2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Achuar-shiwiar Bible", - PODISBN: "978-1-5313-0011-1", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "adj", - translationId: "adj", - languageName: "Adioukrou", - languageNameInEnglish: "Adioukrou", - dialect: null, - homeDomain: "ebible.org", - title: "Amani Owr", - description: "Adioukrou: Amani Owr New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1998 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-10", - publicationURL: "http://ebible.org/adj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7907, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ADJWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "adj1998eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Adioukrou: Amani Owr New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-11", - }, - { - languageCode: "adt", - translationId: "adt", - languageName: "Adnyamathanha", - languageNameInEnglish: "Adnyamathanha", - dialect: null, - homeDomain: "ebible.org", - title: "Adnyamathanha Christmas Story", - description: - "A few verses of Scripture from Psalm 23 and Luke 2 in the Adnyamathanha language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2021 Bible Society Australia", - UpdateDate: "2021-11-23", - publicationURL: "http://ebible.org/adt/", - OTbooks: 1, - OTchapters: 1, - OTverses: 7, - NTbooks: 1, - NTchapters: 1, - NTverses: 7, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ADTBSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "adt2021eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Adnyamathanha Christmas Story", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-24", - }, - { - languageCode: "adz", - translationId: "adz", - languageName: "Adzera", - languageNameInEnglish: "Adzera", - dialect: null, - homeDomain: "png.bible", - title: "Adzera Baibel", - description: "Portions of the Holy Bible in the Adzera Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2009-2022 Wycliffe Bible Translators, Inc.", - UpdateDate: "2023-02-04", - publicationURL: "http://png.bible/adz/", - OTbooks: 2, - OTchapters: 54, - OTverses: 1537, - NTbooks: 3, - NTchapters: 48, - NTverses: 2058, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ADZPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "adz2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Adzera Bible", - PODISBN: "978-1-5313-0012-8", - script: "Latin", - sourceDate: "2023-02-04", - }, - { - languageCode: "aeb", - translationId: "aeb", - languageName: - "\u0627\u0644\u0639\u0647\u062f \u0627\u0644\u062c\u062f\u064a\u062f \u0628\u0627\u0644\u062f\u0627\u0631\u062c\u0629 \u0627\u0644\u062a\u0648\u0646\u0633\u064a\u0629 2022", - languageNameInEnglish: - "\u0627\u0644\u0639\u0647\u062f \u0627\u0644\u062c\u062f\u064a\u062f \u0628\u0627\u0644\u062f\u0627\u0631\u062c\u0629 \u0627\u0644\u062a\u0648\u0646\u0633\u064a\u0629 2022", - dialect: null, - homeDomain: "ebible.org", - title: "\u0627\u0644\u0639\u0647\u062f \u0627\u0644\u062c\u062f\u064a\u062f \u0628\u0627\u0644\u062f\u0627\u0631\u062c\u0629 \u0627\u0644\u062a\u0648\u0646\u0633\u064a\u0629 2022", - description: - "Arabic, Tunisian Spoken: \u0627\u0644\u0639\u0647\u062f \u0627\u0644\u062c\u062f\u064a\u062f \u0628\u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u062a\u0648\u0646\u0633\u064a\u0629 (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2023-01-06", - publicationURL: "http://ebible.org/aeb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AEBUBS", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aeb2020eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "Amiri", - shortTitle: - "Arabic, Tunisian Spoken: \u0627\u0644\u0639\u0647\u062f \u0627\u0644\u062c\u062f\u064a\u062f \u0628\u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u062a\u0648\u0646\u0633\u064a\u0629 (New Testament)", - PODISBN: null, - script: "Arabic", - sourceDate: "2023-01-06", - }, - { - languageCode: "aer", - translationId: "aer", - languageName: "Eastern Arrente", - languageNameInEnglish: "Arrernte, Eastern", - dialect: null, - homeDomain: "ebible.org", - title: "Angkentye Mwerre", - description: - "Portions of the Holy Bible in the Central and Eastern Arrente language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2002-2014 Wycliffe Bible Translators", - UpdateDate: "2019-05-14", - publicationURL: "http://ebible.org/aer/", - OTbooks: 3, - OTchapters: 94, - OTverses: 2028, - NTbooks: 27, - NTchapters: 260, - NTverses: 7615, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AERWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aer2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Eastern Arrente Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2017-09-26", - }, - { - languageCode: "aeu", - translationId: "aeu", - languageName: "Gaolkheel", - languageNameInEnglish: "Akeu", - dialect: null, - homeDomain: "ebible.org", - title: "Jalliq aqsivq Gaolkheel daoq", - description: "Akeu: Jalliq aqsivq Gaolkheel daoq New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-13", - publicationURL: "http://ebible.org/aeu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7889, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AEUWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aeu2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Akeu NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "aey", - translationId: "aey", - languageName: "Amele", - languageNameInEnglish: "Amele", - dialect: null, - homeDomain: "png.bible", - title: "BAL CEHEC JE HAUN", - description: "Genesis and the New Testament in the Amele language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1997 Wycliffe Bible Translators, Inc.", - UpdateDate: "1997-01-01", - publicationURL: "http://png.bible/aey/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1503, - NTbooks: 27, - NTchapters: 260, - NTverses: 7583, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AEYWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aey1997eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Amele Genesis", - PODISBN: "978-1-5313-0013-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "agd", - translationId: "agd", - languageName: "Agarabi", - languageNameInEnglish: "Agarabi", - dialect: null, - homeDomain: "png.bible", - title: "YISASINI KAMA VAYA", - description: "The New Testament in the Agarabi language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 The Bible Society of Papua New Guinea", - UpdateDate: "2013-01-07", - publicationURL: "http://png.bible/agd/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7918, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AGDWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "agd2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Agarabi NT", - PODISBN: "978-1-5313-0014-2", - script: "Latin", - sourceDate: "2013-01-07", - }, - { - languageCode: "agg", - translationId: "agg", - languageName: "Angor", - languageNameInEnglish: "Angor", - dialect: null, - homeDomain: "png.bible", - title: "God\u0268nd\u0268 Hoaf\u0268", - description: "The New Testament in the Angor language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2001 The Bible Society of Papua New Guinea", - UpdateDate: "2013-01-07", - publicationURL: "http://png.bible/agg/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7790, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AGGPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "agg2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Angor NT", - PODISBN: "978-1-5313-0015-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "agm", - translationId: "agm", - languageName: "Angaataha", - languageNameInEnglish: "Angaataha", - dialect: null, - homeDomain: "png.bible", - title: "Autaahaat\u0268hom\u0268 P\u0268w\u0268ha Gaaha Wan\u0268ha", - description: "The New Testament in the Angaataha language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-17", - publicationURL: "http://png.bible/agm/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7892, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AGMPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "agm2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Angaataha NT", - PODISBN: "978-1-5313-0016-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "agn", - translationId: "agn", - languageName: "Agutaynen", - languageNameInEnglish: "Agutaynen", - dialect: null, - homeDomain: "ebible.org", - title: "Ang bitala tang Dios: ba-long inigoan; Ang bagong magandang balita: bagong tipan", - description: "New Testament in Agutaynen", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/agn/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7939, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AGNWPS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "agn2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Agutaynen NT", - PODISBN: "978-1-5313-0017-3", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "agr", - translationId: "agr", - languageName: "Aguaruna", - languageNameInEnglish: "Aguaruna", - dialect: null, - homeDomain: "ebible.org", - title: "Awaj\u00fan [Aguaruna]", - description: "Aguaruna: Awaj\u00fan [Aguaruna] (Bible)", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/agr/", - OTbooks: 30, - OTchapters: 410, - OTverses: 9004, - NTbooks: 27, - NTchapters: 260, - NTverses: 7946, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AGRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "agr2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Aguaruna Bible", - PODISBN: "978-1-5313-0018-0", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "agt", - translationId: "agt", - languageName: "Central Cagayan Agta", - languageNameInEnglish: "Agta, Central Cagayan", - dialect: null, - homeDomain: "ebible.org", - title: "Uhohug na Namaratu gafu te Hesus Kristu", - description: "New Testament in Agta, Central Cagayan", - Redistributable: true, - Copyright: "Copyright \u00a9 1992 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/agt/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7602, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AGTWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "agt1992eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Central Cagayan Agta", - PODISBN: "978-1-5313-0020-3", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "agu", - translationId: "aguBl", - languageName: "Aguacateco", - languageNameInEnglish: "Aguacateco", - dialect: null, - homeDomain: "ebible.org", - title: "Yi Antiw Bible / Yi Ac'aj Testament", - description: "Bible in Aguacateco (GT:agu:Aguacateco)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/aguBl/", - OTbooks: 26, - OTchapters: 514, - OTverses: 12008, - NTbooks: 27, - NTchapters: 260, - NTverses: 7935, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AGUNVS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "agu2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Aguacateco Bible", - PODISBN: "978-1-5313-0021-0", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "aia", - translationId: "aia", - languageName: "Arosi", - languageNameInEnglish: "Arosi", - dialect: null, - homeDomain: "ebible.org", - title: "Taroha Goro mana Usuusu Maea", - description: "The New Testament in the Arosi language of the Solomon Islands", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-11-09", - publicationURL: "http://ebible.org/aia/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7836, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AIAWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aia2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Arosi New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "aii", - translationId: "aii", - languageName: - "\u0710\u0735\u072c\u0742\u0718\u073c\u072a\u0735\u071d\u0732\u0710 \u0720\u0738\u072b\u0735\u0722\u0735\u0710", - languageNameInEnglish: "Assyrian Neo-Aramaic", - dialect: null, - homeDomain: "ebible.org", - title: "\u0715\u071d\u072c\u0729\u0710 \u071a\u0715\u072c\u0710 \u0715\u0721\u072a\u0722 \u071d\u072b\u0718\u0725 \u0721\u072b\u071d\u071a\u0710 \u0718\u0721\u0719\u0721\u0718\u072a\u0308\u0710 \u0712\u0720\u072b\u0722\u0710 \u0710\u072c\u0718\u072a\u071d\u0710", - description: "New Testament and Psalms in Assyrian", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Aramaic Bible Translation, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/aii/", - OTbooks: 1, - OTchapters: 150, - OTverses: 2461, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AIIABT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aii2014eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "Gentium", - shortTitle: "Assyrian Neo-Aramaic NT+Psalms", - PODISBN: "978-1-5313-0022-7", - script: "Syriac", - sourceDate: "2014-07-29", - }, - { - languageCode: "twi", - translationId: "aka", - languageName: "Asante Twi", - languageNameInEnglish: "Twi", - dialect: "Asante", - homeDomain: "ebible.org", - title: "Biblica\u00ae Wonhia \u025bho kwamma nhoma Asante Twi Nkwa As\u025bm\u2122", - description: - "Twi: Biblica\u00ae Wonhia \u025bho kwamma nhoma Asante Twi Nkwa As\u025bm\u2122 (Bible)", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Biblica, Inc.", - UpdateDate: "2021-06-30", - publicationURL: "http://ebible.org/aka/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23142, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AKABIB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aka2020eb", - rodCode: 2272.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Asante Twi Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-04-13", - }, - { - languageCode: "ake", - translationId: "akeNT", - languageName: "Akawaio", - languageNameInEnglish: "Akawaio", - dialect: null, - homeDomain: "ebible.org", - title: "Wak\u0289 Itekare: Emenna' Pe Ekonekan N\u0268to'", - description: "New Testament in Akawaio (GY:ake:Akawaio)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/akeNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7940, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AKEBSS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ake2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Akawaio NT", - PODISBN: "978-1-5313-0023-4", - script: "Latin", - sourceDate: "2016-09-15", - }, - { - languageCode: "akh", - translationId: "akh", - languageName: "Angal Heneng", - languageNameInEnglish: "Angal Heneng", - dialect: "Waola", - homeDomain: "png.bible", - title: "Angal Heneng mbuk Ngaoran Angal Bib Hobau Sao ngo wi o", - description: "The New Testament in the Angal Heneng Language of Papua New Guinea", - Redistributable: false, - Copyright: "Copyright \u00a9 1978 The Bible Society of Papua New Guinea", - UpdateDate: "2020-11-10", - publicationURL: "http://png.bible/akh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7775, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AKHBSP", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "akh1978eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Angal Heneg NT", - PODISBN: "978-1-5313-0024-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "akp", - translationId: "akp", - languageName: null, - languageNameInEnglish: "Siwu", - dialect: null, - homeDomain: "ebible.org", - title: "Ndamu \u0194\u025bt\u025b Siwu", - description: "Siwu: Ndamu \u0194\u025bt\u025b Siwu New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/akp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7939, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AKPWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "akp2008eb", - rodCode: 4728.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Siwu NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "alh", - translationId: "alh", - languageName: "Alawa", - languageNameInEnglish: "Alawa", - dialect: null, - homeDomain: "ebible.org", - title: "Alawa Song Buk", - description: "Assorted songs in the Alawa language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1991 Wycliffe Bible Translators", - UpdateDate: "2021-11-23", - publicationURL: "http://ebible.org/alh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ALHWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "alh1991eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Alawa Song Book", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-24", - }, - { - languageCode: "alp", - translationId: "alpNT", - languageName: "Alune", - languageNameInEnglish: "Alune", - dialect: null, - homeDomain: "alkitab.pw", - title: "Janji beluke", - description: "New Testament in Alune", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://alkitab.pw/alpNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7837, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ALPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "alp2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Alune NT", - PODISBN: "978-1-5313-0025-8", - script: "Latin", - sourceDate: "2014-05-15", - }, - { - languageCode: "alq", - translationId: "alqALGNT", - languageName: "Algonquin", - languageNameInEnglish: "Algonquin", - dialect: null, - homeDomain: "ebible.org", - title: "Kije Manido Odikido8in: Ocki Mazinaigan", - description: "Algonquin: Algonquin New Testament New Testament only", - Redistributable: true, - Copyright: "Copyright \u00a9 1998 Canadian Bible Society", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/alqALGNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7923, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ALQCBS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "alqALG1998eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Algonquin NT", - PODISBN: "978-1-5313-0026-5", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "als", - translationId: "alsSHQ", - languageName: "shqiptar", - languageNameInEnglish: "Albanian, Tosk", - dialect: null, - homeDomain: "ebible.org", - title: "Bibla e Shenjt\u00eb", - description: "The Holy Bible in Albanian", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2014-09-04", - publicationURL: "http://ebible.org/alsSHQ/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ALSSHQ", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "alsSHQ1994eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Albanian Bible", - PODISBN: "978-1-5313-0027-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "aly", - translationId: "aly", - languageName: "Alyawarr", - languageNameInEnglish: "Alyawarr", - dialect: null, - homeDomain: "ebible.org", - title: "Alyawarr Bible", - description: "Portions of the Holy Bible in the Alyawarr language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators", - UpdateDate: "2022-12-14", - publicationURL: "http://ebible.org/aly/", - OTbooks: 5, - OTchapters: 107, - OTverses: 2204, - NTbooks: 17, - NTchapters: 199, - NTverses: 6124, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ALYWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aly2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Alyawarr Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2022-12-14", - }, - { - languageCode: "ame", - translationId: "ameNT", - languageName: "Yanesha'", - languageNameInEnglish: "Yanesha'", - dialect: null, - homeDomain: "ebible.org", - title: "Yompor Po\u02bc\u00f1o\u00f1 \u00f1e\u00f1t \u0303 atto\u0303 Yepartseshar Jesucristo e\u02bc\u00f1e etserra a\u02bcpoctaterrnay Yomporesho", - description: "New Testament in Yanesha' (PE:ame:Yanesha')", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/ameNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7738, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AMETBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ame2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yanesha' NT", - PODISBN: "978-1-5313-0028-9", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "amf", - translationId: "amf", - languageName: "Banna", - languageNameInEnglish: "Hamer-Banna", - dialect: null, - homeDomain: "ebible.org", - title: "Haalin Mallano", - description: "The New Testament in the Banna language of Ethiopia", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 SIM International", - UpdateDate: "2014-10-15", - publicationURL: "http://ebible.org/amf/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7839, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AMFSIM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "amf2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Banna NT", - PODISBN: "978-1-5313-0029-6", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "amh", - translationId: "amh", - languageName: "\u12a0\u121b\u122d\u129b", - languageNameInEnglish: "Amharic", - dialect: null, - homeDomain: "ebible.org", - title: "\u1218\u133d\u1210\u134d \u1245\u12f1\u1235", - description: "The New Testament in the Amharic language of Ethiopia", - Redistributable: true, - Copyright: "Copyright \u00a9 1962, 2003 United Bible Societies", - UpdateDate: "2014-09-09", - publicationURL: "http://ebible.org/amh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7369, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AMHAMH", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "amh2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Abyssinica SIL", - shortTitle: "Amharic NT", - PODISBN: "978-1-5313-0788-2", - script: "Amheric", - sourceDate: "2020-10-09", - }, - { - languageCode: "amk", - translationId: "amk", - languageName: "Ambai", - languageNameInEnglish: "Ambai", - dialect: null, - homeDomain: "ebible.org", - title: "Sempaisi Ne Kaiwo Mirarebanai", - description: "New Testament in Ambai", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/amk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7901, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AMKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "amk2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Ambai NT", - PODISBN: "978-1-5313-0030-2", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "amm", - translationId: "amm", - languageName: "Sawiyanu", - languageNameInEnglish: "Ama", - dialect: null, - homeDomain: "png.bible", - title: "Kotoni Imo Itouniyaimo", - description: - "The New Testament in the Ama language of Papua New Guinea. The Ama language is also known as the Sawiyanu language.", - Redistributable: true, - Copyright: "Copyright \u00a9 1990, 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-17", - publicationURL: "http://png.bible/amm/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7910, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AMMTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "amm2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Ama NT", - PODISBN: "978-1-5313-0031-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "amn", - translationId: "amn-amanab", - languageName: "Amanab", - languageNameInEnglish: "Amanab", - dialect: "Amanab", - homeDomain: "png.bible", - title: "Godna mo Awai mona go", - description: "The New Testament in the Amanab language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2001 The Bible Society of Papua New Guinea", - UpdateDate: "2013-01-07", - publicationURL: "http://png.bible/amn-amanab/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7916, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AMNANA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "amnA2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Amanab NT", - PODISBN: "978-1-5313-0032-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "amn", - translationId: "amn-n", - languageName: "Amanab (Naineri)", - languageNameInEnglish: "Amanab", - dialect: "Naineri", - homeDomain: "png.bible", - title: "Godna mo Awai mona go", - description: - "The New Testament in the Naineri dialect of the Amanab language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-19", - publicationURL: "http://png.bible/amn-n/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7916, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AMNNAI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "amnN2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Amanab Naineri NT", - PODISBN: "978-1-5313-0033-3", - script: "Latin", - sourceDate: "2011-07-22", - }, - { - languageCode: "amo", - translationId: "amo", - languageName: "Timap", - languageNameInEnglish: "Amo", - dialect: null, - homeDomain: "ebible.org", - title: "Amo New Testament", - description: "The New Testament in the Amo language of Nigeria", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door43 World Missions Community", - UpdateDate: "2020-07-06", - publicationURL: "http://ebible.org/amo/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AMOD43", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "amo2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Amo NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-07-06", - }, - { - languageCode: "amp", - translationId: "amp", - languageName: "Alamblak", - languageNameInEnglish: "Alamblak", - dialect: null, - homeDomain: "png.bible", - title: "Bro Nkifrarhu Mrokfot", - description: "The New Testament in the Alamblak language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2003, 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2004-01-01", - publicationURL: "http://png.bible/amp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7800, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AMPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "amp2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Alamblak NT", - PODISBN: "978-1-5313-0034-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "amr", - translationId: "amrNT", - languageName: "Amarakaeri", - languageNameInEnglish: "Amarakaeri", - dialect: null, - homeDomain: "ebible.org", - title: "Jesucristo oy oa\u2019pak: Kenda Jesucristoa; monigka\u2019uyatenok; Diostaj mo\u2019manopo\u2019yarea\u2019ika\u2019ne", - description: "New Testament in Amarakaeri (PE:amr:Amarakaeri)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/amrNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7668, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AMRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "amrNT2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Amarakaeri NT", - PODISBN: "978-1-5313-0035-7", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "amu", - translationId: "amuNT", - languageName: "Amuzgo, Guerrero", - languageNameInEnglish: "Amuzgo, Guerrero", - dialect: null, - homeDomain: "ebible.org", - title: "\u00d1\u02bcoom xco na tque\u207f ty\u02bco\u0331o\u0331ts\u02bcom cantxja \u02bcnaa\u02bc Jesucristo", - description: "New Testament in Amuzgo, Guerrero (MX:amu:Amuzgo, Guerrero)", - Redistributable: true, - Copyright: "Copyright \u00a9 1999 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/amuNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7947, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AMUWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "amu1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Amuzgo, Guerrero NT", - PODISBN: "978-1-5313-0036-4", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "amx", - translationId: "amx", - languageName: "Anmatyerr", - languageNameInEnglish: "Anmatyerre", - dialect: null, - homeDomain: "ebible.org", - title: "Anmatyerr Bible", - description: "Portions of the Holy Bible in the Anmatyerr language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators", - UpdateDate: "2021-12-10", - publicationURL: "http://ebible.org/amx/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 11, - NTchapters: 116, - NTverses: 4061, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AMXWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "amx2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Anmatyerr Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-07-24", - }, - { - languageCode: "anh", - translationId: "anh", - languageName: "Nend", - languageNameInEnglish: "Nend", - dialect: null, - homeDomain: "png.bible", - title: "MAK Yak\u014b Oh\u0268rand Ya Imb\u0268r Mak\u0268v Mpamar", - description: "Mark in Nend", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://png.bible/anh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 16, - NTverses: 635, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ANHPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "anh2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Nend Mark", - PODISBN: null, - script: "Latin", - sourceDate: "2019-12-30", - }, - { - languageCode: "anv", - translationId: "anvNT", - languageName: "Denya", - languageNameInEnglish: "Denya", - dialect: null, - homeDomain: "ebible.org", - title: "\u014aw\u025b menomeny\u025b\u025b\u0301 mek\u025b\u0301", - description: "New Testament in Denya (CM:anv:Denya)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/anvNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7944, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ANVWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "anv2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Denya NT", - PODISBN: "978-1-5313-0037-1", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "any", - translationId: "any", - languageName: "Anyin", - languageNameInEnglish: "Anyin", - dialect: null, - homeDomain: "ebible.org", - title: "Ny\u0269hy\u025b F\u028bf\u0254l\u025b\u02bcn", - description: "Anyin: Ny\u0269hy\u025b F\u028bf\u0254l\u025b\u02bcn New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1997 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-13", - publicationURL: "http://ebible.org/any/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ANYWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "any1997eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Anyin: Ny\u0269hy\u025b F\u028bf\u0254l\u025b\u02bcn New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "aoi", - translationId: "aoi", - languageName: "Anindilyakwa", - languageNameInEnglish: "Anindilyakwa", - dialect: null, - homeDomain: "ebible.org", - title: "Anindilyakwa Bible", - description: "Portions of the Holy Bible in the Anindilyakwa language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Bible Society of Australia", - UpdateDate: "2021-11-23", - publicationURL: "http://ebible.org/aoi/", - OTbooks: 2, - OTchapters: 54, - OTverses: 1486, - NTbooks: 5, - NTchapters: 62, - NTverses: 2332, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AOIBSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aoi2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Anindilyakwa Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2022-05-27", - }, - { - languageCode: "aoj", - translationId: "aoj", - languageName: "Mufian", - languageNameInEnglish: "Mufian", - dialect: null, - homeDomain: "png.bible", - title: "Basef Bu\ua78cwafi Godi", - description: "The New Testament in the Mufian Language", - Redistributable: true, - Copyright: "Copyright \u00a9 1998 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-07-19", - publicationURL: "http://png.bible/aoj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7829, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AOJTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aojM1998eb", - rodCode: 4668.0, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Mufian NT", - PODISBN: "978-1-5313-0038-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "aoj", - translationId: "aoj-filifita", - languageName: "Filifita", - languageNameInEnglish: "Filifita dialect of Mufian", - dialect: "Filifita or Ilahita", - homeDomain: "png.bible", - title: "BASEF BU\ua78bWAMI GODI", - description: - "The New Testament in the Filifita Language (Ilahita Dialect), East Sepik Province, PAPUA NEW GUINEA", - Redistributable: true, - Copyright: "Copyright \u00a9 1998 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-18", - publicationURL: "http://png.bible/aoj-filifita/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7828, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AOJFIL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aojF1998eb", - rodCode: 20757.0, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Filifita NT", - PODISBN: "978-1-5313-0039-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "aom", - translationId: "aom", - languageName: "\u00d6mie", - languageNameInEnglish: "Omie", - dialect: null, - homeDomain: "png.bible", - title: "God-are J\u00f6goru I'oho", - description: "The New Testament in the Omie language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1991 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/aom/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7909, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AOMTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aom1991eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Omie NT", - PODISBN: "978-1-5313-0040-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "aon", - translationId: "aon", - languageName: "Arapesh", - languageNameInEnglish: "Arapesh", - dialect: "Central", - homeDomain: "png.bible", - title: "IRUHIN ANANIN BARAEN", - description: - "The New Testament in the Central dialect of the Arapesh language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-01-05", - publicationURL: "http://png.bible/aon/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7832, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AONWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aon2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Arapesh NT", - PODISBN: "978-1-5313-0041-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "apb", - translationId: "apb", - languageName: "Sa'a", - languageNameInEnglish: "Sa'a", - dialect: null, - homeDomain: "ebible.org", - title: "Tataroha Diana i Sulie Aalaha Ikie a Jisas Kraes", - description: "The New Testament in the Sa'a language of the Solomon Islands", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-11-07", - publicationURL: "http://ebible.org/apb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7843, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "APBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "abp2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sa'a New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "ape", - translationId: "apeB", - languageName: "Bukiyip", - languageNameInEnglish: "Bukiyip", - dialect: "Mountain Arapesh", - homeDomain: "png.bible", - title: "God Ananin Balan", - description: "New Testament in Bukiyip Mountain Arapesh; ape", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://png.bible/apeB/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7834, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "APEBWB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "apeB2013eb", - rodCode: 3286.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Bukiyip NT", - PODISBN: "978-1-5313-0043-2", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "ape", - translationId: "apec", - languageName: "Coastal Arapesh", - languageNameInEnglish: "Bukiyip", - dialect: "Central", - homeDomain: "png.bible", - title: "IRUHIN ANANIN BARAEN", - description: - "The New Testament in the Coastal Arapesh dialect of the Bukiyip language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-05-07", - publicationURL: "http://png.bible/apec/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7832, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "APECCE", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "apec2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Coastal Arapesh NT", - PODISBN: null, - script: "Latin", - sourceDate: "2021-05-08", - }, - { - languageCode: "apn", - translationId: "apnNT", - languageName: "Apinay\u00e9", - languageNameInEnglish: "Apinay\u00e9", - dialect: null, - homeDomain: "ebible.org", - title: "T\u0129rt\u0169m kape\u0303r \u00e3 kag\u00e0 nyw", - description: "New Testament in Apinay\u00e9 (BR:apn:Apinay\u00e9)", - Redistributable: true, - Copyright: "Copyright \u00a9 1999 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/apnNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7195, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "APNWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "apn1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Apinay\u00e9 NT", - PODISBN: "978-1-5313-0044-9", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "apr", - translationId: "apr", - languageName: "Arop-Lokep", - languageNameInEnglish: "Arop-Lokep", - dialect: "Arop", - homeDomain: "png.bible", - title: "Rau Ke Maro", - description: - "The New Testament in the Arop dialect of the Arop-Lokep language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-12-02", - publicationURL: "http://png.bible/apr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7889, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "APRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "apr2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Arop-Lokep", - PODISBN: "978-1-5313-0045-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "apu", - translationId: "apuNT", - languageName: "Apurin\u00e3", - languageNameInEnglish: "Apurin\u00e3", - dialect: null, - homeDomain: "ebible.org", - title: "Teoso s\u00e3kire amaneri", - description: "New Testament in Apurin\u00e3 (BR:apu:Apurin\u00e3)", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/apuNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "APUWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "apu2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Apurin\u00e3 NT", - PODISBN: "978-1-5313-0047-0", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "apw", - translationId: "apwNT", - languageName: "Western Apache", - languageNameInEnglish: "Apache, Western", - dialect: null, - homeDomain: "ebible.org", - title: "The New Testament of our Lord and Saviour Jesus Christ", - description: "New Testament in Apache, Western (US:apw:Apache, Western)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/apwNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "APWWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "apw2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Western Apache NT", - PODISBN: "978-1-5313-0048-7", - script: "Latin", - sourceDate: "2021-10-19", - }, - { - languageCode: "apy", - translationId: "apyNT", - languageName: "Apala\u00ed", - languageNameInEnglish: "Apala\u00ed", - dialect: null, - homeDomain: "ebible.org", - title: "Riton\u00f5po Omiry: A B\u00edblia Sagrada na l\u00edngua Aparai do Brasil", - description: "New Testament in Apala\u00ed (BR:apy:Apala\u00ed)", - Redistributable: false, - Copyright: "Copyright \u00a9 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-10", - publicationURL: "http://ebible.org/apyNT/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22636, - NTbooks: 27, - NTchapters: 260, - NTverses: 7921, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "APYWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "apy2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Apalai NT", - PODISBN: "978-1-5313-0049-4", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "apz", - translationId: "apz", - languageName: "Ampeeli-Wojokeso", - languageNameInEnglish: "Safeyoka", - dialect: null, - homeDomain: "png.bible", - title: "Mpohwoe Hungkuno Songofoho", - description: - "The New Testament and Genesis in the Safeyoka (Ampeeli-Wojokeso) language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1988 Wycliffe Bible Translators, Inc.", - UpdateDate: "2011-12-15", - publicationURL: "http://png.bible/apz/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7844, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "APZPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "apz1988eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Ampeeli-Wojokeso NT+Genesis", - PODISBN: "978-1-5313-0050-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "arb", - translationId: "arbnav", - languageName: "\u0627\u0644\u0639\u0631\u0628\u064a\u0629", - languageNameInEnglish: "Arabic, Standard", - dialect: null, - homeDomain: "ebible.org", - title: "\u0643\u062a\u0627\u0628 \u0627\u0644\u062d\u064a\u0627\u0629", - description: "New Arabic Version (Ketab El Hayat) Book of Life", - Redistributable: true, - Copyright: "Copyright \u00a9 1988, 1997 International Bible Society", - UpdateDate: "2019-10-09", - publicationURL: "http://ebible.org/arbnav/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23144, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ARZNAV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "arbNAV1997eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "Amiri", - shortTitle: "New Arabic Version (Book of Life)", - PODISBN: null, - script: "Arabic", - sourceDate: "2020-10-09", - }, - { - languageCode: "arb", - translationId: "arb-vd", - languageName: "\u0627\u0644\u0639\u0631\u0628\u064a\u0629", - languageNameInEnglish: "Arabic", - dialect: "standard", - homeDomain: "ebible.org", - title: "\u0627\u0644\u0643\u062a\u0627\u0628 \u0627\u0644\u0645\u0642\u062f\u0633 \u0628\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629\u060c \u0641\u0627\u0646 \u062f\u0627\u064a\u0643", - description: "Arabic Van Dyck translation of the Holy Bible", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-08-03", - publicationURL: "http://ebible.org/arb-vd/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ARZVDV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "arbVDeb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "Amiri", - shortTitle: "Arabic Van Dyck Bible", - PODISBN: "978-1-5313-0051-7", - script: "Arabic", - sourceDate: "2022-04-21", - }, - { - languageCode: "arb", - translationId: "arbwbtc", - languageName: "\u0627\u0644\u0639\u0631\u0628\u064a\u0629", - languageNameInEnglish: "Arabic", - dialect: "Standard", - homeDomain: "inscript.org", - title: "\u0627\u0644\u0643\u062a\u0627\u0628 \u0627\u0644\u0645\u0642\u062f\u0633 \u0628\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 - \u0627\u0644\u062a\u0631\u062c\u0645\u0629 \u0627\u0644\u0645\u0628\u0633\u0637\u0629", - description: "The Holy Bible in Arabic, Easy Reading Version", - Redistributable: false, - Copyright: "Copyright \u00a9 2007 World Bible Translation Center", - UpdateDate: "2015-06-09", - publicationURL: "http://inscript.org/arbwbtc/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ARAWTC", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "arbWBTC2007eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "Amiri", - shortTitle: "WBTC Arabic Bible", - PODISBN: null, - script: "Arabic", - sourceDate: "2020-10-09", - }, - { - languageCode: "are", - translationId: "are", - languageName: "Western Arrarnta", - languageNameInEnglish: "Arrarnta, Western", - dialect: null, - homeDomain: "ebible.org", - title: "Altjirraka angkatja - Arrarnturna kngartiwukala", - description: "The New Testament in the Western Arrarnta language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1997 Bible Society of Australia", - UpdateDate: "2019-05-14", - publicationURL: "http://ebible.org/are/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7917, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AREBSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "are1997eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Western Arrarnta NT", - PODISBN: null, - script: "Latin", - sourceDate: "2019-05-13", - }, - { - languageCode: "arl", - translationId: "arlNT", - languageName: "Arabela", - languageNameInEnglish: "Arabela", - dialect: null, - homeDomain: "ebible.org", - title: "Quiarinio pueyaso rupaa pa jiyaniijia Jesucristojiniji pueyano rupaajinia", - description: "New Testament in Arabela (PE:arl:Arabela)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/arlNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7912, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ARLWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "arl2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Arabela NT", - PODISBN: "978-1-5313-0052-4", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "arn", - translationId: "arnNT", - languageName: "Mapudungun", - languageNameInEnglish: "Mapudungun", - dialect: null, - homeDomain: "ebible.org", - title: "Ng\u00fcnechen \u00f1i K\u00fcme Dungu", - description: "New Testament in Mapudungun (CI:arn:Mapudungun)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/arnNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7923, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ARNSBU", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "arn2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Mapudungun NT", - PODISBN: "978-1-5313-0053-1", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "arp", - translationId: "arp", - languageName: "Arapaho", - languageNameInEnglish: "Arapaho", - dialect: null, - homeDomain: "ebible.org", - title: "Hethadenee waunauyaunee vadan Luke Vanen\u0101na", - description: - "The Gospel According to Luke in the Arapaho Language of the United States of America", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2015-05-06", - publicationURL: "http://ebible.org/arp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 24, - NTverses: 1151, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ARPABS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "arp1903eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Arapaho Luke", - PODISBN: "978-1-5313-0054-8", - script: "Latin", - sourceDate: "2022-01-29", - }, - { - languageCode: "arq", - translationId: "arq", - languageName: null, - languageNameInEnglish: "Arabic, Algerian Spoken", - dialect: null, - homeDomain: "ebible.org", - title: "\u0627\u0644\u0639\u0647\u062f \u0627\u0644\u062c\u062f\u064a\u062f \u0628\u0627\u0644\u0644\u0647\u062c\u0629 \u0627\u0644\u062c\u0632\u0627\u0626\u0631\u064a\u0629", - description: "Arabic, Algerian Spoken: Arabe Algerian NT", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 United Bible Societies", - UpdateDate: "2020-11-10", - publicationURL: "http://ebible.org/arq/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7946, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ARQUBS", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "arq2018eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "Amiri", - shortTitle: "Arabic, Algerian Spoken: Arabe Algerian NT", - PODISBN: null, - script: "Arabic", - sourceDate: "2020-11-11", - }, - { - languageCode: "arz", - translationId: "arz", - languageName: "Arabic, Egyptian Spoken", - languageNameInEnglish: "Arabic, Egyptian Spoken", - dialect: null, - homeDomain: "ebible.org", - title: "Egyptian Arabic Translation", - description: "Arabic, Egyptian Spoken: Egyptian Arabic Translation (Portions)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-13", - publicationURL: "http://ebible.org/arz/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1289, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ARZWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "arz2020eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "Amiri", - shortTitle: "Arabic, Egyptian Spoken: Egyptian Arabic Translation (Portions)", - PODISBN: null, - script: "Arabic", - sourceDate: "2020-11-14", - }, - { - languageCode: "asm", - translationId: "asmfb", - languageName: "\u0985\u09b8\u09ae\u09c0\u09af\u09bc\u09be", - languageNameInEnglish: "Assamese", - dialect: "Standard", - homeDomain: "ebible.org", - title: "\u0987\u09a3\u09cd\u09a1\u09bf\u09df\u09be\u09a8 \u09f0\u09bf\u09ad\u09be\u0987\u099a \u09ad\u09be\u09f0\u099a\u09a8 (IRV) \u0986\u099a\u09be\u09ae\u09bf\u099a - 2019", - description: "The Indian Revised Version Holy Bible in the Assamese Language of India", - Redistributable: true, - Copyright: "Copyright \u00a9 2017, 2018 Bridge Connectivity Solutions", - UpdateDate: "2020-02-11", - publicationURL: "http://ebible.org/asmfb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23137, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ASMIRV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "asmfb2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Assamese Indian Revised Version Bible", - PODISBN: null, - script: "Bengali", - sourceDate: "2020-01-24", - }, - { - languageCode: "aso", - translationId: "aso", - languageName: "Dano", - languageNameInEnglish: "Dano", - dialect: null, - homeDomain: "png.bible", - title: "MONO' GODOLO GOSOHO'", - description: "The New Testament in the Dano (Upper Asaro) language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1989 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-06-24", - publicationURL: "http://png.bible/aso/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7714, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ASOTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aso1989eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Dano NT", - PODISBN: "978-1-5313-0055-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ata", - translationId: "ata", - languageName: "Pele-Ata", - languageNameInEnglish: "Pele-Ata", - dialect: null, - homeDomain: "png.bible", - title: "Vaikala Noxou Lataua", - description: - "The New Testament plus Genesis and Jonah in the Ata language of West New Britain, Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 The Bible Society of Papua New Guinea", - UpdateDate: "2013-01-05", - publicationURL: "http://png.bible/ata/", - OTbooks: 2, - OTchapters: 54, - OTverses: 1550, - NTbooks: 27, - NTchapters: 260, - NTverses: 7891, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ATAPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ata2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Ata Bible", - PODISBN: "978-1-5313-0056-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "atb", - translationId: "atbNT", - languageName: "Zaiwa", - languageNameInEnglish: "Zaiwa", - dialect: null, - homeDomain: "ebible.org", - title: "Chyoiy\u00fang chyumlaik\u00e1: dangshikaq asik; Zaiwa", - description: "New Testament in Zaiwa", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/atbNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7937, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ATBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "atb2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Zaiwa NT", - PODISBN: "978-1-5313-0057-9", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "atd", - translationId: "atdNT", - languageName: "Manobo, Ata", - languageNameInEnglish: "Manobo, Ata", - dialect: null, - homeDomain: "ebible.org", - title: "Kasulatan to Magboboot", - description: "New Testament in Manobo, Ata", - Redistributable: true, - Copyright: "Copyright \u00a9 2000 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/atdNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7852, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ATDWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "atd2000eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ata Manobo NT", - PODISBN: "978-1-5313-0058-6", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "atg", - translationId: "atgNT", - languageName: "Ivbie North-Okpela-Arhe", - languageNameInEnglish: "Ivbie North-Okpela-Arhe", - dialect: null, - homeDomain: "ebible.org", - title: "Ebe-No-Pfuas\u1eb9 Ishob\u1ecd Onogb\u1ecd", - description: "New Testament in Ivbie North-Okpela-Arhe (NI:atg:Ivbie North-Okpela-Arhe)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-08-09", - publicationURL: "http://ebible.org/atgNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ATGWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "atg2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ivbie North-Okpela-Arhe NT", - PODISBN: "978-1-5313-0059-3", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "att", - translationId: "att", - languageName: "Pamplona Atta", - languageNameInEnglish: "Atta, Pamplona", - dialect: null, - homeDomain: "ebible.org", - title: "Y\u00f9 bilin ni Namar\u00f2 nga meyannung k\u00e2 Apu Kesu Kiristu: Y\u00f9 bagu nga tar\u00e1tu ni Namar\u00f2 s\u00f9 ira nga mangikatal\u00e0 k\u00e2 Apu Kesu Kiristu", - description: "New Testament in Atta, Pamplona", - Redistributable: true, - Copyright: "Copyright \u00a9 1996 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/att/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ATTWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "att1996eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Pamplona Atta NT", - PODISBN: "978-1-5313-0060-9", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "auc", - translationId: "aucNT", - languageName: "Waorani", - languageNameInEnglish: "Waorani", - dialect: null, - homeDomain: "ebible.org", - title: "W\u00e6ngongu\u00ef n\u00e4n\u00f6 Ap\u00e6\u0308nega\u00efn\u00f6", - description: "New Testament in Waorani (EC:auc:Waorani)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/aucNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AUCWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "auc2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Waorani NT", - PODISBN: "978-1-5313-0061-6", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "aui", - translationId: "aui", - languageName: "Anuki", - languageNameInEnglish: "Anuki", - dialect: null, - homeDomain: "png.bible", - title: "Buk Baibel long Anuki", - description: "Portions of the Holy Bible in the Anuki language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2010-2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-06-02", - publicationURL: "http://png.bible/aui/", - OTbooks: 28, - OTchapters: 224, - OTverses: 2446, - NTbooks: 2, - NTchapters: 44, - NTverses: 1641, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AUIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "aui2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Anuki Bible Portions", - PODISBN: "978-1-5313-0062-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "auu", - translationId: "auu", - languageName: "Auye", - languageNameInEnglish: "Auye", - dialect: null, - homeDomain: "ebible.org", - title: "Ogatamee Me Etokaa Gipii See Menaa", - description: "Auye: Ogatamee Me Etokaa Gipii See Menaa (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-11", - publicationURL: "http://ebible.org/auu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AUUWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "auu2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Auye: Ogatamee Me Etokaa Gipii See Menaa (Bible)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "auy", - translationId: "auy", - languageName: "Awiyaana", - languageNameInEnglish: "Awiyaana", - dialect: null, - homeDomain: "png.bible", - title: "A\u00fa-aai s\u00edmai k\u00e1\u00e1\u00edsamakain-aai", - description: "The New Testament in the Awiyaana language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1984 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-08-17", - publicationURL: "http://png.bible/auy/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7779, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AUYTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "auy1984eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Awiyaana NT", - PODISBN: "978-1-5313-0063-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "avt", - translationId: "avt", - languageName: "Au", - languageNameInEnglish: "Au", - dialect: null, - homeDomain: "png.bible", - title: "H\u0268m Yaaim Me God", - description: "The New Testament in the Au language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1992 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-12-03", - publicationURL: "http://png.bible/avt/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7880, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AVTWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "avt1992eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Au NT", - PODISBN: "978-1-5313-0064-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "avu", - translationId: "avu", - languageName: null, - languageNameInEnglish: "Avokaya", - dialect: null, - homeDomain: "ebible.org", - title: "T\u00e3-dr\u0131\u0323\u0303 L\u1ebdl\u1ebd \u00d3\ua78cd\u00ed \u00d3v\u00e2r\u00ed K\u00e2", - description: - "Avokaya: T\u00e3-dr\u0131\u0323\u0303 L\u1ebdl\u1ebd \u00d3\ua78cd\u00ed \u00d3v\u00e2r\u00ed K\u00e2 New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-13", - publicationURL: "http://ebible.org/avu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7593, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AVUWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "avu2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Avokaya NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "awb", - translationId: "awb", - languageName: "Awa", - languageNameInEnglish: "Awa", - dialect: null, - homeDomain: "png.bible", - title: "Manik\u00e1ne O Ehwehne", - description: "God's New Talk: The New Testament in the Awa Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1974, 1997 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-12-11", - publicationURL: "http://png.bible/awb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7938, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AWBTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "awb1997eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Awa NT", - PODISBN: "978-1-5313-0065-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "awk", - translationId: "awk", - languageName: "Awabakalkoba", - languageNameInEnglish: "Awabakal", - dialect: null, - homeDomain: "ebible.org", - title: "EUANGELION UNNI TA JESU-\u00daBA CHRIST-KO-BA UPATOARA LUKA-UMBA", - description: "The Gospel According to Luke in the Awabakal language of Australia", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-03-03", - publicationURL: "http://ebible.org/awk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 24, - NTverses: 1136, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AWKBSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "awk1892eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Awabakal Luke", - PODISBN: null, - script: "Latin", - sourceDate: "2020-03-03", - }, - { - languageCode: "awx", - translationId: "awx", - languageName: "Awara", - languageNameInEnglish: "Awara", - dialect: null, - homeDomain: "png.bible", - title: "Awara Baibel", - description: "Genesis, Ruth, and Jonah in the Awara Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-12-29", - publicationURL: "http://png.bible/awx/", - OTbooks: 3, - OTchapters: 58, - OTverses: 1637, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AWXWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "awx2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Awara Bible portions", - PODISBN: "978-1-5313-0066-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ayh", - translationId: "ayh", - languageName: "Arabic, Hadrami Spoken", - languageNameInEnglish: "Arabic, Hadrami Spoken", - dialect: null, - homeDomain: "ebible.org", - title: "Hadrami Arabic Translation", - description: "Arabic, Hadrami Spoken: Hadrami Arabic Translation (Selections)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-13", - publicationURL: "http://ebible.org/ayh/", - OTbooks: 3, - OTchapters: 58, - OTverses: 1551, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AYHWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ayh2020eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "Amiri", - shortTitle: "Arabic, Hadrami Spoken: Hadrami Arabic Translation (Selections)", - PODISBN: null, - script: "Arabic", - sourceDate: "2020-11-14", - }, - { - languageCode: "ayz", - translationId: "ayz", - languageName: "Mai Brat", - languageNameInEnglish: "Mai Brat", - dialect: null, - homeDomain: "ebible.org", - title: "Watum ro Tuhan Bosi ro Tna", - description: "Mai Brat: Watum ro Tuhan Bosi ro Tna (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-11", - publicationURL: "http://ebible.org/ayz/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7796, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AYZWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ayz2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mai Brat: Watum ro Tuhan Bosi ro Tna (New Testament+)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "azb", - translationId: "azb", - languageName: "Azeri", - languageNameInEnglish: "Azerbaijani, South", - dialect: null, - homeDomain: "ebible.org", - title: "Az\u0259rbaycan dilind\u0259 M\u00fcq\u0259dd\u0259s Kitab", - description: - "The Holy Bible in the Azerbaijani language, also known as the Azeri language, of Azerbaijan, Iran, Iraq, Syria, and Turkey", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 M\u00fcq\u0259dd\u0259s Kitab Sirk\u0259ti", - UpdateDate: "2018-11-09", - publicationURL: "http://ebible.org/azb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7927, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AZBBSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "azb2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Azerbaijani Bible", - PODISBN: "978-1-5313-0067-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "azg", - translationId: "azgNT", - languageName: "Amuzgo, San Pedro Amuzgos", - languageNameInEnglish: "Amuzgo, San Pedro Amuzgos", - dialect: null, - homeDomain: "ebible.org", - title: "Jn\u02bcoon xco na tquen tyo\u02bcts\u02bcon", - description: - "New Testament in Amuzgo, San Pedro Amuzgos (MX:azg:Amuzgo, San Pedro Amuzgos)", - Redistributable: true, - Copyright: "Copyright \u00a9 1992 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/azgNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7940, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AZGTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "azg1992eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "San Pedro Amuzgos NT", - PODISBN: "978-1-5313-0068-5", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "azz", - translationId: "azzNT", - languageName: "Nahuatl, Highland Puebla", - languageNameInEnglish: "Nahuatl, Highland Puebla", - dialect: null, - homeDomain: "ebible.org", - title: "In cuali tajtoltzin de Dios", - description: "New Testament in Nahuatl, Highland Puebla (MX:azz:Nahuatl, Highland Puebla)", - Redistributable: true, - Copyright: "Copyright \u00a9 1975 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/azzNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7947, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AZZTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "azz1975eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Highland Puebla Nahuatl NT", - PODISBN: "978-1-5313-0069-2", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "bao", - translationId: "baoNT", - languageName: "Waimaha", - languageNameInEnglish: "Waimaha", - dialect: null, - homeDomain: "ebible.org", - title: "U\u0336m\u0289reco pac\u0289 wederique", - description: "New Testament in Waimaha", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/baoNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7940, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BAOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bao2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Waimaha NT", - PODISBN: "978-1-5313-0070-8", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "bba", - translationId: "bba", - languageName: "Bariba", - languageNameInEnglish: "Baatonum", - dialect: null, - homeDomain: "ebible.org", - title: "Bibeli Gusun\u0254n Gari", - description: - "The Holy Bible in the Baatonum language of Benin, also called the Bariba language", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 SIM", - UpdateDate: "2014-09-10", - publicationURL: "http://ebible.org/bba/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22682, - NTbooks: 27, - NTchapters: 260, - NTverses: 7905, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BBASIM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bba2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Bariba Bible", - PODISBN: "978-1-5313-0071-5", - script: "Latin", - sourceDate: "2014-10-03", - }, - { - languageCode: "bbb", - translationId: "bbb", - languageName: "Barai", - languageNameInEnglish: "Barai", - dialect: null, - homeDomain: "png.bible", - title: "GODIDO VUA MAEJE", - description: - "Genesis, Exodus, Numbers, Joshua, Ruth, Nehemiah, Jonah, and the New Testament in the Barai language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1994, 2006 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-22", - publicationURL: "http://png.bible/bbb/", - OTbooks: 6, - OTchapters: 167, - OTverses: 2944, - NTbooks: 27, - NTchapters: 260, - NTverses: 7381, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BBBTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bbb2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Barai Bible", - PODISBN: "978-1-5313-0072-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bbr", - translationId: "bbr", - languageName: "Girawa", - languageNameInEnglish: "Girawa", - dialect: null, - homeDomain: "png.bible", - title: "Anut nukan \u00c4m\u00e4n Eposek", - description: "The New Testament in the Girawa Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1994 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-22", - publicationURL: "http://png.bible/bbr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7699, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BBRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bbr1994eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Girawa NT", - PODISBN: "978-1-5313-0073-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bbr", - translationId: "bbr2013", - languageName: "Girawa", - languageNameInEnglish: "Girawa", - dialect: null, - homeDomain: "png.bible", - title: "Anut nukan \u00c4m\u00e4n Eposek", - description: "New Testament in Girawa", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-11", - publicationURL: "http://png.bible/bbr2013/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7699, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BBRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bbr2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "New Testament in Girawa", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "bcc", - translationId: "bcc", - languageName: "Balochi, Southern", - languageNameInEnglish: "Balochi, Southern", - dialect: null, - homeDomain: "ebible.org", - title: "\u0628\u0644\u06c6\u0686\u06cc Balochi", - description: - "Balochi, Southern: \u0628\u0644\u06c6\u0686\u06cc Balochi (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/bcc/", - OTbooks: 1, - OTchapters: 100, - OTverses: 1572, - NTbooks: 14, - NTchapters: 176, - NTverses: 6034, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BCCWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bcc2016eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "Amiri", - shortTitle: - "Balochi, Southern: \u0628\u0644\u06c6\u0686\u06cc Balochi (New Testament+)", - PODISBN: null, - script: "Arabic", - sourceDate: "2020-11-14", - }, - { - languageCode: "bcc", - translationId: "bccl", - languageName: "Balochi, Southern", - languageNameInEnglish: "Balochi, Southern", - dialect: null, - homeDomain: "ebible.org", - title: "Bal\u00f3chi Balochi", - description: "Latin version of the Balochi Bible", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/bccl/", - OTbooks: 1, - OTchapters: 100, - OTverses: 1572, - NTbooks: 14, - NTchapters: 176, - NTverses: 6034, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BCCLWB", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bccl2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Latin version of the Balochi Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "bch", - translationId: "bch", - languageName: "Bariai", - languageNameInEnglish: "Bariai", - dialect: null, - homeDomain: "png.bible", - title: "Deo Ele Posanga", - description: - "Genesis, Exodus, and the New Testament in the Bariai language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-03", - publicationURL: "http://png.bible/bch/", - OTbooks: 2, - OTchapters: 90, - OTverses: 2727, - NTbooks: 27, - NTchapters: 260, - NTverses: 7925, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BCHPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bch2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Bariai Bible", - PODISBN: "978-1-5313-0074-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bco", - translationId: "bco", - languageName: "Kaluli", - languageNameInEnglish: "Kaluli", - dialect: null, - homeDomain: "png.bible", - title: "Kaluli Baibel", - description: "Portions of the New Testament in the Kaluli language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1998 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/bco/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 11, - NTchapters: 62, - NTverses: 1544, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BCOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bco1998eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Kaluli NT", - PODISBN: "978-1-5313-0075-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bcw", - translationId: "bcw", - languageName: "Bana", - languageNameInEnglish: "Bana", - dialect: null, - homeDomain: "ebible.org", - title: "Zliya Y\u01ddw\u01ddn kw\u01ddma w\u01ddz\u01dd naa dz\u01ddk\u01ddn Yes\u01ddw K\u01ddrist\u01ddw", - description: - "Bana: Zliya Y\u01ddw\u01ddn kw\u01ddma w\u01ddz\u01dd naa dz\u01ddk\u01ddn Yes\u01ddw K\u01ddrist\u01ddw New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/bcw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7898, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BCWWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bcw2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Bana: Zliya Y\u01ddw\u01ddn kw\u01ddma w\u01ddz\u01dd naa dz\u01ddk\u01ddn Yes\u01ddw K\u01ddrist\u01ddw New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "bdd", - translationId: "bdd", - languageName: "Bunama", - languageNameInEnglish: "Bunama", - dialect: null, - homeDomain: "png.bible", - title: "LOINA HAUHAUNA", - description: "The New Testament in the Bunama language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1991 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/bdd/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7880, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BDDPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bdd1991eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Bunama NT", - PODISBN: "978-1-5313-0076-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bdh", - translationId: "bdh", - languageName: "Baka", - languageNameInEnglish: "Baka", - dialect: null, - homeDomain: "ebible.org", - title: "M\u0197K\u00c1NDA LOR\u1ee4 \ua78cB\u0197 LOMO K\u0197\u0301 DOS\u1eca\u0301 \u00c9Y\u1eca\u0301 E", - description: - "Baka: M\u0197K\u00c1NDA LOR\u1ee4 \ua78cB\u0197 LOMO K\u0197\u0301 DOS\u1eca\u0301 \u00c9Y\u1eca\u0301 E New Testament+", - Redistributable: false, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/bdh/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1533, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BDHWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bdh2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Baka: M\u0197K\u00c1NDA LOR\u1ee4 \ua78cB\u0197 LOMO K\u0197\u0301 DOS\u1eca\u0301 \u00c9Y\u1eca\u0301 E New Testament+", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "bds", - translationId: "bds", - languageName: "Burunge", - languageNameInEnglish: "Burunge", - dialect: null, - homeDomain: "ebible.org", - title: "Ila\u2044imbidu Gu \u2044abu hari Burungaisoo", - description: "Burunge: Ila\u2044imbidu Gu \u2044abu hari Burungaisoo (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/bds/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BDSWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bds2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Burunge: Ila\u2044imbidu Gu \u2044abu hari Burungaisoo (Bible)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "bea", - translationId: "bea", - languageName: "Dane Zaa", - languageNameInEnglish: "Beaver", - dialect: null, - homeDomain: "ebible.org", - title: "OOTECH OOCHU TAKEHNIYA TINKLES ST. MARK", - description: "The Gospel According to Mark in the Beaver language of Canada", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/bea/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 16, - NTverses: 678, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BEABFB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bea1886eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Beaver Mark", - PODISBN: "978-1-5313-0077-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bef", - translationId: "bef", - languageName: "Bena-bena", - languageNameInEnglish: "Benabena", - dialect: null, - homeDomain: "png.bible", - title: "Ka Lamana'a Mono'i Lu Mu Tifi'ehina Ka Yabe", - description: "The New Testament in the Benabena Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1982 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-09-26", - publicationURL: "http://png.bible/bef/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7859, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BEFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bef1982eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Benabena NT", - PODISBN: "978-1-5313-0078-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bel", - translationId: "bel", - languageName: "Belarusian", - languageNameInEnglish: "Belarusian", - dialect: null, - homeDomain: "ebible.org", - title: "\u0411\u0456\u0431\u043b\u0456\u044f (\u043f\u0435\u0440\u0430\u043a\u043b\u0430\u0434 \u0412.\u0421\u0451\u043c\u0443\u0445\u0456)", - description: "The Holy Bible in Belarusan", - Redistributable: true, - Copyright: - "Copyright \u00a9 2016 John the Forerunner Church of Christians of Evangelical Faith of Minsk City", - UpdateDate: "2019-12-29", - publicationURL: "http://ebible.org/bel/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23208, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BELJFC", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bel2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Belarusan Bible", - PODISBN: "978-1-5313-0830-8", - script: "Cyrillic", - sourceDate: "2021-05-21", - }, - { - languageCode: "bel", - translationId: "beln", - languageName: "\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0430\u044f", - languageNameInEnglish: "\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0430\u044f", - dialect: null, - homeDomain: "ebible.org", - title: "\u041d\u043e\u0432\u044b \u0417\u0430\u043f\u0430\u0432\u0435\u0442 \u0456 \u041a\u043d\u0456\u0433\u0456 \u0421\u0442\u0430\u0440\u043e\u0433\u0430 \u0417\u0430\u043f\u0430\u0432\u0435\u0442\u0443", - description: "Belarusian New Testament and Books of Old Testament", - Redistributable: true, - Copyright: - "Copyright \u00a9 2016 John the Forerunner Church of Christians of Evangelical Faith of Minsk City", - UpdateDate: "2021-05-20", - publicationURL: "http://ebible.org/beln/", - OTbooks: 4, - OTchapters: 243, - OTverses: 5197, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BELNJO", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "beln2021eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Belarusian New Testament and Books of Old Testament", - PODISBN: null, - script: "Cyrillic", - sourceDate: "2021-05-21", - }, - { - languageCode: "ben", - translationId: "ben2006", - languageName: "\u09ac\u09be\u0982\u09b2\u09be", - languageNameInEnglish: "Bengali", - dialect: null, - homeDomain: "ebible.org", - title: "\u09aa\u09ac\u09bf\u09a4\u09cd\u09b0 \u09ac\u09be\u0987\u09ac\u09c7\u09b2", - description: "Bengali Holy Bible: Easy-to-Read Version\u2122", - Redistributable: false, - Copyright: "Copyright \u00a9 2001-2006 World Bible Translation Center", - UpdateDate: "2013-10-15", - publicationURL: "http://ebible.org/ben2006/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22776, - NTbooks: 27, - NTchapters: 260, - NTverses: 7908, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BNGWTC", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ben2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Mukti", - shortTitle: "Bengali Bible (ERV)", - PODISBN: null, - script: "Bengali", - sourceDate: "2020-10-09", - }, - { - languageCode: "ben", - translationId: "ben2017", - languageName: "\u09ac\u09be\u0982\u09b2\u09be", - languageNameInEnglish: "Bengali", - dialect: null, - homeDomain: "ebible.org", - title: "\u0987\u09a8\u09cd\u09a1\u09bf\u09df\u09be\u09a8 \u09b0\u09bf\u09ad\u09be\u0987\u099c\u09a1 \u09ad\u09be\u09b0\u09cd\u09b8\u09a8 (IRV) - \u09ac\u09c7\u0999\u09cd\u0997\u09b2\u09c0", - description: - "The Indian Revised Version Holy Bible in the Bengali language of India and Bangaladesh, 2017 translation", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Bridge Connectivity Solutions", - UpdateDate: "2020-02-11", - publicationURL: "http://ebible.org/ben2017/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7951, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BENIRV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ben2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Mukti", - shortTitle: "Bengali Indian Revised Version Bible", - PODISBN: null, - script: "Bengali", - sourceDate: "2020-01-25", - }, - { - languageCode: "beo", - translationId: "beo", - languageName: "Bedamuni", - languageNameInEnglish: "Beami", - dialect: null, - homeDomain: "png.bible", - title: "GODE EA SIA: IDA:IWANE GALA", - description: "The Holy Bible in the Bedamuni language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2000 Tom Hoey", - UpdateDate: "2019-12-12", - publicationURL: "http://png.bible/beo/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22134, - NTbooks: 27, - NTchapters: 260, - NTverses: 7925, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BEOPIO", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "beo2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Bedamuni Bible", - PODISBN: "978-1-5313-0079-1", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "beu", - translationId: "beu", - languageName: "Pura", - languageNameInEnglish: "Blagar", - dialect: "Pura", - homeDomain: "alkitab.pw", - title: "Pura Alkitab", - description: - "Genesis, Mark, and Acts in the Pura dialect of the Blagar language of Indonesia", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Unit Bahasa dan Budaya", - UpdateDate: "2016-06-28", - publicationURL: "http://alkitab.pw/beu/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1422, - NTbooks: 2, - NTchapters: 44, - NTverses: 1584, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BEUUBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "beu2016eb", - rodCode: 8197.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Pura Bible", - PODISBN: "978-1-5313-0776-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bex", - translationId: "bex", - languageName: null, - languageNameInEnglish: "Jur Modo", - dialect: null, - homeDomain: "ebible.org", - title: "Ndose K\u0254d\u0254 Laka, Buku \ua78cba Tisaki ni T\u0254d\u0254 to L\u00f6mu La\ua78cja \ua78cBa Y\u00ebsu Kur\u00efs\u00eft\u00f6 \u014aere Ze", - description: - "Jur Modo: Ndose K\u0254d\u0254 Laka, Buku \ua78cba Tisaki ni T\u0254d\u0254 to L\u00f6mu La\ua78cja \ua78cBa Y\u00ebsu Kur\u00efs\u00eft\u00f6 \u014aere Ze New Testament+", - Redistributable: false, - Copyright: "Copyright \u00a9 1998 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/bex/", - OTbooks: 2, - OTchapters: 90, - OTverses: 2720, - NTbooks: 27, - NTchapters: 260, - NTverses: 7884, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BEXWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bex1998eb", - rodCode: 929.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Jur M\u00f6d\u00f6 NT, Genesis, and Exodus", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "bfd", - translationId: "bfd", - languageName: "Bafut", - languageNameInEnglish: "Bafut", - dialect: null, - homeDomain: "ebible.org", - title: "Bafut", - description: - "Bafut: \u01f8to\u00f2 Kristo y\u00ee \u01f8s\u0268g\u0268\u0300n\u01dd\u0300: m\u0268\u0300k\u00e0\u00e0 y\u00ee mfi\u00ec New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1999 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-10-27", - publicationURL: "http://ebible.org/bfd/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BFDWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bfd1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Bafut: \u01f8to\u00f2 Kristo y\u00ee \u01f8s\u0268g\u0268\u0300n\u01dd\u0300: m\u0268\u0300k\u00e0\u00e0 y\u00ee mfi\u00ec New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2022-10-27", - }, - { - languageCode: "bgs", - translationId: "bgs", - languageName: "Tagabawa", - languageNameInEnglish: "Tagabawa", - dialect: null, - homeDomain: "ebible.org", - title: "Kagi Ka Manama", - description: "New Testament and Shorter Old Testament in Tagabawa", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/bgs/", - OTbooks: 3, - OTchapters: 74, - OTverses: 2102, - NTbooks: 27, - NTchapters: 260, - NTverses: 7920, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BGSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bgs2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tagabawa Bible", - PODISBN: "978-1-5313-0080-7", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "bgt", - translationId: "bgt", - languageName: "Bughotu", - languageNameInEnglish: "Bughotu", - dialect: null, - homeDomain: "ebible.org", - title: "Na Rorongo Ke Toke Eigna a Jisas Krais", - description: "The New Testament in the Bughotu language of the Solomon Islands", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-11-13", - publicationURL: "http://ebible.org/bgt/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7863, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BGTWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bgt2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Bughotu New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "bhg", - translationId: "bhg", - languageName: "Binandere", - languageNameInEnglish: "Binandere", - dialect: null, - homeDomain: "png.bible", - title: "God da Ge Wasiride", - description: "Part of the New Testament in the Binandere language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2014-2021 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-05-31", - publicationURL: "http://png.bible/bhg/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 14, - NTchapters: 153, - NTverses: 5480, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BHGWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bhg2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Binandere NT", - PODISBN: "978-1-5313-0081-4", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "bhl", - translationId: "bhl", - languageName: "Bimin", - languageNameInEnglish: "Bimin", - dialect: null, - homeDomain: "png.bible", - title: "Sunbin-Got em Kitakamin Weng", - description: - "The New Testament and part of the Old Testament in the Bimin Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Bible Society of Papua New Guinea", - UpdateDate: "2016-10-03", - publicationURL: "http://png.bible/bhl/", - OTbooks: 4, - OTchapters: 64, - OTverses: 1788, - NTbooks: 27, - NTchapters: 260, - NTverses: 7778, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BHLPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bhl2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "FreeSerif", - shortTitle: "Bimin NT", - PODISBN: "978-1-5313-0082-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bib", - translationId: "bib", - languageName: "Bissa", - languageNameInEnglish: "Bissa", - dialect: null, - homeDomain: "ebible.org", - title: "Wosoci G\u028aaas\u0269babaa Daa", - description: "Bisa: Wosoci G\u028aaas\u0269babaa Daa New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/bib/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7947, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BIBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bib2001eb", - rodCode: 1746.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Bisa: Wosoci G\u028aaas\u0269babaa Daa New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "big", - translationId: "big", - languageName: "Biangai", - languageNameInEnglish: "Biangai", - dialect: null, - homeDomain: "png.bible", - title: "Anotogi Ngago Wik Yisu Kilisiyegi Langaira", - description: "The New Testament in the Biangai language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1985 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-22", - publicationURL: "http://png.bible/big/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7862, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BIGTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "big1985eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Biangai NT", - PODISBN: "978-1-5313-0083-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "big", - translationId: "big2013", - languageName: "Biangai", - languageNameInEnglish: "Biangai", - dialect: null, - homeDomain: "png.bible", - title: "Anotogi Ngago Wikta", - description: "New Testament in Biangai", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-11", - publicationURL: "http://png.bible/big2013/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7863, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BIGWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "big2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "New Testament in Biangai", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "bim", - translationId: "bim", - languageName: "Bimoba", - languageNameInEnglish: "Bimoba", - dialect: null, - homeDomain: "ebible.org", - title: "Yennu Gbou\u014b M\u0254\u0254r", - description: "Bimoba: Yennu Gbou\u014b M\u0254\u0254r Bible", - Redistributable: false, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/bim/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22423, - NTbooks: 27, - NTchapters: 260, - NTverses: 7907, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BIMWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bim2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Bimoba: Yennu Gbou\u014b M\u0254\u0254r Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "biv", - translationId: "biv", - languageName: "Birifor, Southern", - languageNameInEnglish: "Birifor, Southern", - dialect: null, - homeDomain: "ebible.org", - title: "A N\u00e3a\u014bm\u0269n N\u025bt\u0269r Oaalaa G\u00e3n, B\u0269rf\u028a\u0254r", - description: - "Birifor, Southern: A N\u00e3a\u014bm\u0269n N\u025bt\u0269r Oaalaa G\u00e3n, B\u0269rf\u028a\u0254r New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2006 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/biv/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7942, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BIVWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "biv2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Southern Birifor NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "bjk", - translationId: "bjk", - languageName: "Barok", - languageNameInEnglish: "Barok", - dialect: "Usen", - homeDomain: "png.bible", - title: "A Xuxubus Maxat", - description: - "The New Testament in the Usen dialect of the Barok language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-02-11", - publicationURL: "http://png.bible/bjk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7906, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BJKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bjk2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Barok NT", - PODISBN: null, - script: "Latin", - sourceDate: "2022-02-20", - }, - { - languageCode: "bjn", - translationId: "bjn", - languageName: "Banjar", - languageNameInEnglish: "Banjar", - dialect: null, - homeDomain: "ebible.org", - title: "Bahasa Banjar", - description: "Jon, Rut in the Banjar language of Malaysia", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-13", - publicationURL: "http://ebible.org/bjn/", - OTbooks: 4, - OTchapters: 26, - OTverses: 543, - NTbooks: 1, - NTchapters: 23, - NTverses: 223, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BJNWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bjn2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Jon, Rut", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "bjp", - translationId: "bjp", - languageName: "Fanamaket", - languageNameInEnglish: "Fanamaket", - dialect: null, - homeDomain: "png.bible", - title: "Fanamaket Baibel", - description: "The New Testament in the Fanamaket Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2011-2021 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-01-28", - publicationURL: "http://png.bible/bjp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7933, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TGGWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bjp2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Fanamaket NT", - PODISBN: "978-1-5313-0085-2", - script: "Latin", - sourceDate: "2021-12-07", - }, - { - languageCode: "bjr", - translationId: "bjr", - languageName: "Binumarien", - languageNameInEnglish: "Binumarien", - dialect: null, - homeDomain: "png.bible", - title: "F\u00faka Moodaanaki Kira Ufa Afaq\u00ednaasa Ufa", - description: "Portions of the Holy Bible in the Binumarien language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1983, 2001, 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-08-10", - publicationURL: "http://png.bible/bjr/", - OTbooks: 5, - OTchapters: 281, - OTverses: 6198, - NTbooks: 27, - NTchapters: 260, - NTverses: 7180, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BJRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bjr2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Binumarien Bible", - PODISBN: "978-1-5313-0086-9", - script: "Latin", - sourceDate: "2021-05-04", - }, - { - languageCode: "bjv", - translationId: "bjvNT", - languageName: "Bedjond", - languageNameInEnglish: "Bedjond", - dialect: null, - homeDomain: "ebible.org", - title: "K\u0197L\u04d8-M\u0197ND\u0197 K\u0197 S\u0197G\u0197", - description: "New Testament in Bedjond (CD:bjv:Bedjond)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-11-01", - publicationURL: "http://ebible.org/bjvNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BJVWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bjv2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Bedjond NT", - PODISBN: "978-1-5313-0087-6", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "bjz", - translationId: "bjz", - languageName: "Baruga", - languageNameInEnglish: "Baruga", - dialect: "Tafota", - homeDomain: "png.bible", - title: "God Da Gaga Reka Re", - description: - "The New Testament in the Baruga language, Tafota dialect, of Oro Province, Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-02-10", - publicationURL: "http://png.bible/bjz/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7586, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BJZWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bjz2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Baruga NT", - PODISBN: null, - script: "Latin", - sourceDate: "2017-04-30", - }, - { - languageCode: "bkd", - translationId: "bkd", - languageName: "Binukid", - languageNameInEnglish: "Binukid", - dialect: null, - homeDomain: "ebible.org", - title: "Lalang hu Dios", - description: "New Testament in Binukid", - Redistributable: true, - Copyright: "Copyright \u00a9 1986 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/bkd/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7871, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BKDWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bkd1986eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Binukid NT", - PODISBN: "978-1-5313-0088-3", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "bki", - translationId: "bki", - languageName: "Baki", - languageNameInEnglish: "Baki", - dialect: null, - homeDomain: "ebible.org", - title: "Verikariano Vou Na Baki", - description: "The New Testament in the Baki language of Epi, Vanuatu", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/bki/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7834, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BKIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bki2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Baki NT", - PODISBN: null, - script: "Latin", - sourceDate: "2018-12-18", - }, - { - languageCode: "bkq", - translationId: "bkqNT", - languageName: "Bakair\u00ed", - languageNameInEnglish: "Bakair\u00ed", - dialect: null, - homeDomain: "ebible.org", - title: "Deus Itaumbyry", - description: "New Testament in Bakair\u00ed", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/bkqNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7821, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BKQWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bkq2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Bakair\u00ed NT", - PODISBN: "978-1-5313-0089-0", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "bkx", - translationId: "bkx", - languageName: "Baikeno", - languageNameInEnglish: "Baikeno", - dialect: null, - homeDomain: "ebible.org", - title: "Na\ua78c Markus", - description: "The Good News According to Mark in the Baikeno language of East Timor", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Unit Bahasa dan Budaya", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/bkx/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 16, - NTverses: 634, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BKXUBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bkx2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Baikeno Mark", - PODISBN: "978-1-5313-0777-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bla", - translationId: "bla", - languageName: "Siksik\u00e1", - languageNameInEnglish: "Blackfoot", - dialect: null, - homeDomain: "ebible.org", - title: "\u014eKHS' I TS\u012cN IK S\u012cN NI ST. MATTHEW OT S\u012cN AI PI.", - description: "The Gospel According to St. Matthew in the Blackfoot language of Canada", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2017-10-09", - publicationURL: "http://ebible.org/bla/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 28, - NTverses: 1071, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BLACMS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bla1890eb", - rodCode: 200.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Blackfoot Matthew", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "blr", - translationId: "blr", - languageName: "Plang", - languageNameInEnglish: "Blang", - dialect: null, - homeDomain: "ebible.org", - title: "Plang", - description: "The New Testament in the Blang language of Myanmar", - Redistributable: false, - Copyright: "Copyright \u00a9 2021 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-04-06", - publicationURL: "http://ebible.org/blr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7950, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BLRWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "blr2021eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Blang NT", - PODISBN: null, - script: "Latin", - sourceDate: "2021-04-07", - }, - { - languageCode: "blt", - translationId: "blt", - languageName: "Thai Den", - languageNameInEnglish: "Thai Den", - dialect: null, - homeDomain: "ebible.org", - title: "Tai Dam", - description: "Tai Dam: Tai Dam (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/blt/", - OTbooks: 2, - OTchapters: 24, - OTverses: 627, - NTbooks: 27, - NTchapters: 260, - NTverses: 7864, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BLTWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "blt2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tai Dam NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "blw", - translationId: "blw", - languageName: "Balangao", - languageNameInEnglish: "Balangao", - dialect: null, - homeDomain: "ebible.org", - title: "Hen alen Apudyus", - description: "New Testament in Balangao", - Redistributable: true, - Copyright: "Copyright \u00a9 1982 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/blw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7901, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BLWWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "blw1982eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Balangao NT", - PODISBN: "978-1-5313-0091-3", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "blx", - translationId: "blx", - languageName: "Mag-Indi Ayata", - languageNameInEnglish: "Ayta, Mag-Indi", - dialect: null, - homeDomain: "ebible.org", - title: "Aytan Mag-Indi", - description: - "Portions of the Holy Bible in the Ayta Mag-Indi language of the Republic of the Philippines", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-03-04", - publicationURL: "http://ebible.org/blx/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7876, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BLXWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "blx2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ayta Mag-Indi Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-03-05", - }, - { - languageCode: "blz", - translationId: "blzNT", - languageName: "Balantak", - languageNameInEnglish: "Balantak", - dialect: null, - homeDomain: "ebible.org", - title: "Kitap molinas men ringkat na alaata'ala: perjanjian baru", - description: "New Testament in Balantak (ID:blz:Balantak)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/blzNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BLZLAI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "blz2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Balantak NT", - PODISBN: "978-1-5313-0092-0", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "bmh", - translationId: "bmh", - languageName: "Kein", - languageNameInEnglish: "Kein", - dialect: null, - homeDomain: "png.bible", - title: "Uwait nugau Ze Naliu", - description: "The New Testament in the Kein Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-13", - publicationURL: "http://png.bible/bmh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7694, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BMHWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bmh2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kein NT", - PODISBN: "978-1-5313-0093-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bmk", - translationId: "bmk", - languageName: "Ghayavi", - languageNameInEnglish: "Ghayavi", - dialect: null, - homeDomain: "png.bible", - title: "Ghayavi Mak", - description: "The Gospel of Mark in the Ghayavi Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-06-02", - publicationURL: "http://png.bible/bmk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 16, - NTverses: 650, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BMKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bmk2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ghayavi Mark", - PODISBN: "978-1-5313-0094-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bmo", - translationId: "bmo", - languageName: "Bambalang", - languageNameInEnglish: "Bambalang", - dialect: null, - homeDomain: "ebible.org", - title: "\u014awa\u02bca\u014bl\u0268 K\u0268n\u0300 a Fhi", - description: - "Bambalang: \u014awa\u02bca\u014bl\u0268 K\u0268n\u0300 a Fhi (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/bmo/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BMOWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bmo2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Bambalang: \u014awa\u02bca\u014bl\u0268 K\u0268n\u0300 a Fhi (New Testament+)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "bmr", - translationId: "bmrNT", - languageName: "Muinane", - languageNameInEnglish: "Muinane", - dialect: null, - homeDomain: "ebible.org", - title: "Moocaani iij\u0268", - description: "New Testament in Muinane (CO:bmr:Muinane)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/bmrNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7931, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BMRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bmr2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Muinane NT", - PODISBN: "978-1-5313-0095-1", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "bmu", - translationId: "bmu", - languageName: "Burum-Mindik or Somba-Siawari", - languageNameInEnglish: "Somba-Siawari or Burum-Mindik", - dialect: null, - homeDomain: "png.bible", - title: "Burum-Mindik Bible", - description: - "The New Testament and portions of the Old Testament in the Somba-Siawari language of Papua New Guinea, also called the Burum Mindik language.", - Redistributable: true, - Copyright: "Copyright \u00a9 1992, 2002 The Bible Society of Papua New Guinea", - UpdateDate: "2012-11-22", - publicationURL: "http://png.bible/bmu/", - OTbooks: 3, - OTchapters: 58, - OTverses: 1661, - NTbooks: 27, - NTchapters: 260, - NTverses: 7937, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BMUPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bmu2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Somba-Siawari Bible", - PODISBN: "978-1-5313-0096-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bno", - translationId: "bno", - languageName: "Bantoanon", - languageNameInEnglish: "Bantoanon", - dialect: null, - homeDomain: "ebible.org", - title: "Bag-ong Kasuyatan ag Henesis \u2014 Exodo", - description: "Bantoanon: Bag-ong Kasuyatan ag Henesis \u2014 Exodo New Testament+", - Redistributable: false, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/bno/", - OTbooks: 2, - OTchapters: 90, - OTverses: 2704, - NTbooks: 27, - NTchapters: 260, - NTverses: 7913, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BNOWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bno2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Bantoanon: Bag-ong Kasuyatan ag Henesis \u2014 Exodo New Testament+", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "bnp", - translationId: "bnp", - languageName: "Bola", - languageNameInEnglish: "Bola", - dialect: null, - homeDomain: "png.bible", - title: "A Nitana Vure", - description: - "Genesis, Exodus, Leviticus, Numbers, Deuteronomy, Joshua, Ruth, Jonah, and the New Testament in the Bola language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-12-03", - publicationURL: "http://png.bible/bnp/", - OTbooks: 8, - OTchapters: 219, - OTverses: 6558, - NTbooks: 27, - NTchapters: 260, - NTverses: 7884, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BNPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bnp2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Bola Bible", - PODISBN: "978-1-5313-0097-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "boa", - translationId: "boaNT", - languageName: "Bora", - languageNameInEnglish: "Bora", - dialect: null, - homeDomain: "ebible.org", - title: "P\u00ed\u00edvy\u00e9\u00e9b\u00e9 ihjyu: jetsocr\u00edjyod\u00edty\u00fa c\u00e1\u00e1t\u00fanuh\u00e1\u00e1m\u0268", - description: "New Testament in Bora (PE:boa:Bora)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/boaNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7650, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BOATBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "boa2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Bora NT", - PODISBN: "978-1-5313-0098-2", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "bod", - translationId: "bod", - languageName: "\u0f56\u0f7c\u0f51\u0f0b\u0f61\u0f72\u0f42", - languageNameInEnglish: "\u0f56\u0f7c\u0f51\u0f0b\u0f61\u0f72\u0f42", - dialect: null, - homeDomain: "ebible.org", - title: "Radiant Light to the Ends of the Earth", - description: "Tibetan, Central: Radiant Light to the Ends of the Earth (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/bod/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7873, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BODWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bod2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Central Tibetan Bible", - PODISBN: null, - script: "Tibetan", - sourceDate: "2020-12-02", - }, - { - languageCode: "bod", - translationId: "bodn", - languageName: "\u0f56\u0f7c\u0f51\u0f0b\u0f61\u0f72\u0f42", - languageNameInEnglish: "\u0f56\u0f7c\u0f51\u0f0b\u0f61\u0f72\u0f42", - dialect: null, - homeDomain: "ebible.org", - title: "\u0f51\u0f58\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f42\u0f66\u0f74\u0f44\u0f0b\u0f62\u0f56\u0f0b\u0f56\u0f7c\u0f51\u0f0b\u0f60\u0f42\u0fb1\u0f74\u0f62\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f58\u0f0d", - description: - "Tibetan, Central: \u0f51\u0f58\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f42\u0f66\u0f74\u0f44\u0f0b\u0f62\u0f56\u0f0b\u0f56\u0f7c\u0f51\u0f0b\u0f60\u0f42\u0fb1\u0f74\u0f62\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f58\u0f0d (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/bodn/", - OTbooks: 3, - OTchapters: 18, - OTverses: 299, - NTbooks: 27, - NTchapters: 260, - NTverses: 7933, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BODNWB", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bodn2020eb", - rodCode: 21178.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "New Tibetan Bible", - PODISBN: null, - script: "Tibetan", - sourceDate: "2020-12-02", - }, - { - languageCode: "boj", - translationId: "boj", - languageName: "Anjam", - languageNameInEnglish: "Anjam", - dialect: null, - homeDomain: "png.bible", - title: "Yesus Aqa Anjam Bole 2000", - description: "The New Testament in the Anjam language of Papua New Guinea, 2000 edition", - Redistributable: true, - Copyright: "Copyright \u00a9 2000 The Bible Society of Papua New Guinea", - UpdateDate: "2001-01-01", - publicationURL: "http://png.bible/boj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7726, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BOJPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "boj2000eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Anjam NT 2000", - PODISBN: "978-1-5313-0099-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "boj", - translationId: "boj2014", - languageName: "Anjam", - languageNameInEnglish: "Anjam", - dialect: null, - homeDomain: "png.bible", - title: "Yesus Aqa Anjam Bole 2014", - description: "The New Testament in the Anjam language of Papua New Guinea, 2014 revision", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-04-28", - publicationURL: "http://png.bible/boj2014/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7726, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BOJWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "boj2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Anjam NT 2014", - PODISBN: "978-1-5313-0100-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bon", - translationId: "bon", - languageName: "Bine", - languageNameInEnglish: "Bine", - dialect: null, - homeDomain: "png.bible", - title: "Ireclota Mene", - description: "The New Testament in the Bine Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1993 Bible Society of Papua New Guinea", - UpdateDate: "2012-01-13", - publicationURL: "http://png.bible/bon/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7914, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BONPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bon1993eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Bine NT", - PODISBN: "978-1-5313-0101-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bor", - translationId: "bor", - languageName: "Bor\u00f4ro", - languageNameInEnglish: "Bor\u00f4ro", - dialect: null, - homeDomain: "ebible.org", - title: "Pao Kurireu Bataru Kurireu; O Novo Testamento", - description: "Bor\u00f4ro: Pao Kurireu Bataru Kurireu; O Novo Testamento (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/bor/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7469, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BORWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bor2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Bor\u00f4ro: Pao Kurireu Bataru Kurireu; O Novo Testamento (New Testament)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "bov", - translationId: "bov", - languageName: null, - languageNameInEnglish: "Tuwuli", - dialect: null, - homeDomain: "ebible.org", - title: "Baguma Apam V\u0254\u1e1b a Tuwuli", - description: "Tuwuli: Baguma Apam V\u0254\u1e1b a Tuwuli New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/bov/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7914, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BOVWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bov2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tuwuli NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-02", - }, - { - languageCode: "box", - translationId: "boxNT", - languageName: "Buamu", - languageNameInEnglish: "Buamu", - dialect: null, - homeDomain: "ebible.org", - title: "D\u00f3nbeen\u00ec p\u00e1an\u00edi f\u0129nle v\u0169ah\u0169\u0301", - description: "New Testament in Buamu (UV:box:Buamu)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/boxNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7912, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BOXWYI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "box2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Buamu NT", - PODISBN: "978-1-5313-0102-6", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "bpr", - translationId: "bpr", - languageName: "Koronadal Blaan", - languageNameInEnglish: "Blaan, Koronadal", - dialect: null, - homeDomain: "ebible.org", - title: "I Falami Kasafn\u00e8 (New Testament)", - description: "New Testament in Blaan, Koronadal", - Redistributable: true, - Copyright: "Copyright \u00a9 1995 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/bpr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7944, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BPRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bpr1995eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Koronadal Blaan NT", - PODISBN: "978-1-5313-0103-3", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "bps", - translationId: "bps", - languageName: "Sarangani Blaan", - languageNameInEnglish: "Blaan, Sarangani", - dialect: null, - homeDomain: "ebible.org", - title: "I tnal\u00f9 dwata", - description: "New Testament in Blaan, Sarangani", - Redistributable: true, - Copyright: "Copyright \u00a9 1998 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/bps/", - OTbooks: 6, - OTchapters: 166, - OTverses: 3607, - NTbooks: 27, - NTchapters: 260, - NTverses: 7927, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BPSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bps1998eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sarangani Blaan NT", - PODISBN: "978-1-5313-0104-0", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "bqc", - translationId: "bqcsim", - languageName: "Boko", - languageNameInEnglish: "Boko", - dialect: null, - homeDomain: "ebible.org", - title: "Bibeli Luaya\u0303taala\u0301", - description: "The Holy Bible in the Boko language spoken in Benin and Nigeria", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 SIM International", - UpdateDate: "2014-09-25", - publicationURL: "http://ebible.org/bqcsim/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23054, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BQCSIM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bqcsim2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Boko (Benin) Bible", - PODISBN: "978-1-5313-0105-7", - script: "Latin", - sourceDate: "2016-09-15", - }, - { - languageCode: "bqj", - translationId: "bqj", - languageName: "Bandial", - languageNameInEnglish: "Bandial", - dialect: null, - homeDomain: "ebible.org", - title: "Firim fafu fal Al\u00e1emit", - description: "Bandial: Firim fafu fal Al\u00e1emit Bible", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/bqj/", - OTbooks: 3, - OTchapters: 58, - OTverses: 1645, - NTbooks: 27, - NTchapters: 260, - NTverses: 7939, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BQJWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bqj2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Bandial: Firim fafu fal Al\u00e1emit Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "bqp", - translationId: "bqp", - languageName: "Bisa\u0303", - languageNameInEnglish: "Busa", - dialect: null, - homeDomain: "ebible.org", - title: "Luda ya\u0303 takada ku\u0303 Bisa\u0303 ya\u0303o", - description: "Portions of the Holy Bible in the Busa language of Nigeria", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 SIM International", - UpdateDate: "2014-10-10", - publicationURL: "http://ebible.org/bqp/", - OTbooks: 38, - OTchapters: 737, - OTverses: 17695, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BQPSIM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bqp2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Bisa Bible", - PODISBN: "978-1-5313-0106-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "brb", - translationId: "brb", - languageName: "Brao", - languageNameInEnglish: "Brao", - dialect: null, - homeDomain: "ebible.org", - title: "\u1796\u17d2\u179a\u17c7\u1782\u1798\u17d2\u1796\u17b8\u179a \u1796\u17d2\u179a\u17c5", - description: "Brao Cambodia NT", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/brb/", - OTbooks: 3, - OTchapters: 58, - OTverses: 1664, - NTbooks: 10, - NTchapters: 94, - NTverses: 3341, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BRBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "brb2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Hanuman", - shortTitle: "Brao Cambodia NT", - PODISBN: null, - script: "Khmer", - sourceDate: "2020-11-19", - }, - { - languageCode: "bre", - translationId: "breBRG", - languageName: "Brezhoneg", - languageNameInEnglish: "Breton", - dialect: null, - homeDomain: "ebible.org", - title: "an Bibl", - description: "The Gospels in the Breton language of France, 1827 edition", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2014-08-11", - publicationURL: "http://ebible.org/breBRG/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 4, - NTchapters: 89, - NTverses: 3779, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BREBRG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "breBRG1827eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Breton Gospels", - PODISBN: "978-1-5313-0107-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bru", - translationId: "bru", - languageName: "Eastern Bru", - languageNameInEnglish: "Eastern Bru", - dialect: null, - homeDomain: "ebible.org", - title: "Parnai Yiang Surs\u0129 - Kinh Th\u00e1nh ti\u1ebfng Bru", - description: "Bru, Eastern: Parnai Yiang Surs\u0129 - Kinh Th\u00e1nh ti\u1ebfng Bru Bible", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/bru/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22874, - NTbooks: 27, - NTchapters: 260, - NTverses: 7921, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BRUWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bru2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Bru, Eastern: Parnai Yiang Surs\u0129 - Kinh Th\u00e1nh ti\u1ebfng Bru Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "bsc", - translationId: "bsc", - languageName: null, - languageNameInEnglish: "Oniyan", - dialect: null, - homeDomain: "ebible.org", - title: "Oniyan", - description: "Oniyan: Oniyan (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/bsc/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1533, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BSCWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bsc2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Oniyan Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "bsj", - translationId: "bsj", - languageName: "Bangunji", - languageNameInEnglish: "Bangwinji", - dialect: null, - homeDomain: "ebible.org", - title: "Bangwinji", - description: "The New Testament in the Bangwinji language of Nigeria", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door43 Worldwide Mission Community", - UpdateDate: "2020-11-21", - publicationURL: "http://ebible.org/bsj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 26, - NTchapters: 255, - NTverses: 7825, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BSJDOO", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bsj2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Bangwinji NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-21", - }, - { - languageCode: "bsn", - translationId: "bsnNT", - languageName: "Barasana-Eduria", - languageNameInEnglish: "Barasana-Eduria", - dialect: null, - homeDomain: "ebible.org", - title: "Dios oca gotirituti", - description: "New Testament in Barasana-Eduria (CO:bsn:Barasana-Eduria)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/bsnNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7548, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BSNTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bsn2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Barasana-Eduria NT", - PODISBN: "978-1-5313-0108-8", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "bsp", - translationId: "bsp", - languageName: "Baga Sitemu", - languageNameInEnglish: "Baga Sitemu", - dialect: null, - homeDomain: "ebible.org", - title: "Kitabu ka Kanu", - description: "Portions of the Holy Bible in the Baga Sitemu language of Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2015 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://ebible.org/bsp/", - OTbooks: 3, - OTchapters: 78, - OTverses: 2276, - NTbooks: 3, - NTchapters: 57, - NTverses: 2258, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BSPPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bsp2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Baga Sitemu Bible Portions", - PODISBN: "978-1-5313-0831-5", - script: "Latin", - sourceDate: "2019-03-13", - }, - { - languageCode: "bss", - translationId: "bssNT", - languageName: "Akoose", - languageNameInEnglish: "Akoose", - dialect: null, - homeDomain: "ebible.org", - title: "Mel\u025b\u030c M\u00e9k\u0254\u0304\u0254\u0304l\u0113", - description: "New Testament in Akoose (CM:bss:Akoose)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/bssNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7931, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BSSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bss2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Akoose NT", - PODISBN: "978-1-5313-0109-5", - script: "Latin", - sourceDate: "2014-05-15", - }, - { - languageCode: "buk", - translationId: "buk", - languageName: "Bukawa", - languageNameInEnglish: "Bukawa", - dialect: null, - homeDomain: "png.bible", - title: "An\u00f6t\u00f6 nd\u00ea Yom L\u00ea\u014bs\u00eam Wakuc", - description: "The New Testament in the Bukawa language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2000 Lutheran Bible Translators Australia", - UpdateDate: "2012-01-13", - publicationURL: "http://png.bible/buk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7795, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BUKLBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "buk2000eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Bukawa NT", - PODISBN: "978-1-5313-0110-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "buk", - translationId: "buk2013", - languageName: "Bugawac", - languageNameInEnglish: "Bugawac", - dialect: null, - homeDomain: "png.bible", - title: "An\u00f6t\u00f6 nd\u00ea Yom L\u00ea\u014bs\u00eam Wakuc", - description: - "Bugawac: An\u00f6t\u00f6 nd\u00ea Yom L\u00ea\u014bs\u00eam Wakuc New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2013 Lutheran Bible Translators Australia", - UpdateDate: "2020-11-11", - publicationURL: "http://png.bible/buk2013/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7795, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BUKWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "buk2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Bugawac: An\u00f6t\u00f6 nd\u00ea Yom L\u00ea\u014bs\u00eam Wakuc New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "bus", - translationId: "bus", - languageName: "Bokobaru", - languageNameInEnglish: "Bokobaru", - dialect: null, - homeDomain: "ebible.org", - title: "Luda ya\u0303 takada k\u2184\u0303n Bokobaru ya\u0303o", - description: - "The New Testament and portions of the Old Testament in the Bokobaru language of Nigeria", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 SIM International", - UpdateDate: "2014-09-22", - publicationURL: "http://ebible.org/bus/", - OTbooks: 22, - OTchapters: 479, - OTverses: 11459, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BUSSIM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bus2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Bokobaru Bible", - PODISBN: "978-1-5313-0111-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bvd", - translationId: "bvd", - languageName: "Baegu", - languageNameInEnglish: "Baeggu", - dialect: null, - homeDomain: "ebible.org", - title: "Na Alangaia Falu 'ana Baea 'i Baegu", - description: "The New Testament in the Baeggu language of the Solomon Islands", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-11-09", - publicationURL: "http://ebible.org/bvd/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7891, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BVDWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bvd2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Baegu New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "bvr", - translationId: "bvr", - languageName: "Burarra", - languageNameInEnglish: "Burarra", - dialect: null, - homeDomain: "ebible.org", - title: "Nyanyapa Arrku Gun-nika Gun-molamola Janguny: Minypa Jesus Christ Guna-ganyja Arrburrwa Gun-geka Rum", - description: - "The New Testament in the Burarra language of coastal Arnhem Land in Northern Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators", - UpdateDate: "2021-11-12", - publicationURL: "http://ebible.org/bvr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7914, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BVRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bvr2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Burarra NT", - PODISBN: null, - script: "Latin", - sourceDate: "2019-05-14", - }, - { - languageCode: "bwu", - translationId: "bwu", - languageName: "Buli (Ghana)", - languageNameInEnglish: "Buli (Ghana)", - dialect: null, - homeDomain: "ebible.org", - title: "The New Testament in the Buli language (Ghana)", - description: "Buli: The New Testament in the Buli language (Ghana) (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/bwu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7836, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BWUWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bwu2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Buli: The New Testament in the Buli language (Ghana) (New Testament)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "bxh", - translationId: "bxh", - languageName: "Buhutu", - languageNameInEnglish: "Buhutu", - dialect: null, - homeDomain: "png.bible", - title: "Buka Tabuna Tefadi", - description: - "Mark, Acts, and selected excerpts of the Old Testament in the Buhutu language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-10-06", - publicationURL: "http://png.bible/bxh/", - OTbooks: 29, - OTchapters: 221, - OTverses: 2537, - NTbooks: 2, - NTchapters: 44, - NTverses: 1662, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BXHWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bxhwbt2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Buhutu Bible", - PODISBN: "978-1-5313-0112-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "byr", - translationId: "byr", - languageName: "Yipma", - languageNameInEnglish: "Baruya", - dialect: null, - homeDomain: "png.bible", - title: "Yipma Genesis and New Testament", - description: "Genesis and The New Testament in the Yipma/Baruya language", - Redistributable: true, - Copyright: "Copyright \u00a9 1993, 1994 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-02-07", - publicationURL: "http://png.bible/byr/", - OTbooks: 1, - OTchapters: 50, - OTverses: 168, - NTbooks: 27, - NTchapters: 260, - NTverses: 7946, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BYRPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "byr1994eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Baruya NT+Genesis", - PODISBN: "978-1-5313-0113-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "byr", - translationId: "byr-w", - languageName: "Yipma/Wagamwa", - languageNameInEnglish: "Yipma", - dialect: "Wagamwa", - homeDomain: "png.bible", - title: "Selected Scriptures in Yipma/Wagamwa", - description: - "Selected Scriptures in the Wagamwa dialect of the Yipma language (parts of John, 1 John, Romans, and Hebrews).", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/byr-w/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 4, - NTchapters: 11, - NTverses: 136, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BYRWAG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "byrW2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yipma Wagamwa NT", - PODISBN: "978-1-5313-0114-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "byx", - translationId: "byx", - languageName: "Qaqet", - languageNameInEnglish: "Qaqet", - dialect: null, - homeDomain: "png.bible", - title: "A SLURLKA AA LANGINKA AMA IAMESKA", - description: "The New Testament and Ruth in the Qaqet Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1996 Papua New Guinea Bible Translation Association", - UpdateDate: "2022-10-31", - publicationURL: "http://png.bible/byx/", - OTbooks: 1, - OTchapters: 4, - OTverses: 80, - NTbooks: 27, - NTchapters: 260, - NTverses: 7792, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BYXPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "byx1996eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Qaqet Bible", - PODISBN: "978-1-5313-0115-6", - script: "Latin", - sourceDate: "2022-12-13", - }, - { - languageCode: "bzd", - translationId: "bzdNTpo", - languageName: "Bribri", - languageNameInEnglish: "Bribri", - dialect: null, - homeDomain: "ebible.org", - title: "Tte Pa\u0331'a\u0331li\u0331 Me' Sk\u00ebk\u00f6l t\u00f6 Se' a\u0331", - description: "New Testament and Shorter Old Testament in Bribri (CS:bzd:Bribri)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/bzdNTpo/", - OTbooks: 3, - OTchapters: 74, - OTverses: 2071, - NTbooks: 27, - NTchapters: 260, - NTverses: 7702, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BZDWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bzd2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Bribri Bible", - PODISBN: "978-1-5313-0116-3", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "bzh", - translationId: "bzh", - languageName: "Buang, Central/Mapos", - languageNameInEnglish: "Buang", - dialect: "Central/Mapos", - homeDomain: "png.bible", - title: "G\u0307ag\u0307ek Mewis", - description: - "The New Testament in the Central/Mapos dialect of the Buang language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2003 The Bible Society of Papua New Guinea", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/bzh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7946, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BZHPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bzh2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Buang NT", - PODISBN: "978-1-5313-0117-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "bzi", - translationId: "bzi", - languageName: "Bisu", - languageNameInEnglish: "Bisu", - dialect: null, - homeDomain: "ebible.org", - title: "\u0e08\u0e35\u0e48\u0e27\u0e35\u0e14\u0e21\u0e49\u0e32\u0e21\u0e49\u0e32 \u0e1e\u0e23\u0e30\u0e04\u0e31\u0e21\u0e20\u0e35\u0e23\u0e4c \u0e2d\u0e32\u0e07\u0e0b\u0e37\u0e48\u0e2d \u0e1a\u0e35\u0e48\u0e0b\u0e39\u0e48 \u0e15\u0e48\u0e32\u0e07", - description: - "Bisu: \u0e08\u0e35\u0e48\u0e27\u0e35\u0e14\u0e21\u0e49\u0e32\u0e21\u0e49\u0e32 \u0e1e\u0e23\u0e30\u0e04\u0e31\u0e21\u0e20\u0e35\u0e23\u0e4c \u0e2d\u0e32\u0e07\u0e0b\u0e37\u0e48\u0e2d \u0e1a\u0e35\u0e48\u0e0b\u0e39\u0e48 \u0e15\u0e48\u0e32\u0e07 New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/bzi/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7900, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BZIWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bzi2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Noto Serif Thai", - shortTitle: - "Bisu: \u0e08\u0e35\u0e48\u0e27\u0e35\u0e14\u0e21\u0e49\u0e32\u0e21\u0e49\u0e32 \u0e1e\u0e23\u0e30\u0e04\u0e31\u0e21\u0e20\u0e35\u0e23\u0e4c \u0e2d\u0e32\u0e07\u0e0b\u0e37\u0e48\u0e2d \u0e1a\u0e35\u0e48\u0e0b\u0e39\u0e48 \u0e15\u0e48\u0e32\u0e07 New Testament", - PODISBN: null, - script: "Thai", - sourceDate: "2020-11-14", - }, - { - languageCode: "bzj", - translationId: "bzj", - languageName: null, - languageNameInEnglish: "Belize Kriol English", - dialect: null, - homeDomain: null, - title: "Di Nyoo Testiment eena Bileez Kriol", - description: "New Testament in Belize Kriol English (BH:bzj:Belize Kriol English)", - Redistributable: false, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-12-21", - publicationURL: "http:///bzj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7849, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "BZJWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "bzj", - rodCode: null, - textDirection: "ltr", - downloadable: false, - font: "Gentium", - shortTitle: "New Testament in Belize Kriol English (BH:bzj:Belize Kriol English)", - PODISBN: null, - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "caa", - translationId: "caa", - languageName: "Chort\u00ed", - languageNameInEnglish: "Chorti", - dialect: null, - homeDomain: "ebible.org", - title: "Uyojroner e Dios xe\ua78c Tz\ua78cijb\ua78cab\ua78cir Tama e Onian Tiempo", - description: - "The New Testament and Genesis, Ruth, Esther, and Jonah in the Chorti language of Guatemala", - Redistributable: true, - Copyright: - "Copyright \u00a9 1996, 2012, 2013, 2023 Wycliffe Bible Translators, Inc. and Evangel Bible Translators, International", - UpdateDate: "2023-02-04", - publicationURL: "http://ebible.org/caa/", - OTbooks: 7, - OTchapters: 154, - OTverses: 4252, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CAAWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "caa2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Chorti Bible", - PODISBN: "978-1-5313-0119-4", - script: "Latin", - sourceDate: "2023-02-04", - }, - { - languageCode: "cab", - translationId: "cabNT", - languageName: "Garifuna", - languageNameInEnglish: "Garifuna", - dialect: null, - homeDomain: "png.bible", - title: "Ler\u00e9run B\u00fangiu To L\u00e1nina Is\u00e9ri Dar\u00e1du", - description: "New Testament in Garifuna (HO:cab:Garifuna)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://png.bible/cabNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7947, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SWPPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "swp1998eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Suau Bible", - PODISBN: "978-1-5313-0120-0", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "cac", - translationId: "cac", - languageName: "Chuj de San Mateo Ixtat\u00e1n", - languageNameInEnglish: "Chuj", - dialect: "Ixtat\u00e1n", - homeDomain: "ebible.org", - title: "A Ch'an Biblia D'a Chuj San Mateo", - description: "The Holy Bible in the Chuj San Mateo language of Guatemala", - Redistributable: true, - Copyright: "Copyright \u00a9 2007 Sociedad B\u00edblica de Guatemala", - UpdateDate: "2016-06-08", - publicationURL: "http://ebible.org/cac/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22081, - NTbooks: 27, - NTchapters: 260, - NTverses: 7909, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CACWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cac2007eb", - rodCode: 2095.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Chuj San Mateo Bible", - PODISBN: "978-1-5313-0768-4", - script: "Latin", - sourceDate: "2011-02-12", - }, - { - languageCode: "caf", - translationId: "cafNT", - languageName: "Carrier, Southern", - languageNameInEnglish: "Carrier, Southern", - dialect: null, - homeDomain: "ebible.org", - title: "Yak\u02bcusda bughunek: k\u2019andit khunek neba lhaidinla", - description: "New Testament in Carrier, Southern (CA:caf:Carrier, Southern)", - Redistributable: true, - Copyright: "Copyright \u00a9 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cafNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7948, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CAFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "caf2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Southern Carrier NT", - PODISBN: "978-1-5313-0121-7", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cak", - translationId: "cak", - languageName: "Kaqchikel", - languageNameInEnglish: "Kaqchikel", - dialect: "South Central", - homeDomain: "ebible.org", - title: "GT:cak:Kaqchikel", - description: "New Testament in Kaqchikel Chimaltenango; cak", - Redistributable: true, - Copyright: "Copyright \u00a9 2007 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-12-03", - publicationURL: "http://ebible.org/cak/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CAKSOU", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cak2007eb", - rodCode: 4023.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kaqchikel Chimaltenango NT", - PODISBN: "978-1-5313-0122-4", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "cak", - translationId: "cakCNT", - languageName: "Kaqchikel", - languageNameInEnglish: "Kaqchikel", - dialect: "Central", - homeDomain: "ebible.org", - title: "Ri C'ac'a Trato ri Xuben ri Dios Quiq'uin ri Vinek", - description: "New Testament in Kaqchikel (GT:cak:Kaqchikel)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-12-03", - publicationURL: "http://ebible.org/cakCNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CAKSBG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cakC2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Kaqchikel NT", - PODISBN: "978-1-5313-0123-1", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "cak", - translationId: "cakENT", - languageName: "Kaqchikel,", - languageNameInEnglish: "Kaqchikel", - dialect: "Eastern", - homeDomain: "ebible.org", - title: "RI DIOS NCH'O PA KACH'AB\u00dcL CHEKE", - description: "New Testament in Kaqchikel, Eastern (Oriental); cak (GT:cak:Kaqchikel)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-27", - publicationURL: "http://ebible.org/cakENT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CAKEAS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cakE2012eb", - rodCode: 4969.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Eastern Kaqchikel NT", - PODISBN: "978-1-5313-0124-8", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "cak", - translationId: "cakNT", - languageName: "Kaqchikel", - languageNameInEnglish: "Kaqchikel", - dialect: "Sur de Sacatepequez", - homeDomain: "ebible.org", - title: "Ri utzilaj rutzij ri Dios pa kach\u02bcabel", - description: "New Testament in Kaqchikel Sur de Sacatepequez; cak", - Redistributable: true, - Copyright: "Copyright \u00a9 1993 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-27", - publicationURL: "http://ebible.org/cakNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CAKSDS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cak1993eb", - rodCode: 4027.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kaqchikel Sur de Sacatepequez NT", - PODISBN: "978-1-5313-0125-5", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "cak", - translationId: "cakSNT", - languageName: "Kaqchikel", - languageNameInEnglish: "Kaqchikel", - dialect: "Santa Maria de Jesus", - homeDomain: "ebible.org", - title: "Ri c'ac'ac' Testamento pa kach'ab'al", - description: "New Testament in Kaqchikel, Santa Maria de Jesus; cak (GT:cak:Kaqchikel)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-27", - publicationURL: "http://ebible.org/cakSNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CAKSMJ", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cakS2010eb", - rodCode: 4784.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Santa Maria de Jesus Kaqchikel NT", - PODISBN: "978-1-5313-0126-2", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "cak", - translationId: "cakWNT", - languageName: "Kaqchikel", - languageNameInEnglish: "Kaqchikel", - dialect: "Western", - homeDomain: "ebible.org", - title: "Ri C'ac'ac' Testamento pa Kach'abel", - description: "New Testament in Kaqchikel, Western Solola; cak (GT:cak:Kaqchikel)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-27", - publicationURL: "http://ebible.org/cakWNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CAKWES", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cakW2010eb", - rodCode: 4024.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Western Solola Kaqchikel NT", - PODISBN: "978-1-5313-0127-9", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "cak", - translationId: "cakYNT", - languageName: "Kaqchikel", - languageNameInEnglish: "Kaqchikel", - dialect: "Yepocapa - South Western", - homeDomain: "ebible.org", - title: "Re C'ac'a Testamento pa Kach'abal", - description: "New Testament in Kaqchikel, South Western Yepocapa and Acatenango", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-12-03", - publicationURL: "http://ebible.org/cakYNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7950, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CAKSWY", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cakY2012eb", - rodCode: 4028.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "SW Yepocapa and Acatenango Kaqchikel NT", - PODISBN: "978-1-5313-0128-6", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "cam", - translationId: "cam", - languageName: "Cemuh\u00ee", - languageNameInEnglish: "Cemuh\u00ee", - dialect: null, - homeDomain: "ebible.org", - title: "Tii Iitihi: \u00c9lele Iitihi na mwo Coho", - description: "Cemuh\u00ee: Tii Iitihi: \u00c9lele Iitihi na mwo Coho (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/cam/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7740, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CAMWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cam2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Cemuh\u00ee: Tii Iitihi: \u00c9lele Iitihi na mwo Coho (New Testament)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "cao", - translationId: "caoNT", - languageName: "Ch\u00e1cobo", - languageNameInEnglish: "Ch\u00e1cobo", - dialect: null, - homeDomain: "ebible.org", - title: "Dios Chani", - description: "New Testament in Ch\u00e1cobo (BL:cao:Ch\u00e1cobo)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/caoNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7911, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CAOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cao2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ch\u00e1cobo NT", - PODISBN: "978-1-5313-0129-3", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cap", - translationId: "capNT", - languageName: "Chipaya", - languageNameInEnglish: "Chipaya", - dialect: null, - homeDomain: "ebible.org", - title: "Ew Testamento: Chipay Tawkquiztan", - description: "New Testament in Chipaya (BL:cap:Chipaya)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/capNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7904, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CAPSBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cap2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Chipaya NT", - PODISBN: "978-1-5313-0130-9", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "car", - translationId: "car", - languageName: "Carib", - languageNameInEnglish: "Carib", - dialect: null, - homeDomain: "ebible.org", - title: "Asery Tamusi karetary", - description: "New Testament in Carib (NS:car:Carib)", - Redistributable: false, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-11", - publicationURL: "http://ebible.org/car/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7943, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CARWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "car2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "New Testament in Carib (NS:car:Carib)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "car", - translationId: "carNT", - languageName: "Carib", - languageNameInEnglish: "Carib", - dialect: null, - homeDomain: "ebible.org", - title: "Asery Tamusi karetary", - description: "New Testament in Carib (NS:car:Carib)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/carNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7943, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CARWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "car2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Carib NT", - PODISBN: "978-1-5313-0131-6", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cav", - translationId: "cavNT", - languageName: "Cavine\u00f1a", - languageNameInEnglish: "Cavine\u00f1a", - dialect: null, - homeDomain: "ebible.org", - title: "Yusuja Quisarati", - description: "New Testament in Cavine\u00f1a (BL:cav:Cavine\u00f1a)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cavNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7834, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CAVWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cav2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Cavine\u00f1a NT", - PODISBN: "978-1-5313-0132-3", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cax", - translationId: "caxNT", - languageName: "Chiquitano", - languageNameInEnglish: "Chiquitano", - dialect: null, - homeDomain: "ebible.org", - title: "Manitanati Tuparr\u00fc", - description: "New Testament in Chiquitano (BL:cax:Chiquitano)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/caxNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7942, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CAXSBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cax2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Chiquitano NT", - PODISBN: "978-1-5313-0133-0", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cbc", - translationId: "cbcNT", - languageName: "Carapana", - languageNameInEnglish: "Carapana", - dialect: null, - homeDomain: "ebible.org", - title: "Dios C\u0289\u0303 Cauetib\u0289j\u0289 C\u0169r\u0129c\u00e3 Tuti", - description: "New Testament in Carapana (CO:cbc:Carapana)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cbcNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7815, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CBCWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cbc2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Carapana NT", - PODISBN: "978-1-5313-0134-7", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cbi", - translationId: "cbiNTpo", - languageName: "Chachi", - languageNameInEnglish: "Chachi", - dialect: null, - homeDomain: "ebible.org", - title: "Diosa' kiika; G\u00e9nesis, \u00c9xodo y El Nuevo Testamento", - description: "New Testament + Genesis and Exodus in Chachi (EC:cbi:Chachi)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-12-03", - publicationURL: "http://ebible.org/cbiNTpo/", - OTbooks: 2, - OTchapters: 90, - OTverses: 2733, - NTbooks: 27, - NTchapters: 260, - NTverses: 7910, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CBIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cbi2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Chachi Bible", - PODISBN: "978-1-5313-0135-4", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cbk", - translationId: "cbk", - languageName: "Chavacano", - languageNameInEnglish: "Chavacano", - dialect: null, - homeDomain: "ebible.org", - title: "El Nuevo Testamento", - description: "New Testament in Chavacano", - Redistributable: true, - Copyright: "Copyright \u00a9 1981 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/cbk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7944, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CBKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cbk1981eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Chavacano NT", - PODISBN: "978-1-5313-0136-1", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "cbr", - translationId: "cbrNT", - languageName: "Cashibo-Cacataibo", - languageNameInEnglish: "Cashibo-Cacataibo", - dialect: null, - homeDomain: "ebible.org", - title: "Nuk\u00ebn 'Ibu Diosan ain unikama 'inan ain bana", - description: "New Testament in Cashibo-Cacataibo (PE:cbr:Cashibo-Cacataibo)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cbrNT/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1527, - NTbooks: 27, - NTchapters: 260, - NTverses: 7849, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CBRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cbr2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Cashibo-Cacataibo NT", - PODISBN: "978-1-5313-0137-8", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cbs", - translationId: "cbsNT", - languageName: "Kashinawa", - languageNameInEnglish: "Kashinawa", - dialect: null, - homeDomain: "ebible.org", - title: "Diosun Jes\u00faswen taexun yuba bena yiniki", - description: "New Testament in Kashinawa (PE:cbs:Kashinawa)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-27", - publicationURL: "http://ebible.org/cbsNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7479, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CBSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cbs2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kashinawa NT", - PODISBN: "978-1-5313-0138-5", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "cbt", - translationId: "cbtNTpo", - languageName: "Chayahuita", - languageNameInEnglish: "Chayahuita", - dialect: null, - homeDomain: "ebible.org", - title: "Yos\u00eb nanam\u00ebn", - description: "New Testament in Chayahuita (PE:cbt:Chayahuita)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cbtNTpo/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1400, - NTbooks: 27, - NTchapters: 260, - NTverses: 7812, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CBTWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cbt2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Chayahuita NT", - PODISBN: "978-1-5313-0139-2", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cbu", - translationId: "cbuNT", - languageName: "Candoshi-Shapra", - languageNameInEnglish: "Candoshi-Shapra", - dialect: null, - homeDomain: "ebible.org", - title: "Apanlli Kuku", - description: "New Testament in Candoshi-Shapra (PE:cbu:Candoshi-Shapra)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cbuNT/", - OTbooks: 25, - OTchapters: 367, - OTverses: 8043, - NTbooks: 27, - NTchapters: 260, - NTverses: 7590, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CBUWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cbu2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Candoshi-Shapra NT", - PODISBN: "978-1-5313-0140-8", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cbv", - translationId: "cbv", - languageName: "Cacua", - languageNameInEnglish: "Cacua", - dialect: null, - homeDomain: "ebible.org", - title: "Dios \u00e3 j\u00e1ap na\u00e1w\u00e1t t\u00f3lih", - description: "New Testament in Cacua", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/cbv/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7710, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CBVWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cbv2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Cacua NT", - PODISBN: "978-1-5313-0141-5", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "cco", - translationId: "ccoNT", - languageName: "Chinantec, Comaltepec", - languageNameInEnglish: "Chinantec, Comaltepec", - dialect: null, - homeDomain: "ebible.org", - title: "J\u00fau \u02bcm\u0268\u0301\u0268 e cacuo fidi\u00e9e", - description: "New Testament in Chinantec, Comaltepec (MX:cco:Chinantec, Comaltepec)", - Redistributable: true, - Copyright: "Copyright \u00a9 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/ccoNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7895, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CCOTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cco2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Comaltepec Chinantec NT", - PODISBN: "978-1-5313-0142-2", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "ceb", - translationId: "cebulb", - languageName: "Cebuano", - languageNameInEnglish: "Cebuano", - dialect: null, - homeDomain: "ebible.org", - title: "Balaan nga Bibliya", - description: - "Unlocked Literal Bible in the Cebuano language of the Republic of the Philippines", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Door43 World Missions Community", - UpdateDate: "2020-06-08", - publicationURL: "http://ebible.org/cebulb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CEBULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cebulb2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Cebuano Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-06-08", - }, - { - languageCode: "cek", - translationId: "cekak", - languageName: "Asang Khongca", - languageNameInEnglish: "Chin, Eastern Khumi", - dialect: "Asaang Khongca", - homeDomain: "ebible.org", - title: "Asang Khongca Bible (2019)", - description: "The Holy Bible in the Asang Khongca language of Mynmar", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-09-24", - publicationURL: "http://ebible.org/cekak/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23127, - NTbooks: 27, - NTchapters: 260, - NTverses: 7948, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CEKAKB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cekak2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Asang Khongca Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "ces", - translationId: "ces1613", - languageName: "\u010desk\u00fd", - languageNameInEnglish: "Czech", - dialect: null, - homeDomain: "ebible.org", - title: "Bible Kralick\u00e1 1613", - description: - "The Holy Bible in the Czech language from the last Kralick\u00e1 edition of 1613.", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-04-11", - publicationURL: "http://ebible.org/ces1613/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23214, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CESBKR", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ces1613eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Czech Kralick\u00e1 Bible 1613", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "ces", - translationId: "cesnkb", - languageName: "\u010ce\u0161ka", - languageNameInEnglish: "Czech", - dialect: null, - homeDomain: "ebible.org", - title: "Nova Bible Kralicka", - description: - "The New Testament, Nova Bible Kralicka translation, in the Czech language of the Czech Republic", - Redistributable: true, - Copyright: "Copyright \u00a9 1998 Sdruzeni pro Novou Bibli kralickou", - UpdateDate: "2014-09-10", - publicationURL: "http://ebible.org/cesnkb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CESNKB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cesNKB1998eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Czech NBK NT", - PODISBN: "978-1-5313-0144-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "cgc", - translationId: "cgc", - languageName: "Kagayanen", - languageNameInEnglish: "Kagayanen", - dialect: null, - homeDomain: "ebible.org", - title: "Pulong ta Dyos: Genesis daw bag-o na kasugtanan", - description: "New Testament in Kagayanen", - Redistributable: true, - Copyright: "Copyright \u00a9 2007 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/cgc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7899, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CGCWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cgc2007eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kagayanen NT", - PODISBN: "978-1-5313-0145-3", - script: "Latin", - sourceDate: "2014-08-07", - }, - { - languageCode: "cha", - translationId: "cha", - languageName: "Chamorro", - languageNameInEnglish: "Chamorro", - dialect: null, - homeDomain: "ebible.org", - title: "Y CUATRO EBANGELIO SIJA YAN Y CHECHO Y APOSTOLES YAN Y SALMO SIJA", - description: - "The four Gospels, Acts, and Psalms in the Chamorro language of Guam and Northern Marianas Islands territories of the United States of America", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2015-01-02", - publicationURL: "http://ebible.org/cha/", - OTbooks: 1, - OTchapters: 150, - OTverses: 2461, - NTbooks: 5, - NTchapters: 117, - NTverses: 4784, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CHAPGA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cha1908eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Chamorro Gospels, Acts, and Psalms", - PODISBN: "978-1-5313-0146-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "chd", - translationId: "chdNT", - languageName: "Chontal, Highland Oaxaca", - languageNameInEnglish: "Chontal, Highland Oaxaca", - dialect: null, - homeDomain: "ebible.org", - title: "Lataiqui\u02bc loya\u02bcapa i\u019ae al c\u02bca lixpic\u02bcepa L\u0335anDios", - description: "New Testament in Chontal, Highland Oaxaca (MX:chd:Chontal, Highland Oaxaca)", - Redistributable: true, - Copyright: "Copyright \u00a9 1991 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/chdNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7866, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CHDWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "chd1991eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Highland Oaxaca Chontal NT", - PODISBN: "978-1-5313-0147-7", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "chf", - translationId: "chfNT", - languageName: "Chontal, Tabasco", - languageNameInEnglish: "Chontal, Tabasco", - dialect: null, - homeDomain: "ebible.org", - title: "U Ch\u02bcu\u02bcul T\u02bcan Dios", - description: "New Testament in Chontal, Tabasco (MX:chf:Chontal, Tabasco)", - Redistributable: true, - Copyright: "Copyright \u00a9 1977 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/chfNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7941, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CHFTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "chf1977eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tabasco Chontal NT", - PODISBN: "978-1-5313-0148-4", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "chk", - translationId: "chk", - languageName: "Chuukese", - languageNameInEnglish: "Chuukese", - dialect: null, - homeDomain: "ebible.org", - title: "Paipel", - description: - "The Holy Bible in the Chuukese language of the Federated States of Micronesia", - Redistributable: true, - Copyright: "Copyright \u00a9 1984, 1989, 1991, 2001 Liebenzel Mission", - UpdateDate: "2020-02-11", - publicationURL: "http://ebible.org/chk/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23140, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CHKBSM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "chk2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Chuukese Bible", - PODISBN: "978-1-5313-0149-1", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "chq", - translationId: "chqNT", - languageName: "Chinantec, Quiotepec", - languageNameInEnglish: "Chinantec, Quiotepec", - dialect: null, - homeDomain: "ebible.org", - title: "Juu\u00b3 ty\u0289\u00b2 \u02bce gafaa\u02bc\u00b2\u00b9 Dios tya\u02bc ts\u00e1\u00b2", - description: "New Testament in Chinantec, Quiotepec (MX:chq:Chinantec, Quiotepec)", - Redistributable: true, - Copyright: "Copyright \u00a9 1983 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/chqNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7893, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CHQWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "chq1983eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Quiotepec Chinantec NT", - PODISBN: "978-1-5313-0150-7", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "chz", - translationId: "chzNTps", - languageName: "Chinantec, Ozumac\u00edn", - languageNameInEnglish: "Chinantec, Ozumac\u00edn", - dialect: null, - homeDomain: "ebible.org", - title: "Hmooh hm\u00eb\u00eb he- ga-jmee Jesucristo; Salmos", - description: - "New Testament and Psalms in Chinantec, Ozumac\u00edn (MX:chz:Chinantec, Ozumac\u00edn)", - Redistributable: true, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/chzNTps/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CHZWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "chz2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Ozumac\u00edn Chinantec NT", - PODISBN: "978-1-5313-0151-4", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cje", - translationId: "cje", - languageName: "Chru", - languageNameInEnglish: "Chru", - dialect: null, - homeDomain: "ebible.org", - title: "Chru", - description: "Chru: Chru (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/cje/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CJEWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cje2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Chru: Chru (New Testament)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "cjo", - translationId: "cjoNT", - languageName: "Ash\u00e9ninka Pajonal", - languageNameInEnglish: "Ash\u00e9ninka Pajonal", - dialect: null, - homeDomain: "ebible.org", - title: "Iwaperite tajorentsi ikenkithatakoetziri awinkatharite Jesokirishito: owakirari inimotakiri tajorentsi", - description: "New Testament in Ash\u00e9ninka Pajonal (PE:cjo:Ash\u00e9ninka Pajonal)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/cjoNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7752, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CJOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cjo2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ash\u00e9ninka Pajonal NT", - PODISBN: "978-1-5313-0152-1", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "cjv", - translationId: "cjv", - languageName: "Chuave", - languageNameInEnglish: "Chuave", - dialect: null, - homeDomain: "png.bible", - title: "YAI GUMAN GUNOM KAM", - description: "The New Testament in the Chuave Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1992 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-13", - publicationURL: "http://png.bible/cjv/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7854, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CJVTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cjv1992eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Chuave NT", - PODISBN: "978-1-5313-0153-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ckb", - translationId: "ckb", - languageName: "\u0643\u0648\u0631\u062f\u06cc \u0633\u06c6\u0631\u0627\u0646\u06cc", - languageNameInEnglish: "Central Kurdish", - dialect: null, - homeDomain: "ebible.org", - title: "Biblica\u00ae \u0648\u06d5\u0634\u0627\u0646\u06cc \u0628\u06ce\u0628\u06d5\u0631\u0627\u0645\u0628\u06d5\u0631\u06cc \u06a9\u0648\u0631\u062f\u06cc\u06cc \u0633\u06c6\u0631\u0627\u0646\u06cc\u06cc \u0633\u062a\u0627\u0646\u062f\u06d5\u0631", - description: - "Kurdish, Central: Biblica\u00ae \u0648\u06d5\u0634\u0627\u0646\u06cc \u0628\u06ce\u0628\u06d5\u0631\u0627\u0645\u0628\u06d5\u0631\u06cc \u06a9\u0648\u0631\u062f\u06cc\u06cc \u0633\u06c6\u0631\u0627\u0646\u06cc\u06cc \u0633\u062a\u0627\u0646\u062f\u06d5\u0631 (Bible)", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Biblica, Inc.", - UpdateDate: "2021-04-09", - publicationURL: "http://ebible.org/ckb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CKBBIB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ckb2020eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "Amiri", - shortTitle: "Kurdi Sorani Bible", - PODISBN: null, - script: "Arabic", - sourceDate: "2021-02-23", - }, - { - languageCode: "cko", - translationId: "cko", - languageName: "Anufo", - languageNameInEnglish: "Anufo", - dialect: null, - homeDomain: "ebible.org", - title: "Ny\u03b5m\u03b5 J\u0254r\u03b5 Kadasi", - description: "The New Testament in Anufo (Chokosi)", - Redistributable: false, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-13", - publicationURL: "http://ebible.org/cko/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7913, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CKOWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cko2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "The New Testament in Anufo (Chokosi)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "cle", - translationId: "cleNT", - languageName: "Chinantec, Lealao", - languageNameInEnglish: "Chinantec, Lealao", - dialect: null, - homeDomain: "ebible.org", - title: "Ja\u0331\u00b3la\u00b3 f\u00e1h\u2074dxa\u2074\u00b2dx\u00fa\u2074 hi\u00b3m\u0268\u0268\u00b3\u00b2 chi\u00e1h\u00b2 \u00d1\u00fah\u00b3a\u00b2 Jesucristo; Salmos", - description: "New Testament in Chinantec, Lealao (MX:cle:Chinantec, Lealao)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cleNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CLETBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cle2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Lealao Chinantec NT", - PODISBN: "978-1-5313-0154-5", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "clu", - translationId: "clu", - languageName: "Caluyanun", - languageNameInEnglish: "Caluyanun", - dialect: null, - homeDomain: "ebible.org", - title: "Anang ambal ang Dios: Magandang balita Biblia", - description: "New Testament in Caluyanun", - Redistributable: true, - Copyright: "Copyright \u00a9 1990 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/clu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7875, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CLUWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "clu1990eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Caluyanun NT", - PODISBN: "978-1-5313-0155-2", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "cme", - translationId: "cmeNT", - languageName: null, - languageNameInEnglish: "Cerma", - dialect: null, - homeDomain: null, - title: "Diilo\u014b-nelma Tobis\u0129f\u025bl\u025bnni", - description: "New Testament in Cerma (UV:cme:Cerma)", - Redistributable: false, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-23", - publicationURL: "http:///cmeNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7920, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CMENTW", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cmeNT", - rodCode: null, - textDirection: "ltr", - downloadable: false, - font: "Gentium", - shortTitle: "New Testament in Cerma (UV:cme:Cerma)", - PODISBN: null, - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cmn", - translationId: "cmn2006", - languageName: "\u4e2d\u56fd\u8bed\u6587", - languageNameInEnglish: "Chinese", - dialect: "Mandarin, simplified script", - homeDomain: "ebible.org", - title: "\u5723 \u7ecf \u666e\u901a\u8bdd\u672c", - description: "The Holy Bible in Chinese (simplified), Easy Reading Version", - Redistributable: false, - Copyright: "Copyright \u00a9 2004, 2006 World Bible Translation Center", - UpdateDate: "2021-10-15", - publicationURL: "http://ebible.org/cmn2006/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22526, - NTbooks: 27, - NTchapters: 260, - NTverses: 7936, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CHNWTS", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cmnWBTC2006eb", - rodCode: 6039.0, - textDirection: "ltr", - downloadable: true, - font: "Bitstream Cyberbit", - shortTitle: "Chinese (simplified) Easy Reading Version", - PODISBN: null, - script: "CJK", - sourceDate: "2020-10-09", - }, - { - languageCode: "cmn", - translationId: "cmn-cu89s", - languageName: "\u4e2d\u56fd\u8bed\u6587", - languageNameInEnglish: "Chinese", - dialect: "Mandarin, simplified script", - homeDomain: "ebible.org", - title: "\u65b0\u6807\u70b9\u548c\u5408\u672c", - description: "Chinese Union Version with New Punctuation (simplified)", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2021-10-15", - publicationURL: "http://ebible.org/cmn-cu89s/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23081, - NTbooks: 27, - NTchapters: 260, - NTverses: 7940, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CHNCU1", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cmnCUs889eb", - rodCode: 6039.0, - textDirection: "ltr", - downloadable: true, - font: "Bitstream Cyberbit", - shortTitle: "Chinese Union Version (simplified)", - PODISBN: "978-1-5313-0157-6", - script: "CJK", - sourceDate: "2020-10-09", - }, - { - languageCode: "cmn", - translationId: "cmn-cu89t", - languageName: "\u4e2d\u570b\u8a9e\u6587", - languageNameInEnglish: "Chinese", - dialect: "Mandarin, traditional script", - homeDomain: "ebible.org", - title: "\u65b0\u6a19\u9ede\u548c\u5408\u672c", - description: "Chinese Union Version with New Punctuation (traditional)", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2021-10-15", - publicationURL: "http://ebible.org/cmn-cu89t/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23081, - NTbooks: 27, - NTchapters: 260, - NTverses: 7940, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CHNCUV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cmnCUt1889eb", - rodCode: 6039.0, - textDirection: "ltr", - downloadable: true, - font: "Bitstream Cyberbit", - shortTitle: "Chinese Union Version (traditional)", - PODISBN: "978-1-5313-0158-3", - script: "CJK", - sourceDate: "2020-10-09", - }, - { - languageCode: "cmn", - translationId: "cmnfeb", - languageName: "\u4e2d\u570b\u8a9e\u6587", - languageNameInEnglish: "Chinese", - dialect: null, - homeDomain: "ebible.org", - title: "\u514d\u8d39\u7684\u6613\u8bfb\u5723\u7ecf Free Easy-to-read Bible", - description: - "Chinese, Mandarin: \u514d\u8d39\u7684\u6613\u8bfb\u5723\u7ecf Free Easy-to-read Bible (Bible)", - Redistributable: true, - Copyright: "Copyright \u00a9 2022 Free Bible Ministry, Inc.", - UpdateDate: "2022-11-29", - publicationURL: "http://ebible.org/cmnfeb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CMNFEB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cmnfeb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Noto Sans CJK SC", - shortTitle: - "Chinese, Mandarin: \u514d\u8d39\u7684\u6613\u8bfb\u5723\u7ecf Free Easy-to-read Bible (Bible)", - PODISBN: null, - script: "Han (Simplified variant)", - sourceDate: "2022-11-29", - }, - { - languageCode: "cmn", - translationId: "cmn-ncvs", - languageName: "\u4e2d\u56fd\u8bed\u6587", - languageNameInEnglish: "Chinese", - dialect: "Mandarin, simplified script", - homeDomain: "ebible.org", - title: "\u65b0\u8bd1\u672c", - description: "Chinese New Version (simplified)", - Redistributable: false, - Copyright: - "Copyright \u00a9 1976, 1992, 1999, 2001, 2005, 2010 The Worldwide Bible Society Limited", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/cmn-ncvs/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23134, - NTbooks: 27, - NTchapters: 260, - NTverses: 7942, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CHNNCS", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cmnNCVs2010eb", - rodCode: 6039.0, - textDirection: "ltr", - downloadable: true, - font: "Bitstream Cyberbit", - shortTitle: "Chinese New Version (simplified)", - PODISBN: null, - script: "CJK", - sourceDate: "2021-11-30", - }, - { - languageCode: "cmn", - translationId: "cmn-ncvt", - languageName: "\u4e2d\u570b\u8a9e\u6587", - languageNameInEnglish: "Chinese", - dialect: "Mandarin, traditional script", - homeDomain: "ebible.org", - title: "\u65b0\u8b6f\u672c", - description: "Chinese New Version (traditional)", - Redistributable: false, - Copyright: - "Copyright \u00a9 1976, 1992, 1999, 2001, 2005, 2010 The Worldwide Bible Society Limited", - UpdateDate: "2021-10-15", - publicationURL: "http://ebible.org/cmn-ncvt/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23135, - NTbooks: 27, - NTchapters: 260, - NTverses: 7941, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CHNNCT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cmnNCVt2010eb", - rodCode: 6039.0, - textDirection: "ltr", - downloadable: true, - font: "Bitstream Cyberbit", - shortTitle: "Chinese New Version (traditional)", - PODISBN: null, - script: "CJK", - sourceDate: "2021-11-30", - }, - { - languageCode: "cmo", - translationId: "cmo", - languageName: "Central Mnong", - languageNameInEnglish: "Central Mnong", - dialect: null, - homeDomain: "ebible.org", - title: "Nau K\u00f4ranh Brah Ng\u01a1i Nau T\u00e2m Rngl\u0103p Mhe", - description: - "Mnong, Central: Nau K\u00f4ranh Brah Ng\u01a1i Nau T\u00e2m Rngl\u0103p Mhe New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/cmo/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7937, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CMOWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cmo2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Mnong, Central: Nau K\u00f4ranh Brah Ng\u01a1i Nau T\u00e2m Rngl\u0103p Mhe New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "cmo", - translationId: "cmok", - languageName: "Central Mnong", - languageNameInEnglish: "Central Mnong", - dialect: null, - homeDomain: "ebible.org", - title: "\u1793\u17b6\u179c\u200b\u1780\u17c4\u179a\u17b6\u1789\u200b\u179e\u17d2\u179a\u17b6\u179f\u200b\u1784\u17be\u1799\u200b\u200b\u1793\u17b6\u179c\u200b\u178f\u17b9\u1798\u200b\u179a\u17b6\u1784\u17d2\u179b\u17b6\u1794\u17cb\u200b\u1798\u17a0\u17c2", - description: - "Mnong, Central: \u1793\u17b6\u179c\u200b\u1780\u17c4\u179a\u17b6\u1789\u200b\u179e\u17d2\u179a\u17b6\u179f\u200b\u1784\u17be\u1799\u200b\u200b\u1793\u17b6\u179c\u200b\u178f\u17b9\u1798\u200b\u179a\u17b6\u1784\u17d2\u179b\u17b6\u1794\u17cb\u200b\u1798\u17a0\u17c2 New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/cmok/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7937, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CMOKWB", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cmok2016eb", - rodCode: 14145.0, - textDirection: "ltr", - downloadable: true, - font: "Hanuman", - shortTitle: - "Mnong, Central: \u1793\u17b6\u179c\u200b\u1780\u17c4\u179a\u17b6\u1789\u200b\u179e\u17d2\u179a\u17b6\u179f\u200b\u1784\u17be\u1799\u200b\u200b\u1793\u17b6\u179c\u200b\u178f\u17b9\u1798\u200b\u179a\u17b6\u1784\u17d2\u179b\u17b6\u1794\u17cb\u200b\u1798\u17a0\u17c2 New Testament", - PODISBN: null, - script: "Khmer", - sourceDate: "2020-11-14", - }, - { - languageCode: "cni", - translationId: "cniNT", - languageName: "Ash\u00e1ninka", - languageNameInEnglish: "Ash\u00e1ninka", - dialect: null, - homeDomain: "ebible.org", - title: "Irineane tasorentsi oquenquetsatacotaqueri Avincatsarite Jesoquirishito", - description: "New Testament in Ash\u00e1ninka (PE:cni:Ash\u00e1ninka)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/cniNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7775, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CNIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cni2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ash\u00e1ninka NT", - PODISBN: "978-1-5313-0159-0", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "cnl", - translationId: "cnlNT", - languageName: "Chinantec, Lalana", - languageNameInEnglish: "Chinantec, Lalana", - dialect: null, - homeDomain: "ebible.org", - title: "J\u00fau\u00b2 'm\u0268\u0268n\u00b3\u00b2 'e\u00b3 ca\u00b2\u00b3\u014b\u0268\u0144\u00b2 Dios", - description: "New Testament in Chinantec, Lalana (MX:cnl:Chinantec, Lalana)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cnlNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CNLTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cnl2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Lalana Chinantec NT", - PODISBN: "978-1-5313-0160-6", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cnt", - translationId: "cntNT", - languageName: "Chinantec, Tepetotutla", - languageNameInEnglish: "Chinantec, Tepetotutla", - dialect: null, - homeDomain: "ebible.org", - title: "Jag\u2081 \u02bcm\u0268\u0301\u2082 a\u2082ma\u2082l\u0268\u02bc\u2085\u2084 quian\u02bc\u2085\u2084 Diu\u2084", - description: "New Testament in Chinantec, Tepetotutla (MX:cnt:Chinantec, Tepetotutla)", - Redistributable: true, - Copyright: "Copyright \u00a9 1994 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cntNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7948, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CNTTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cnt1994eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tepetotutla Chinantec NT", - PODISBN: "978-1-5313-0161-3", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "coe", - translationId: "coe", - languageName: "Koreguaje", - languageNameInEnglish: "Koreguaje", - dialect: null, - homeDomain: "ebible.org", - title: "Dios Ch\u0289'o K\u0289aph\u0289ro", - description: "Koreguaje: Dios Ch\u0289'o K\u0289aph\u0289ro New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/coe/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7737, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "COEWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "coe2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Koreguaje: Dios Ch\u0289'o K\u0289aph\u0289ro New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "cof", - translationId: "cofNT", - languageName: "Colorado", - languageNameInEnglish: "Colorado", - dialect: null, - homeDomain: "ebible.org", - title: "Diosichi Pila", - description: "New Testament in Colorado (EC:cof:Colorado)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cofNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7562, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "COFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cof2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Colorado NT", - PODISBN: "978-1-5313-0162-0", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cok", - translationId: "cok", - languageName: "Cora, Santa Teresa", - languageNameInEnglish: "Cora, Santa Teresa", - dialect: null, - homeDomain: "ebible.org", - title: "\u0197 ny\u00faucarij t\u0268 j\u00e1jcua t\u0268 a\ua78c\u0268j\u0301na \u00e1\ua78cxaj \u0268 Tav\u00e1stara\ua78c \u0268 Jes\u00fas t\u0268 C\u0268r\u00edistu\ua78c pue\ua78ceen ajta Salmos", - description: - "Cora, Santa Teresa: \u0197 ny\u00faucarij t\u0268 j\u00e1jcua t\u0268 a\ua78c\u0268j\u0301na \u00e1\ua78cxaj \u0268 Tav\u00e1stara\ua78c \u0268 Jes\u00fas t\u0268 C\u0268r\u00edistu\ua78c pue\ua78ceen ajta Salmos New Testament+", - Redistributable: false, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/cok/", - OTbooks: 1, - OTchapters: 150, - OTverses: 2452, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "COKWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cok2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Santa Teresa Cora Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "con", - translationId: "conNTpo", - languageName: "Cof\u00e1n", - languageNameInEnglish: "Cof\u00e1n", - dialect: null, - homeDomain: "ebible.org", - title: "Chiga Tevaen'Jema Atesuja 1, Aisheve Ca\u00f1a'cho", - description: "New Testament and Genesis in Cof\u00e1n (EC:con:Cof\u00e1n)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/conNTpo/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1524, - NTbooks: 27, - NTchapters: 260, - NTverses: 7898, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CONWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "con2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Cof\u00e1n Bible", - PODISBN: "978-1-5313-0163-7", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cop", - translationId: "copbhc", - languageName: "\u2c98\u2c89\u2ca7\u2ca2\u2c89\u2c99\u0300\u2c9b\u2cad\u2c8f\u2c99\u2c93", - languageNameInEnglish: "Coptic", - dialect: "Bohairic", - homeDomain: "ebible.org", - title: "\u0627\u0644\u0642\u0628\u0637\u064a\u0629 \u0627\u0644\u0628\u062d\u064a\u0631\u064a\u0629 \u0627\u0644\u0639\u0647\u062f \u0627\u0644\u062c\u062f\u064a\u062f", - description: - "The New Testament in the Boharic (Northern) dialect of the Coptic language of Egypt", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2014-09-16", - publicationURL: "http://ebible.org/copbhc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "COPBHC", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "copBHC1000eb", - rodCode: 9007.0, - textDirection: "ltr", - downloadable: true, - font: "New Athena Unicode", - shortTitle: "Coptic Boharic NT", - PODISBN: "978-1-5313-0164-4", - script: "Coptic", - sourceDate: "2020-10-09", - }, - { - languageCode: "cop", - translationId: "copcnt", - languageName: "\u2c98\u2c89\u2ca7\u2ca2\u2c89\u2c99\u0300\u2c9b\u2cad\u2c8f\u2c99\u2c93", - languageNameInEnglish: "Coptic", - dialect: null, - homeDomain: "ebible.org", - title: "\u0627\u0644\u0642\u0628\u0637\u064a\u0629 \u0627\u0644\u0639\u0647\u062f \u0627\u0644\u062c\u062f\u064a\u062f", - description: "The New Testament in the Coptic language of Egypt", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2014-09-16", - publicationURL: "http://ebible.org/copcnt/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "COPCNT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "copC2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "New Athena Unicode", - shortTitle: "Coptic NT", - PODISBN: "978-1-5313-0165-1", - script: "Coptic", - sourceDate: "2020-10-09", - }, - { - languageCode: "cop", - translationId: "copshc", - languageName: "\u2c98\u2c89\u2ca7\u2ca2\u2c89\u2c99\u0300\u2c9b\u2cad\u2c8f\u2c99\u2c93", - languageNameInEnglish: "Coptic", - dialect: "Sahidic", - homeDomain: "ebible.org", - title: "Sahidica - \u0637\u0628\u0639\u0629 \u062c\u062f\u064a\u062f\u0629 \u0645\u0646 \u0627\u0644\u0639\u0647\u062f \u0627\u0644\u062c\u062f\u064a\u062f \u0628\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0642\u0628\u0637\u064a\u0629 \u0627\u0644\u0635\u0639\u064a\u062f\u064a\u0629", - description: "Sahidica - A New Edition of the New Testament in Sahidic Coptic", - Redistributable: true, - Copyright: "Copyright \u00a9 2000-2006 J Warren Wells", - UpdateDate: "2014-09-16", - publicationURL: "http://ebible.org/copshc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7946, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "COPSHC", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "copSHC2006eb", - rodCode: 9008.0, - textDirection: "ltr", - downloadable: true, - font: "New Athena Unicode", - shortTitle: "Coptic Sahidic NT", - PODISBN: "978-1-5313-0166-8", - script: "Coptic", - sourceDate: "2020-10-09", - }, - { - languageCode: "cot", - translationId: "cotNT", - languageName: null, - languageNameInEnglish: "Caquinte", - dialect: null, - homeDomain: null, - title: "Iroaquerari Itioncacaantaqueca Aapani Irioshi: Tsavetacoquerica Amajirote Jesoquirishito", - description: "New Testament in Caquinte (PE:cot:Caquinte)", - Redistributable: false, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-12-21", - publicationURL: "http:///cotNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7919, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "COTNTW", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cotNT", - rodCode: null, - textDirection: "ltr", - downloadable: false, - font: "Gentium", - shortTitle: "New Testament in Caquinte (PE:cot:Caquinte)", - PODISBN: null, - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cou", - translationId: "cou", - languageName: null, - languageNameInEnglish: "Wamey", - dialect: null, - homeDomain: "ebible.org", - title: "Viker\u00ebh Vikas\u00ebk W\u0303\u00ebn g\u00eb Wap\u00ebgwala", - description: - "Wamey: Viker\u00ebh Vikas\u00ebk W\u0303\u00ebn g\u00eb Wap\u00ebgwala (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/cou/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1520, - NTbooks: 27, - NTchapters: 260, - NTverses: 7936, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "COUWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cou2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Wamey New Testament + Genesis", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-02", - }, - { - languageCode: "cpa", - translationId: "cpaNT", - languageName: "Chinantec, Palantla", - languageNameInEnglish: "Chinantec, Palantla", - dialect: null, - homeDomain: "ebible.org", - title: "El Nuevo Testamento de nuestro se\u00f1or Jesucristo: Versi\u00f3n chinanteca", - description: "New Testament in Chinantec, Palantla (MX:cpa:Chinantec, Palantla)", - Redistributable: true, - Copyright: "Copyright \u00a9 1973 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cpaNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CPATBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cpa1973eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Palantla Chinantec NT", - PODISBN: "978-1-5313-0168-2", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cpb", - translationId: "cpbNT", - languageName: "Ash\u00e9ninka, Ucayali-yur\u00faa", - languageNameInEnglish: "Ash\u00e9ninka, Ucayali-yur\u00faa", - dialect: null, - homeDomain: "ebible.org", - title: "Kameethari \u00d1aantsi: ikenkitha-takoitziri awinkatharite Jesucristo; Owakerari aapatziya-wakagaantsi", - description: - "New Testament in Ash\u00e9ninka, Ucayali-yur\u00faa (PE:cpb:Ash\u00e9ninka, Ucayali-yur\u00faa)", - Redistributable: true, - Copyright: "Copyright \u00a9 2000 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/cpbNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CPBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cpb2000eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ucayali-yur\u00faa Ash\u00e9ninka NT", - PODISBN: "978-1-5313-0169-9", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "cpc", - translationId: "cpcNT", - languageName: "Ajy\u00edninka Apurucayali", - languageNameInEnglish: "Ajy\u00edninka Apurucayali", - dialect: null, - homeDomain: "ebible.org", - title: "KAMIITHARI \u00d1AANTSI", - description: - "New Testament in Ajy\u00edninka Apurucayali (PE:cpc:Ajy\u00edninka Apurucayali)", - Redistributable: true, - Copyright: "Copyright \u00a9 2000 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/cpcNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CPCWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cpc2000eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ajy\u00edninka Apurucayali NT", - PODISBN: "978-1-5313-0170-5", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "cpu", - translationId: "cpuNT", - languageName: "Ash\u00e9ninka, Pichis", - languageNameInEnglish: "Ash\u00e9ninka, Pichis", - dialect: null, - homeDomain: "ebible.org", - title: "KAMEETHARI \u00d1AANTSI: I\u00f1aaventaitzirira Avinkatharite Jesucristo", - description: "The New Testament in the Pichis Ash\u00e9ninka language of Peru", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-12-03", - publicationURL: "http://ebible.org/cpuNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CPUWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cpu2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Pichis Ash\u00e9ninka NT", - PODISBN: "978-1-5313-0171-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "cpy", - translationId: "cpy", - languageName: "Ash\u00e9ninka Ucayali del Sur", - languageNameInEnglish: "Ash\u00e9ninka, South Ucayali", - dialect: null, - homeDomain: "ebible.org", - title: "Las Escrituras en Ash\u00e9ninka Ucayali del Sur del Per\u00fa", - description: "The Holy Bible in the South Ucayali Ash\u00e9ninka language of Peru", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-06-08", - publicationURL: "http://ebible.org/cpy/", - OTbooks: 22, - OTchapters: 690, - OTverses: 3576, - NTbooks: 27, - NTchapters: 260, - NTverses: 7067, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CPYWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cpy2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "South Ucayali Ash\u00e9ninka Bible", - PODISBN: "978-1-5313-0764-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "crj", - translationId: "crj", - languageName: "\u012an\u016b Ayim\u016bn", - languageNameInEnglish: "\u012an\u016b Ayim\u016bn", - dialect: null, - homeDomain: "ebible.org", - title: "Cree: Eastern. Chishemanituu Utayimuwin kaa uskaach testimint.", - description: - "Cree, Southern East: Cree: Eastern. Chishemanituu Utayimuwin kaa uskaach testimint. New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/crj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CRJWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "crj2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "FreeSans", - shortTitle: - "Cree, Southern East: Cree: Eastern. Chishemanituu Utayimuwin kaa uskaach testimint. New Testament", - PODISBN: null, - script: "Unified Canadian Aboriginal Syllabics", - sourceDate: "2020-11-17", - }, - { - languageCode: "crl", - translationId: "crl", - languageName: "Cree, Northern East", - languageNameInEnglish: "Cree, Northern East", - dialect: null, - homeDomain: "ebible.org", - title: "Cree: Coastal (East Coast)", - description: "Cree, Northern East: Cree: Coastal (East Coast) New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/crl/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CRLWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "crl2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "FreeSans", - shortTitle: "Cree, Northern East: Cree: Coastal (East Coast) New Testament", - PODISBN: null, - script: "Unified Canadian Aboriginal Syllabics", - sourceDate: "2020-11-14", - }, - { - languageCode: "crn", - translationId: "crnNT", - languageName: "Cora, El Nayar", - languageNameInEnglish: "Cora, El Nayar", - dialect: null, - homeDomain: "ebible.org", - title: "\u0197 niuucari t\u0268 jejcua, t\u0268 ajta j\u0268me'en ra'axa a'\u0268jna \u0268 tavastara'a, \u0268 C\u0268riistu'u t\u0268 ji'i Jes\u00fas t\u0268\u0300 tu'ir\u00e1jtuaa", - description: - "New Testament in Cora, El Nayar Presidio De Los Reyes; crn (MX:crn:Cora, El Nayar)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/crnNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7759, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CRNWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "crn2008eb", - rodCode: 20089.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "El Nayar Presidio De Los Reyes Cora NT", - PODISBN: "978-1-5313-0172-9", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "crx", - translationId: "crxNTpo", - languageName: "Carrier", - languageNameInEnglish: "Carrier", - dialect: null, - homeDomain: "ebible.org", - title: "Yak'usda Ooghuni", - description: "New Testament in Carrier (CA:crx:Carrier)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/crxNTpo/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1533, - NTbooks: 27, - NTchapters: 260, - NTverses: 7947, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CRXWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "crx2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Carrier NT", - PODISBN: "978-1-5313-0173-6", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cso", - translationId: "csoNT", - languageName: "Chinantec, Sochiapam", - languageNameInEnglish: "Chinantec, Sochiapam", - dialect: null, - homeDomain: "ebible.org", - title: "J\u00fa\u00b9 ch\u00fa\u00b3\u00b2 quioh\u00b2\u00b9 Jes\u00fas ts\u00e1\u00b2 l\u0268n\u00b3 Cristo", - description: "New Testament in Chinantec, Sochiapam (MX:cso:Chinantec, Sochiapam)", - Redistributable: true, - Copyright: "Copyright \u00a9 1986 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/csoNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CSOTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cso1986eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sochiapam Chinantec NT", - PODISBN: "978-1-5313-0174-3", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "csy", - translationId: "csy", - languageName: "Siyin Chin", - languageNameInEnglish: "Chin, Siyin", - dialect: null, - homeDomain: "ebible.org", - title: "Tinaung Takluem", - description: "The New Testament in the Siyin Chin language of Myanmar (Burma)", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Siyin KJV Bible Team", - UpdateDate: "2020-12-23", - publicationURL: "http://ebible.org/csy/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CSYSKB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "csy2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Siyin Chin NT", - PODISBN: null, - script: "Latin", - sourceDate: "2022-08-22", - }, - { - languageCode: "cta", - translationId: "ctaNT", - languageName: "Chatino, Tataltepec", - languageNameInEnglish: "Chatino, Tataltepec", - dialect: null, - homeDomain: "ebible.org", - title: "Cha\u02bc tso\u02bco nu nchcui\u02bc ji\u02bci\u0331 Jesucristo nu xu\u02bcna na", - description: "New Testament in Chatino, Tataltepec (MX:cta:Chatino, Tataltepec)", - Redistributable: true, - Copyright: "Copyright \u00a9 1981 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/ctaNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7916, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CTAWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cta1981eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tataltepec Chatino NT", - PODISBN: "978-1-5313-0175-0", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cth", - translationId: "cth", - languageName: "Thai Phum", - languageNameInEnglish: "Chin, Thaiphum", - dialect: null, - homeDomain: "ebible.org", - title: "Thai Phum Holy Bible", - description: "The Holy Bible in the Thaiphum Chin language of Myanmar", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Batupuei Christian Fellowship", - UpdateDate: "2023-01-03", - publicationURL: "http://ebible.org/cth/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CTHBCF", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cth2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Thai Phum Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2023-01-03", - }, - { - languageCode: "ctp", - translationId: "ctpNT", - languageName: "Chatino, Western Highland", - languageNameInEnglish: "Chatino, Western Highland", - dialect: null, - homeDomain: "ebible.org", - title: "Cha\u02bc su\u02bcwe nu nchkwi\u02bc cha\u02bc \u02bcin Jesucristo nu nka x\u02bcnaan", - description: - "New Testament in Chatino, Western Highland (MX:ctp:Chatino, Western Highland)", - Redistributable: true, - Copyright: "Copyright \u00a9 1992 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/ctpNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7913, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CTPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ctp1992eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Western Highland Chatino NT", - PODISBN: "978-1-5313-0176-7", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "ctu", - translationId: "ctu76", - languageName: "Chol", - languageNameInEnglish: "Chol", - dialect: null, - homeDomain: "ebible.org", - title: "Jini wen b\u028c t\u02bcan", - description: "New Testament in Chol Tila; ctu (MX:ctu:Chol)", - Redistributable: true, - Copyright: "Copyright \u00a9 1976 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/ctu76/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7935, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CTU976", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ctu1976eb", - rodCode: 2104.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Chol NT", - PODISBN: "978-1-5313-0177-4", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "ctu", - translationId: "ctuBl", - languageName: "Chol", - languageNameInEnglish: "Chol", - dialect: null, - homeDomain: "ebible.org", - title: "I T\u2019an Dios", - description: "Bible without Deuterocanon in Chol Tumbala; ctu (MX:ctu:Chol)", - Redistributable: true, - Copyright: "Copyright \u00a9 1977 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/ctuBl/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7942, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CTUWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ctu1977eb", - rodCode: 14.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Chol Tumbala Bible", - PODISBN: "978-1-5313-0178-1", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "ctu", - translationId: "ctucti", - languageName: "Chol de Tila", - languageNameInEnglish: "Chol", - dialect: "Tila", - homeDomain: "ebible.org", - title: "JINI WEN B\u039b T'AN", - description: - "The New Testament and portions of the Old Testament in the Tila dialect of the Chol language of Mexico", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 La Liga B\u00edblica", - UpdateDate: "2016-06-08", - publicationURL: "http://ebible.org/ctucti/", - OTbooks: 1, - OTchapters: 27, - OTverses: 424, - NTbooks: 27, - NTchapters: 260, - NTverses: 7935, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CTUCTI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ctucti2008eb", - rodCode: 2104.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Chol de Tila Bible", - PODISBN: "978-1-5313-0769-1", - script: "Latin", - sourceDate: "2016-06-09", - }, - { - languageCode: "cub", - translationId: "cubNT", - languageName: "Cubeo", - languageNameInEnglish: "Cubeo", - dialect: null, - homeDomain: "ebible.org", - title: "Majepac\u0289 j\u0289\u0303menijic\u0289i y\u00e1vaiye mamaene coy\u0289itucubo", - description: "New Testament in Cubeo (CO:cub:Cubeo)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cubNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7830, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CUBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cub2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Cubeo NT", - PODISBN: "978-1-5313-0179-8", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cuc", - translationId: "cucNT", - languageName: "Chinantec, Usila", - languageNameInEnglish: "Chinantec, Usila", - dialect: null, - homeDomain: "ebible.org", - title: "Jau\u00b2\u00b3 hm\u00b2\u00b3 i\u2074ra\u00b3tya\u00b2\u00b3 nei\u00b2 quieh\u00b9 re\u00b9 Jesucristo quian\u2074-\u00b9", - description: "New Testament in Chinantec, Usila (MX:cuc:Chinantec, Usila)", - Redistributable: true, - Copyright: "Copyright \u00a9 1983 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cucNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CUCTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cuc1983eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Usila Chinantec NT", - PODISBN: "978-1-5313-0180-4", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cui", - translationId: "cui", - languageName: "Cuiba", - languageNameInEnglish: "Cuiba", - dialect: null, - homeDomain: "ebible.org", - title: "Nacom Pejume Diwesi po diwesi pena jume diwesi xua Jesucristo yabara tinatsi", - description: "New Testament in Cuiba", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cui/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7892, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CUIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cui2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Cuiba NT", - PODISBN: "978-1-5313-0181-1", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cuk", - translationId: "cuk", - languageName: "San Blas Cuna", - languageNameInEnglish: "San Blas Kuna", - dialect: null, - homeDomain: "ebible.org", - title: "Bab-Dummad-Garda-Islidikid", - description: "The Holy Bible in the San Blas Kuna language of Panama", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-03-31", - publicationURL: "http://ebible.org/cuk/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23141, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CUKNVS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cuk2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "San Blas Kuna Bible", - PODISBN: "978-1-5313-0182-8", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "cuk", - translationId: "cuk09", - languageName: "San Blas Kuna", - languageNameInEnglish: "Kuna, San Blas", - dialect: null, - homeDomain: "ebible.org", - title: "Bab dummad Jesucristoba igar mesisad garda", - description: "New Testament in Kuna, San Blas (PM:cuk:Kuna, San Blas)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/cuk09/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CUKWB9", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cuk2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "San Blas Kuna NT 2009", - PODISBN: "978-1-5313-0183-5", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "cul", - translationId: "cul", - languageName: "Culina", - languageNameInEnglish: "Kulina", - dialect: null, - homeDomain: "ebible.org", - title: "El Nuevo Testamento en el idioma Culina (m\u00e1dija) del Per\u00fa", - description: - "Kulina: El Nuevo Testamento en el idioma Culina (m\u00e1dija) del Per\u00fa New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/cul/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7863, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CULWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cul2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Culina NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "cut", - translationId: "cutNT", - languageName: "Cuicatec, Teutila", - languageNameInEnglish: "Cuicatec, Teutila", - dialect: null, - homeDomain: "ebible.org", - title: "El Nuevo Testamento: Cuicateco de Teutila", - description: "New Testament in Cuicatec, Teutila (MX:cut:Cuicatec, Teutila)", - Redistributable: true, - Copyright: "Copyright \u00a9 1972 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cutNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7847, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CUTWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cut1972eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Teutila NT", - PODISBN: "978-1-5313-0184-2", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cux", - translationId: "cuxNT", - languageName: "Cuicatec, Tepeuxila", - languageNameInEnglish: "Cuicatec, Tepeuxila", - dialect: null, - homeDomain: "ebible.org", - title: "Nduudu n\u02bcdai ye\u207f\u02bce Ndyu\u016bs ye\u207f\u02bce cuicateco ye\u207f\u02bce Tepeuxila", - description: "New Testament in Cuicatec, Tepeuxila (MX:cux:Cuicatec, Tepeuxila)", - Redistributable: true, - Copyright: "Copyright \u00a9 1974 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/cuxNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CUXWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cux1974eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tepeuxila Cuicatec NT", - PODISBN: "978-1-5313-0185-9", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "cwe", - translationId: "cwe", - languageName: "Kwere", - languageNameInEnglish: "Kwere", - dialect: null, - homeDomain: "ebible.org", - title: "Biblia Ching'hwele", - description: "The New Testament in Kwere", - Redistributable: true, - Copyright: - "Copyright \u00a9 2014, 2019 The Word for the World and Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://ebible.org/cwe/", - OTbooks: 5, - OTchapters: 187, - OTverses: 5852, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CWEPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cwe2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kwere NT", - PODISBN: "978-1-5313-0186-6", - script: "Latin", - sourceDate: "2020-04-09", - }, - { - languageCode: "cya", - translationId: "cya", - languageName: "Nopala Chatino", - languageNameInEnglish: "Chatino, Nopala", - dialect: null, - homeDomain: "ebible.org", - title: "El Nuevo Testamento", - description: "New Testament in Chatino, Nopala", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/cya/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "CYAWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "cya2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Nopala Chatino NT", - PODISBN: "978-1-5313-0187-3", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "daa", - translationId: "daaNT", - languageName: "Dangal\u00e9at", - languageNameInEnglish: "Dangal\u00e9at", - dialect: null, - homeDomain: "ebible.org", - title: "Jamaw ta Marbinto: Kabarre ta Gala \u0257o bi ka Iisa Masi i\u014b da\u014bla", - description: "New Testament in Dangal\u00e9at (CD:daa:Dangal\u00e9at)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-11-01", - publicationURL: "http://ebible.org/daaNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7912, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DAAWYI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "daa2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Dangal\u00e9at NT", - PODISBN: "978-1-5313-0188-0", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "dad", - translationId: "dad", - languageName: "Marik", - languageNameInEnglish: "Marik", - dialect: null, - homeDomain: "png.bible", - title: "Mata Ifen\u1ebdya N\u1ebd Od", - description: "The New Testament in the Marik Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-07-22", - publicationURL: "http://png.bible/dad/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7941, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DADWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dad2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Marik NT", - PODISBN: "978-1-5313-0189-7", - script: "Latin", - sourceDate: "2013-07-23", - }, - { - languageCode: "daf", - translationId: "daf", - languageName: "Dan", - languageNameInEnglish: "Dan", - dialect: "Eastern", - homeDomain: "ebible.org", - title: "NA\u0186 \u2011S\u00cb 'S\u00cb\u00cbDH\u0190", - description: "Dan: NA\u0186 \u2011S\u00cb 'S\u00cb\u00cbDH\u0190 New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1991 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-07-12", - publicationURL: "http://ebible.org/daf/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7880, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DAFWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "daf1991eb", - rodCode: 9101.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Dan: NA\u0186 \u2011S\u00cb 'S\u00cb\u00cbDH\u0190 New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "dah", - translationId: "dah", - languageName: "Gwahatike", - languageNameInEnglish: "Gwahatike", - dialect: null, - homeDomain: "png.bible", - title: "Al Kuru\u014byen Mere Igi\u014b", - description: "The New Testament in the Gwahatike Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2000 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-08-10", - publicationURL: "http://png.bible/dah/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7713, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DAHPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dah2000eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Gwahatike NT", - PODISBN: "978-1-5313-0190-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "dan", - translationId: "dan1931", - languageName: "Dansk", - languageNameInEnglish: "Danish", - dialect: null, - homeDomain: "ebible.org", - title: "Hellig Bibel", - description: "The Holy Bible in Danish (OT 1931, NT 1907)", - Redistributable: true, - Copyright: "Copyright \u00a9 1907, 1931 Det Danske Bibelselskab", - UpdateDate: "2021-07-19", - publicationURL: "http://ebible.org/dan1931/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23211, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DANDET", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dan1931eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Danish Bible 1931", - PODISBN: "978-1-5313-0191-0", - script: "Latin", - sourceDate: "2019-10-26", - }, - { - languageCode: "ded", - translationId: "ded", - languageName: "Dedua", - languageNameInEnglish: "Dedua", - dialect: null, - homeDomain: "png.bible", - title: "Yoac kekehagocac Dzadzahac gboria nga Mitiyegec", - description: "The New Testament and Psalms in the Dedua Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/ded/", - OTbooks: 1, - OTchapters: 150, - OTverses: 2460, - NTbooks: 27, - NTchapters: 260, - NTverses: 7831, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DEDWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ded2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Dedua NT+Psalms", - PODISBN: "978-1-5313-0192-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "des", - translationId: "des", - languageName: "Desano", - languageNameInEnglish: "Desano", - dialect: null, - homeDomain: "ebible.org", - title: "Go\u00e3m\u0289 Yare Wererip\u0289", - description: "Desano: Go\u00e3m\u0289 Yare Wererip\u0289 New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/des/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7744, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DESWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "des2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Desano: Go\u00e3m\u0289 Yare Wererip\u0289 New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "deu", - translationId: "deu1912", - languageName: "Deutsch", - languageNameInEnglish: "German, Standard", - dialect: null, - homeDomain: "ebible.org", - title: "Luther Bibel 1912", - description: "The Holy Bible in German, Luther 1912", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2014-08-21", - publicationURL: "http://ebible.org/deu1912/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GERL12", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "deu1912eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "German Luther Bible 1912", - PODISBN: "978-1-5313-0193-4", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "deu", - translationId: "deu1951", - languageName: "Deutsch", - languageNameInEnglish: "German, Standard", - dialect: null, - homeDomain: "ebible.org", - title: "Die Schlachter-Bibel 1951", - description: "The Holy Bible in German, Schlachter 1951 version", - Redistributable: true, - Copyright: "Copyright \u00a9 1951 Genfer Bibelgeschellschaft (Geneva Bible Society)", - UpdateDate: "2022-03-30", - publicationURL: "http://ebible.org/deu1951/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DEUSCH", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "deu1951eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "German Schlachter Bible 1951", - PODISBN: null, - script: "Latin", - sourceDate: "2018-11-15", - }, - { - languageCode: "deu", - translationId: "deuelo", - languageName: "Deutsch", - languageNameInEnglish: "German, Standard", - dialect: null, - homeDomain: "ebible.org", - title: "Darby Unrevidierte Elberfelder", - description: "The Holy Bible in German, Unrevised Elberfelder 1905", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2021-01-19", - publicationURL: "http://ebible.org/deuelo/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DEUELO", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "deuelo1905eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "German Unrevised Elberfelder Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "deu", - translationId: "deutkw", - languageName: "Deutsch", - languageNameInEnglish: "German, Standard", - dialect: null, - homeDomain: "ebible.org", - title: "Textbibel von Kautzsch und Weizs\u00e4cker", - description: "The Holy Bible in German, translation by Kautzsch und Weizs\u00e4cker 1906", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2018-12-19", - publicationURL: "http://ebible.org/deutkw/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23206, - NTbooks: 27, - NTchapters: 260, - NTverses: 7951, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DEUTKW", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "deutkw1906eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "German Textbibel", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "dgc", - translationId: "dgc", - languageName: "Casiguran Dumagat Agta", - languageNameInEnglish: "Agta, Casiguran Dumagat", - dialect: null, - homeDomain: "ebible.org", - title: "Bigu a tipan: I mahusay a baheta para ta panahun tam", - description: "New Testament in Agta, Casiguran Dumagat", - Redistributable: true, - Copyright: "Copyright \u00a9 1979 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/dgc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7852, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DGCWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dgc1979eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Casiguran Dumagat Agta NT", - PODISBN: "978-1-5313-0195-8", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "dgr", - translationId: "dgrDOGNT", - languageName: "Dogrib", - languageNameInEnglish: "Dogrib", - dialect: null, - homeDomain: "ebible.org", - title: "N\u00f2\u0328hts\u0131\u0328\u0328 N\u0131\u0328\u0328ht\u0142'\u00e8", - description: - "Dogrib: Dogrib Genesis & New Testament New Testament & Portions of Old Testament", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Canadian Bible Society", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/dgrDOGNT/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1526, - NTbooks: 27, - NTchapters: 260, - NTverses: 7891, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DGRCBS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dgrDOG2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Dogrib Bible", - PODISBN: "978-1-5313-0196-5", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "dgz", - translationId: "dgz", - languageName: "Daga", - languageNameInEnglish: "Daga", - dialect: null, - homeDomain: "png.bible", - title: "Daga New Testament", - description: "The New Testament in the Daga Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1974, 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/dgz/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7857, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DGZWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dgz2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Daga Bible", - PODISBN: "978-1-5313-0197-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "dhg", - translationId: "dhg", - languageName: "Wangurri", - languageNameInEnglish: "Djangu", - dialect: null, - homeDomain: "ebible.org", - title: "Djesuwu\u014b \u014buwakurru dh\u00e4wu M\u00e4kku\u014b wukirriwuy", - description: "The Gospel of Mark in the Djangu language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators", - UpdateDate: "2022-10-28", - publicationURL: "http://ebible.org/dhg/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 2, - NTchapters: 17, - NTverses: 638, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DHGWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dhg2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Djangu Mark", - PODISBN: null, - script: "Latin", - sourceDate: "2022-10-28", - }, - { - languageCode: "dhg", - translationId: "dhgduwadha", - languageName: "Dhuwa-Dha\u014bu'mi", - languageNameInEnglish: "Djangu", - dialect: "Dhuwa-Dha\u014bu'mi", - homeDomain: "ebible.org", - title: "Dhuwa Dha\u014bu'mi M\u00e4k", - description: - "The Gospel of Mark in the Dhuwa-Dha\u014bu'mi dialect of the Djangu language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators", - UpdateDate: "2021-11-12", - publicationURL: "http://ebible.org/dhgduwadha/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 16, - NTverses: 631, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DHGDUW", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dhgdhuwa2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Dhuwa-Dha\u014bu'mi Mark", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "mbd", - translationId: "did", - languageName: "Dibabawon Manobo", - languageNameInEnglish: "Dibabawon Manobo", - dialect: null, - homeDomain: "ebible.org", - title: "Dibabawon Manobo texts", - description: "Manobo, Dibabawon: Dibabawon Manobo texts New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1988 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/did/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7828, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DIDWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "did1988eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Manobo, Dibabawon: Dibabawon Manobo texts New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "dif", - translationId: "dif", - languageName: "Dieri", - languageNameInEnglish: "Dieri", - dialect: null, - homeDomain: "ebible.org", - title: "TESTAMENTA MARRA", - description: "The New Testament in the Dieri language of Australia", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2019-08-20", - publicationURL: "http://ebible.org/dif/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DIFLUT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dif1897eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Dieri NT", - PODISBN: null, - script: "Latin", - sourceDate: "2019-08-21", - }, - { - languageCode: "dig", - translationId: "dig", - languageName: "Digo", - languageNameInEnglish: "Chidigo", - dialect: null, - homeDomain: "ebible.org", - title: "Digo", - description: "Chidigo: Digo (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Bible Translation and Literacy", - UpdateDate: "2020-11-24", - publicationURL: "http://ebible.org/dig/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23106, - NTbooks: 27, - NTchapters: 260, - NTverses: 7911, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DIGWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dig2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Digo Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-25", - }, - { - languageCode: "dik", - translationId: "dikNT", - languageName: "Dinka, Southwestern", - languageNameInEnglish: "Dinka, Southwestern", - dialect: null, - homeDomain: "ebible.org", - title: "L\u00ebk yam", - description: "New Testament in Dinka, Southwestern (SU:dik:Dinka, Southwestern)", - Redistributable: true, - Copyright: "Copyright \u00a9 2006 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/dikNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7906, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DIKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dik2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Southwestern Dinka NT", - PODISBN: "978-1-5313-0198-9", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "div", - translationId: "div", - languageName: "Dhivehi", - languageNameInEnglish: "Dhivehi", - dialect: null, - homeDomain: "ebible.org", - title: "\u0786\u07a8\u078c\u07a7\u0784\u07aa\u078d\u07b0 \u0789\u07aa\u07a4\u07a6\u0787\u07b0\u078b\u07a6\u0790\u07b0", - description: - "Maldivian: \u0786\u07a8\u078c\u07a7\u0784\u07aa\u078d\u07b0 \u0789\u07aa\u07a4\u07a6\u0787\u07b0\u078b\u07a6\u0790\u07b0 (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/div/", - OTbooks: 7, - OTchapters: 184, - OTverses: 5186, - NTbooks: 13, - NTchapters: 131, - NTverses: 4546, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DIVWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "div2019eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "FreeSerif", - shortTitle: - "Maldivian: \u0786\u07a8\u078c\u07a7\u0784\u07aa\u078d\u07b0 \u0789\u07aa\u07a4\u07a6\u0787\u07b0\u078b\u07a6\u0790\u07b0 (Bible)", - PODISBN: null, - script: "Thaana", - sourceDate: "2020-11-17", - }, - { - languageCode: "dji", - translationId: "dji", - languageName: "Djinang", - languageNameInEnglish: "Djinang", - dialect: null, - homeDomain: "ebible.org", - title: "Djinang Bible", - description: "Portions of the Holy Bible in the Djinang language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1985 Wycliffe Bible Translators", - UpdateDate: "2022-10-27", - publicationURL: "http://ebible.org/dji/", - OTbooks: 1, - OTchapters: 31, - OTverses: 801, - NTbooks: 1, - NTchapters: 5, - NTverses: 103, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DJIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dji1985eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Djinang Bible Portions", - PODISBN: null, - script: "Latin", - sourceDate: "2022-10-27", - }, - { - languageCode: "djj", - translationId: "djj", - languageName: "Djeebbana", - languageNameInEnglish: "Djeebbana", - dialect: null, - homeDomain: "ebible.org", - title: "Djeebbana Christmas Story", - description: "Part of Luke 2 in the Djeebbana language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators", - UpdateDate: "2021-11-24", - publicationURL: "http://ebible.org/djj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 1, - NTverses: 5, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DJJWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "djj2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Djeebbana Christmas Story", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-24", - }, - { - languageCode: "djk", - translationId: "djkNT", - languageName: "Eastern Maroon Creole", - languageNameInEnglish: "Eastern Maroon Creole", - dialect: null, - homeDomain: "ebible.org", - title: "Beibel: okanisi tongo", - description: "New Testament in Eastern Maroon Creole (NS:djk:Eastern Maroon Creole)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/djkNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7877, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DJKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "djk2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Eastern Maroon Creole NT", - PODISBN: "978-1-5313-0199-6", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "djr", - translationId: "djr", - languageName: "Djambarrpuy\u014bu", - languageNameInEnglish: "Djambarrpuyngu", - dialect: null, - homeDomain: "ebible.org", - title: "God-Wa\u014barrwu Wal\u014bamirr Dh\u00e4ruk", - description: "The New Testament in the Djambarrpuyngu language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Bible Society of Australia", - UpdateDate: "2019-07-08", - publicationURL: "http://ebible.org/djr/", - OTbooks: 1, - OTchapters: 10, - OTverses: 162, - NTbooks: 27, - NTchapters: 260, - NTverses: 7774, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DJRBIB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "djr2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Djambarrpuyngu NT", - PODISBN: null, - script: "Latin", - sourceDate: "2022-06-28", - }, - { - languageCode: "dnj", - translationId: "dnj", - languageName: "Dan", - languageNameInEnglish: "Dan", - dialect: "Western", - homeDomain: "ebible.org", - title: "'WUN S\u00cb \u2011NA\u0186 'S\u00cb\u00cbDH\u0190", - description: "Dan: 'WUN S\u00cb \u2011NA\u0186 'S\u00cb\u00cbDH\u0190 New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1991 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/dnj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7912, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DNJWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dnj1991eb", - rodCode: 298.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Dan: 'WUN S\u00cb \u2011NA\u0186 'S\u00cb\u00cbDH\u0190 New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "dob", - translationId: "dob", - languageName: "Dobu", - languageNameInEnglish: "Dobu", - dialect: null, - homeDomain: "png.bible", - title: "Loina Tabu Auwauna", - description: "The New Testament in the Dobu Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1985 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/dob/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7897, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DOBPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dob1985eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Dobu NT", - PODISBN: "978-1-5313-0200-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "dop", - translationId: "dop", - languageName: "Lokpa", - languageNameInEnglish: "Lukpa", - dialect: null, - homeDomain: "ebible.org", - title: "PIIPILI \u0196S\u0186 T\u0186M TAK\u018eLA\u0194A", - description: "Portions of the Holy Bible in the Lokpa language of Benin", - Redistributable: true, - Copyright: "Copyright \u00a9 1999 SIM", - UpdateDate: "2017-10-16", - publicationURL: "http://ebible.org/dop/", - OTbooks: 39, - OTchapters: 732, - OTverses: 17088, - NTbooks: 27, - NTchapters: 222, - NTverses: 6604, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DOPSIM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dop1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Lokpa Bible", - PODISBN: "978-1-5313-0201-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "dov", - translationId: "dov", - languageName: "Toka-Leya-Dombe", - languageNameInEnglish: "Dombe", - dialect: null, - homeDomain: "ebible.org", - title: "Dombe New Testament", - description: "The New Testament in the Dombe language of Zimbabwe", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door43 World Missions Community", - UpdateDate: "2020-07-06", - publicationURL: "http://ebible.org/dov/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DOVD43", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dov2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Dombe NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-07-07", - }, - { - languageCode: "dud", - translationId: "dud", - languageName: "Hun-Saare", - languageNameInEnglish: "Hun-Saare", - dialect: null, - homeDomain: "ebible.org", - title: "ut-Hun New Testament", - description: "Hun-Saare: ut-Hun New Testament New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/dud/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7899, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DUDWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dud2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Hun-Saare: ut-Hun New Testament New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-18", - }, - { - languageCode: "due", - translationId: "due", - languageName: null, - languageNameInEnglish: "Agta, Umiray Dumaget", - dialect: null, - homeDomain: "ebible.org", - title: "I bowon a pagpakikasungdu", - description: "Agta, Umiray Dumaget: I bowon a pagpakikasungdu (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 1977 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-10", - publicationURL: "http://ebible.org/due/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7909, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DUEWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "due1977eb", - rodCode: null, - textDirection: "ltr", - downloadable: false, - font: "Gentium", - shortTitle: "Agta, Umiray Dumaget: I bowon a pagpakikasungdu (New Testament)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-11", - }, - { - languageCode: "duo", - translationId: "duo", - languageName: null, - languageNameInEnglish: "Agta, Dupaninan", - dialect: null, - homeDomain: "ebible.org", - title: "Agta, Dupaninan", - description: "Agta, Dupaninan: Agta, Dupaninan (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-10", - publicationURL: "http://ebible.org/duo/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7805, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DUOWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "duo2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Agta, Dupaninan: Agta, Dupaninan (New Testament)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-11", - }, - { - languageCode: "dwr", - translationId: "dwrENT", - languageName: "Dawro", - languageNameInEnglish: "Dawro", - dialect: null, - homeDomain: "ebible.org", - title: "Ooratha Caaquwaa", - description: "New Testament in Dawro (ET:dwr:Dawro)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/dwrENT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7805, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DWRENT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dwrE2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Abyssinica SIL", - shortTitle: "Dawro NT (Ethoipic script)", - PODISBN: "978-1-5313-0202-3", - script: "Ethiopic", - sourceDate: "2014-04-23", - }, - { - languageCode: "dwr", - translationId: "dwrNT", - languageName: "Dawro", - languageNameInEnglish: "Dawro", - dialect: null, - homeDomain: "ebible.org", - title: "Ooratha Caaquwaa", - description: "New Testament in Dawro (ET:dwr:Dawro)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 The Word for the World", - UpdateDate: "2019-12-29", - publicationURL: "http://ebible.org/dwrNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7805, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DWRTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dwr2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Dawro NT (Latin script)", - PODISBN: "978-1-5313-0203-0", - script: "Latin", - sourceDate: "2019-12-29", - }, - { - languageCode: "dww", - translationId: "dww", - languageName: "Dawawa", - languageNameInEnglish: "Dawawa", - dialect: null, - homeDomain: "png.bible", - title: "Vari Verenama", - description: "The New Testament in the Dawawa Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/dww/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7895, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DWWTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dww2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Dawawa NT", - PODISBN: "978-1-5313-0204-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "dwy", - translationId: "dwy", - languageName: "Dhuwaya", - languageNameInEnglish: "Dhuwaya", - dialect: null, - homeDomain: "ebible.org", - title: "Djesuwala\u014buwuy latju\ua78c dh\u00e4wu\ua78c Markku\u014bu wukirriwuy", - description: "The Gospel According to Mark in the Dhuwaya language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Bible Society of Australia", - UpdateDate: "2021-11-12", - publicationURL: "http://ebible.org/dwy/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 2, - NTchapters: 32, - NTverses: 1056, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DWYBSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dwy2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Dhuwaya Mark", - PODISBN: null, - script: "Latin", - sourceDate: "2022-09-30", - }, - { - languageCode: "dyi", - translationId: "dyi", - languageName: "Djimini Senoufo", - languageNameInEnglish: "Djimini Senoufo", - dialect: null, - homeDomain: "ebible.org", - title: "Bibulu Jinmiire ni", - description: "S\u00e9noufo, Djimini: Bibulu Jinmiire ni Bible", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/dyi/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23196, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DYIWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dyi2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "S\u00e9noufo, Djimini: Bibulu Jinmiire ni Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "dyu", - translationId: "dyu", - languageName: "Julakan", - languageNameInEnglish: "Julakan", - dialect: null, - homeDomain: "ebible.org", - title: "Biblu Ala ta Kuma", - description: "Jula: Biblu Ala ta Kuma Bible", - Redistributable: false, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/dyu/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23212, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "DYUWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "dyu2013eb", - rodCode: 4974.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Jula Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "ebk", - translationId: "ebk", - languageName: "Eastern Bontok", - languageNameInEnglish: "Bontok, Eastern", - dialect: null, - homeDomain: "ebible.org", - title: "Nan kalen apo Dios (Nan fiar\u00fa ay turag)", - description: "New Testament in Bontok, Eastern", - Redistributable: true, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/ebk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7946, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "EBKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ebk2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Eastern Bontok NT", - PODISBN: "978-1-5313-0205-4", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "eko", - translationId: "eko", - languageName: "Kote", - languageNameInEnglish: "Kote", - dialect: null, - homeDomain: "ebible.org", - title: "Kote New Testament", - description: "Portions of the Holy Bible in the Kote Language of Mozambique", - Redistributable: true, - Copyright: "Copyright \u00a9 2005-2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-06-30", - publicationURL: "http://ebible.org/eko/", - OTbooks: 3, - OTchapters: 75, - OTverses: 2123, - NTbooks: 6, - NTchapters: 104, - NTverses: 4227, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "EKOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "eko2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kote Bible", - PODISBN: "978-1-5313-0206-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "emi", - translationId: "emi", - languageName: "Mussau-Emira", - languageNameInEnglish: "Mussau-Emira", - dialect: null, - homeDomain: "png.bible", - title: "Mussau-Emira Bible", - description: "Portions of the Holy Bible in the Mussau-Emira Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2006, 2008, 2013, 2016, 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2018-11-09", - publicationURL: "http://png.bible/emi/", - OTbooks: 2, - OTchapters: 8, - OTverses: 133, - NTbooks: 27, - NTchapters: 260, - NTverses: 7931, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "EMIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "emi2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Mussau-Emira Bible", - PODISBN: "978-1-5313-0207-8", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "emp", - translationId: "empNTpo", - languageName: "Ember\u00e1, Northern", - languageNameInEnglish: "Ember\u00e1, Northern", - dialect: null, - homeDomain: "ebible.org", - title: "\u00c3c\u00f5r\u1ebd Bed\u0336ea", - description: "New Testament in Ember\u00e1, Northern (PM:emp:Ember\u00e1, Northern)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-23", - publicationURL: "http://ebible.org/empNTpo/", - OTbooks: 17, - OTchapters: 211, - OTverses: 5237, - NTbooks: 27, - NTchapters: 260, - NTverses: 7752, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "EMPWYI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "emp2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Northern Ember\u00e1 NT", - PODISBN: "978-1-5313-0208-5", - script: "Latin", - sourceDate: "2014-04-24", - }, - { - languageCode: "eng", - translationId: "engamp", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "eBible.org", - title: "The Amplified Bible (2015)", - description: "The Amplified Bible in English, 2015 edition", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 The Lockman Foundation", - UpdateDate: "2018-12-16", - publicationURL: "http://eBible.org/engamp/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGAMP", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engampeb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: false, - font: "FreeSerif", - shortTitle: "Amplified Bible 2015", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-30", - }, - { - languageCode: "eng", - translationId: "engaoi", - languageName: "English", - languageNameInEnglish: "English", - dialect: null, - homeDomain: "ebible.org", - title: "Anindilyakwa English Bible", - description: - "Portions of the Holy Bible in English easy for Anindilyakwa speakers in Australia to understand.", - Redistributable: true, - Copyright: "Copyright \u00a9 2021 Bible Society Australia", - UpdateDate: "2021-11-23", - publicationURL: "http://ebible.org/engaoi/", - OTbooks: 2, - OTchapters: 54, - OTverses: 1485, - NTbooks: 4, - NTchapters: 41, - NTverses: 1472, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGAOI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engaoi2021eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Anindilyakwa English Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-24", - }, - { - languageCode: "eng", - translationId: "eng-asv", - languageName: "English", - languageNameInEnglish: "English", - dialect: "Archaic American", - homeDomain: "ebible.org", - title: "American Standard Version (1901)", - description: "The American Standard Version of the Holy Bible, first published in 1901.", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/eng-asv/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGASV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engASV1901eb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "American Standard Version (1901)", - PODISBN: "978-1-5313-0210-8", - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "eng", - translationId: "engasvbt", - languageName: "English", - languageNameInEnglish: "English", - dialect: "Archaic American", - homeDomain: "ebible.org", - title: "American Standard Version Byzantine Text", - description: - "The Holy Bible with Apocrypha, American Standard Version conformed to the Byzantine Text New Testament", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/engasvbt/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 18, - DCchapters: 216, - DCverses: 6744, - FCBHID: "ENGABT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engasvbt2021eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "ASV Byzantine Text", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "eng", - translationId: "engBBE", - languageName: "English", - languageNameInEnglish: "English", - dialect: "simple British", - homeDomain: "ebible.org", - title: "Bible in Basic English", - description: "The Bible in Basic English", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-04-17", - publicationURL: "http://ebible.org/engBBE/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGBBE", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engBBE1964eb", - rodCode: 3222.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Bible in Basic English", - PODISBN: "978-1-5313-0221-4", - script: "Latin", - sourceDate: "2018-08-29", - }, - { - languageCode: "eng", - translationId: "eng-Brenton", - languageName: "English", - languageNameInEnglish: "English", - dialect: "archaic British", - homeDomain: "ebible.org", - title: "Brenton Septuagint Translation", - description: - "Translation of the Greek Septuagint into English by Sir Lancelot Charles Lee Brenton", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2021-06-30", - publicationURL: "http://ebible.org/eng-Brenton/", - OTbooks: 37, - OTchapters: 921, - OTverses: 22970, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 16, - DCchapters: 196, - DCverses: 6034, - FCBHID: "ENGBRE", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engBrent1851eb", - rodCode: 3222.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Brenton English Septuagint", - PODISBN: "978-1-5313-0209-2", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "eng", - translationId: "engDBY", - languageName: "English", - languageNameInEnglish: "English", - dialect: "archaic British", - homeDomain: "ebible.org", - title: "Darby Translation", - description: - "The Holy Scriptures, a New Translation from the Original Languages by J. N. Darby", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2019-11-15", - publicationURL: "http://ebible.org/engDBY/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGDBY", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engDBY1884eb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Darby Translation", - PODISBN: "978-1-5313-0222-1", - script: "Latin", - sourceDate: "2019-11-16", - }, - { - languageCode: "eng", - translationId: "engDRA", - languageName: "English", - languageNameInEnglish: "English", - dialect: "archaic American", - homeDomain: "ebible.org", - title: "Douay-Rheims 1899", - description: - "The Holy Bible in English, Douay-Rheims American Edition of 1899, translated from the Latin Vulgate", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-11-03", - publicationURL: "http://ebible.org/engDRA/", - OTbooks: 39, - OTchapters: 937, - OTverses: 23487, - NTbooks: 27, - NTchapters: 260, - NTverses: 7951, - DCbooks: 7, - DCchapters: 137, - DCverses: 4373, - FCBHID: "ENGDRV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engDRA1899eb", - rodCode: 3222.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Douay-Rheims 1899", - PODISBN: "978-1-5313-0223-8", - script: "Latin", - sourceDate: "2022-11-03", - }, - { - languageCode: "eng", - translationId: "engemtv", - languageName: "English", - languageNameInEnglish: "English", - dialect: null, - homeDomain: "ebible.org", - title: "English Majority Text Version", - description: "The New Testament, English Majority Text Version", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Dr. Paul W. Esposito", - UpdateDate: "2020-12-20", - publicationURL: "http://ebible.org/engemtv/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGEMTV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engemtveb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "English Majority Text Version", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "eng", - translationId: "engerv", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "ebible.org", - title: "Easy-to-Read Version", - description: "The Holy Bible, Easy-to-Read Version", - Redistributable: false, - Copyright: "Copyright \u00a9 1987, 1999, 2006 Bible League International", - UpdateDate: "2018-08-30", - publicationURL: "http://ebible.org/engerv/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22826, - NTbooks: 27, - NTchapters: 260, - NTverses: 7901, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGERV", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engerv2006eb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Easy-to-Read Version", - PODISBN: null, - script: "Latin", - sourceDate: "2018-08-30", - }, - { - languageCode: "eng", - translationId: "engf35", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "ebible.org", - title: "The New Testament with Commentary", - description: "The New Testament with Commentary according to Family 35, 2nd Edition", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wilbur N. Pickering, ThM, PhD", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/engf35/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGF35", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engf35eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Family 35 NT", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "eng", - translationId: "engfbv", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "ebible.org", - title: "Free Bible Version", - description: - "The New Testament and Psalms in the Free Bible Version translation in American English", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 Dr. Jonathan Gallagher", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/engfbv/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGFBV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engfbv2018eb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Free Bible Version", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "eng", - translationId: "eng-glw", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "ebible.org", - title: "God's Living Word", - description: - "God's Living Word\u2014a translation of John and John's Letters into modern English", - Redistributable: true, - Copyright: "Copyright \u00a9 1996 Michael Paul Johnson", - UpdateDate: "2018-08-24", - publicationURL: "http://ebible.org/eng-glw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 4, - NTchapters: 28, - NTverses: 1012, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGGLW", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engGLW1996eb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "God's Living Word", - PODISBN: "978-1-5313-0211-5", - script: "Latin", - sourceDate: "2018-08-24", - }, - { - languageCode: "eng", - translationId: "enggnv", - languageName: "English", - languageNameInEnglish: "English", - dialect: "Old", - homeDomain: "ebible.org", - title: "Geneva Bible 1599", - description: "The Geneva Bible in Old English of 1599", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2018-11-11", - publicationURL: "http://ebible.org/enggnv/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23137, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGGNV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "enggnv1599eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Geneva Bible 1599", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "eng", - translationId: "enggw", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "ebible.org", - title: "GOD'S WORD", - description: "The Holy Bible in English: GOD'S WORD translation", - Redistributable: false, - Copyright: - "Copyright \u00a9 1995, 2003, 2013, 2014, 2019, 2020 God\u2019s Word to the Nations Mission Society, Inc.", - UpdateDate: "2022-12-14", - publicationURL: "http://ebible.org/enggw/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23141, - NTbooks: 27, - NTchapters: 260, - NTverses: 7943, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGGWG", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "enggw2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "English: GOD'S WORD", - PODISBN: null, - script: "Latin", - sourceDate: "2022-12-14", - }, - { - languageCode: "eng", - translationId: "engjps", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "ebible.org", - title: "JPS TaNaKH 1917", - description: - "The Jewish Bible (Old Testament) in English, published by the Jewish Publication Society in 1917", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2018-11-12", - publicationURL: "http://ebible.org/engjps/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGJPS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engjps1917eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "JPS TaNaKH 1917", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "eng", - translationId: "eng-kjv", - languageName: "English", - languageNameInEnglish: "English", - dialect: "archaic British", - homeDomain: "ebible.org", - title: "King James Version + Apocrypha", - description: - "The King James Version or Authorized Version of the Holy Bible, using the standardized text of 1769, with Apocrypha/Deuterocanon", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-10-27", - publicationURL: "http://ebible.org/eng-kjv/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 14, - DCchapters: 173, - DCverses: 5720, - FCBHID: "ENGKJA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engKJV1769eb", - rodCode: 3222.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "King James Version + Apocrypha", - PODISBN: "978-1-5313-0212-2", - script: "Latin", - sourceDate: "2022-10-30", - }, - { - languageCode: "eng", - translationId: "eng-kjv2006", - languageName: "English", - languageNameInEnglish: "English", - dialect: "archaic British", - homeDomain: "ebible.org", - title: "King James (Authorized) Version", - description: - "The King James Version or Authorized Version of the Holy Bible, using the standardized text of 1769, protocanon only, with Strong's numbers added.", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-10-27", - publicationURL: "http://ebible.org/eng-kjv2006/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGKJV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engKJV2006eb", - rodCode: 3222.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "King James Version", - PODISBN: "978-1-5313-0213-9", - script: "Latin", - sourceDate: "2022-10-30", - }, - { - languageCode: "eng", - translationId: "engkjvcpb", - languageName: "English", - languageNameInEnglish: "English", - dialect: null, - homeDomain: "ebible.org", - title: "KJV Cambridge Paragraph Bible", - description: - "The King James Version or Authorized Version of the Holy Bible, Cambridge Paragraph Bible edition", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-12-20", - publicationURL: "http://ebible.org/engkjvcpb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 14, - DCchapters: 172, - DCverses: 5720, - FCBHID: "ENGCPB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engkjvcpbeb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "KJV Cambridge Paragraph", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "eng", - translationId: "englee", - languageName: "English", - languageNameInEnglish: "English", - dialect: "archaic British", - homeDomain: "ebible.org", - title: "Isaac Leeser Tanakh", - description: "The Isaac Leeser Tanakh (Jewish Bible)", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-10-14", - publicationURL: "http://ebible.org/englee/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGLEE", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "englee1853eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Leeser Tanakh", - PODISBN: null, - script: "Latin", - sourceDate: "2019-10-25", - }, - { - languageCode: "eng", - translationId: "englsv", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "eBible.org", - title: "Literal Standard Version", - description: "The Holy Bible in English, Literal Standard Version", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Covenant Press", - UpdateDate: "2023-02-03", - publicationURL: "http://eBible.org/englsv/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGLSV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "englsv2020eb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "English LSV", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "eng", - translationId: "eng-lxx2012", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "ebible.org", - title: "LXX2012: Septuagint in American English 2012", - description: - "The Septuagint with Apocrypha, translated from Greek to English by Sir Lancelot C. L. Brenton and published in 1885, with some language updates (American English)", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2023-02-06", - publicationURL: "http://ebible.org/eng-lxx2012/", - OTbooks: 39, - OTchapters: 930, - OTverses: 22882, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 15, - DCchapters: 175, - DCverses: 5449, - FCBHID: "ENGLXX", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engLXX2012eb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "LXX2012 U. S. English", - PODISBN: "978-1-5313-0214-6", - script: "Latin", - sourceDate: "2023-02-06", - }, - { - languageCode: "eng", - translationId: "englxxup", - languageName: "English", - languageNameInEnglish: "English", - dialect: "Mixed", - homeDomain: "ebible.org", - title: "Updated Brenton English Septuagint", - description: - "Spelling and formatting update of the Brenton English Septuagint with Apocrypha", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-07-17", - publicationURL: "http://ebible.org/englxxup/", - OTbooks: 36, - OTchapters: 908, - OTverses: 22561, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 16, - DCchapters: 196, - DCverses: 6034, - FCBHID: "ENGBOY", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engbrentupeb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Updated Brenton English Septuagint", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "eng", - translationId: "engnasb", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "eBible.org", - title: "New American Standard Bible", - description: "New American Standard Bible (1995)", - Redistributable: false, - Copyright: - "Copyright \u00a9 1960, 1962, 1963, 1968, 1971, 1972, 1973, 1975, 1977, 1995 The Lockman Foundation, La Habra, Calif.", - UpdateDate: "2018-12-13", - publicationURL: "http://eBible.org/engnasb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGNAS", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engnasbeb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: false, - font: "DejaVu Serif", - shortTitle: "NASB 1995", - PODISBN: null, - script: "Latin", - sourceDate: "2021-07-21", - }, - { - languageCode: "eng", - translationId: "engnet", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "ebible.org", - title: "NET Bible", - description: "NET Bible\u00ae, New English Translation (NET)", - Redistributable: true, - Copyright: "Copyright \u00a9 1996-2016 Biblical Studies Press, L. L. C.", - UpdateDate: "2021-05-19", - publicationURL: "http://ebible.org/engnet/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGNET", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engNET2016eb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "NET Bible", - PODISBN: "978-1-5313-0793-6", - script: "Latin", - sourceDate: "2022-09-05", - }, - { - languageCode: "eng", - translationId: "engnna", - languageName: "English", - languageNameInEnglish: "English", - dialect: null, - homeDomain: "ebible.org", - title: "Nyangumarta English Bible", - description: - "Portions of the Holy Bible in English, translated to be a companion to the Nyangumarta Bible", - Redistributable: true, - Copyright: "Copyright \u00a9 1980-2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-20", - publicationURL: "http://ebible.org/engnna/", - OTbooks: 8, - OTchapters: 50, - OTverses: 756, - NTbooks: 18, - NTchapters: 55, - NTverses: 622, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGNNA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engnna2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Nyangumarta English Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-04-07", - }, - { - languageCode: "eng", - translationId: "engnoy", - languageName: "English", - languageNameInEnglish: "English", - dialect: "archaic British", - homeDomain: "ebible.org", - title: "George Noyes Bible", - description: "The Holy Bible, translated into English by George Noyes (1869)", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2019-10-24", - publicationURL: "http://ebible.org/engnoy/", - OTbooks: 22, - OTchapters: 493, - OTverses: 10275, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGNOY", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engnoy1869eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Noyes Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2019-10-25", - }, - { - languageCode: "eng", - translationId: "engoebcw", - languageName: "English", - languageNameInEnglish: "English", - dialect: null, - homeDomain: "ebible.org", - title: "Open English Bible (Commonwealth Spelling)", - description: "The Holy Bible, Open English Bible translation, with Commonwealth spelling", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/engoebcw/", - OTbooks: 15, - OTchapters: 231, - OTverses: 3763, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGOE1", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engoebcweb", - rodCode: 3222.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Open English Bible (Commonwealth)", - PODISBN: "978-1-5313-0224-5", - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "eng", - translationId: "engoebus", - languageName: "English", - languageNameInEnglish: "English", - dialect: null, - homeDomain: "ebible.org", - title: "Open English Bible (U. S. spelling)", - description: "The Holy Bible, Open English Bible translation, U. S. spelling edition", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/engoebus/", - OTbooks: 15, - OTchapters: 231, - OTverses: 3763, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGOEB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engoebuseb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Open English Bible (US)", - PODISBN: "978-1-5313-0225-2", - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "eng", - translationId: "engoke", - languageName: "English", - languageNameInEnglish: "English", - dialect: null, - homeDomain: "ebible.org", - title: "Targum Onkelos Etheridge", - description: - "The Targums of Onkelos and Jonathan Ben Uzziel On the Pentateuch With The Fragments of the Jerusalem Targum From the Chaldee by J. W. Etheridge, M.A. First Published 1862-65.", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-12-20", - publicationURL: "http://ebible.org/engoke/", - OTbooks: 5, - OTchapters: 187, - OTverses: 5848, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGOKE", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engoke1865eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Targum Onkelos Etheridge", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "eng", - translationId: "engourb", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "ebible.org", - title: "One Unity Resource Bible", - description: - "The One Unity Resource Bible translation of the Holy Bible into American English with some transliterated Hebrew notations", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Thomas Robinson", - UpdateDate: "2016-10-03", - publicationURL: "http://ebible.org/engourb/", - OTbooks: 8, - OTchapters: 434, - OTverses: 10520, - NTbooks: 4, - NTchapters: 89, - NTverses: 3779, - DCbooks: 2, - DCchapters: 17, - DCverses: 931, - FCBHID: "ENGOUR", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engourb2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "One Unity Resource Bible", - PODISBN: "978-1-5313-0840-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "eng", - translationId: "engPEV", - languageName: "Aboriginal English", - languageNameInEnglish: "English", - dialect: "Australian Aboriginal", - homeDomain: "ebible.org", - title: "Plain English Version", - description: - "Portions of the Holy Bible in the Plain English Version translation for Australian Aboriginal people who speak English as a second language", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 The Plain English Project", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/engPEV/", - OTbooks: 4, - OTchapters: 60, - OTverses: 1121, - NTbooks: 21, - NTchapters: 192, - NTverses: 5042, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGPEV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engPEV2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Plain English Version", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "eng", - translationId: "eng-rv", - languageName: "English", - languageNameInEnglish: "English", - dialect: "archaic British", - homeDomain: "ebible.org", - title: "Revised Version with Apocrypha (1895)", - description: "The Revised Version of the Holy Bible (1895) with Apocrypha", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/eng-rv/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 14, - DCchapters: 173, - DCverses: 5776, - FCBHID: "ENGRV5", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engRV1895eb", - rodCode: 3222.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Revised Version", - PODISBN: "978-1-5313-0215-3", - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "eng", - translationId: "eng-t4t", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "ebible.org", - title: "Translation for Translators", - description: - "A Bible Translation for Bible Translators which makes implied information explicit in the text as an aid to the translator who may need that information to correctly translate into a particular language.", - Redistributable: true, - Copyright: "Copyright \u00a9 2008-2017 Ellis W. Deibler, Jr.", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/eng-t4t/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22769, - NTbooks: 27, - NTchapters: 260, - NTverses: 7871, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGT4T", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engT4T2014eb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Translation for Translators", - PODISBN: "978-1-5313-0216-0", - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "eng", - translationId: "engtcent", - languageName: "English", - languageNameInEnglish: "English", - dialect: null, - homeDomain: "ebible.org", - title: "Text-Critical English New Testament", - description: - "The New Testament based on the Byzantine Text with extensive text-critical footnotes", - Redistributable: true, - Copyright: "Copyright \u00a9 2022 Robert Adam Boyd", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/engtcent/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGTCE", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engtcent2022eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Text-Critical English NT", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "eng", - translationId: "engtnt", - languageName: "English", - languageNameInEnglish: "English", - dialect: "archaic British", - homeDomain: "ebible.org", - title: "Tyndale New Testament", - description: "The Tyndale New Testament (1534)", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-12-20", - publicationURL: "http://ebible.org/engtnt/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGTNT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engtnteb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tyndale NT", - PODISBN: null, - script: "Latin", - sourceDate: "2019-10-23", - }, - { - languageCode: "eng", - translationId: "eng-uk-lxx2012", - languageName: "English", - languageNameInEnglish: "English", - dialect: "British", - homeDomain: "ebible.org", - title: "LXX2012: Septuagint in British/International English 2012", - description: - "The Septuagint with Apocrypha, translated from Greek to English by Sir Lancelot C. L. Brenton and published in 1885, with some language updates (British/International English)", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2023-02-06", - publicationURL: "http://ebible.org/eng-uk-lxx2012/", - OTbooks: 39, - OTchapters: 930, - OTverses: 22882, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 15, - DCchapters: 175, - DCverses: 5449, - FCBHID: "ENGLXU", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engUKLXX2012eb", - rodCode: 3222.0, - textDirection: "ltr", - downloadable: true, - font: "FreeSerif", - shortTitle: "British English Septuagint 2012", - PODISBN: "978-1-5313-0217-7", - script: "Latin", - sourceDate: "2023-02-06", - }, - { - languageCode: "eng", - translationId: "engULB", - languageName: "English", - languageNameInEnglish: "English", - dialect: null, - homeDomain: "ebible.org", - title: "Unlocked Literal Bible", - description: "The Holy Bible in English, Unlocked Literal Bible translation", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Door43 World Missions Community", - UpdateDate: "2020-12-04", - publicationURL: "http://ebible.org/engULB/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23135, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engULB2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Unlocked Literal Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2019-06-13", - }, - { - languageCode: "eng", - translationId: "eng-web", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "ebible.org", - title: "World English Bible with Deuterocanon", - description: - "The World English Bible is a Public Domain translation of the Holy Bible into modern English. Includes Apocrypha/Deuterocanon.", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-12-29", - publicationURL: "http://ebible.org/eng-web/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 15, - DCchapters: 213, - DCverses: 6955, - FCBHID: "ENGWEB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engWEB2015eb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "World English Bible with Deuterocanon", - PODISBN: "978-1-5313-0218-4", - script: "Latin", - sourceDate: "2022-12-29", - }, - { - languageCode: "eng", - translationId: "eng-webbe", - languageName: "English", - languageNameInEnglish: "English", - dialect: "British", - homeDomain: "ebible.org", - title: "World English Bible British Edition with Deuterocanon", - description: - "The World English Bible British Edition is a Public Domain translation of the Holy Bible into contemporary British/International English. Includes Apocrypha/Deuterocanon.", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-09-27", - publicationURL: "http://ebible.org/eng-webbe/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 15, - DCchapters: 213, - DCverses: 6955, - FCBHID: "ENGWEU", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engWEBBE2015eb", - rodCode: 3222.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "World English Bible British Edition with Deuterocanon", - PODISBN: "978-1-5313-0220-7", - script: "Latin", - sourceDate: "2022-12-29", - }, - { - languageCode: "eng", - translationId: "eng-web-c", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "ebible.org", - title: "World English Bible (Catholic)", - description: "The World English Bible with Catholic Book Order", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-12-29", - publicationURL: "http://ebible.org/eng-web-c/", - OTbooks: 37, - OTchapters: 907, - OTverses: 22621, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 9, - DCchapters: 161, - DCverses: 4829, - FCBHID: "ENGWEBC", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engWEBc2015eb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "World English Bible (Catholic)", - PODISBN: "978-1-5313-0219-1", - script: "Latin", - sourceDate: "2022-12-29", - }, - { - languageCode: "eng", - translationId: "engwebp", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American", - homeDomain: "ebible.org", - title: "World English Bible", - description: - "The World English Bible is a Public Domain translation of the Holy Bible into modern English.", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-12-29", - publicationURL: "http://ebible.org/engwebp/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGWEBP", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engWEB2015peb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "World English Bible", - PODISBN: "978-1-5313-0226-9", - script: "Latin", - sourceDate: "2022-12-29", - }, - { - languageCode: "eng", - translationId: "engwebpb", - languageName: "English", - languageNameInEnglish: "English", - dialect: "British", - homeDomain: "ebible.org", - title: "World English Bible British Edition", - description: - "The World English Bible British Edition is a Public Domain translation of the Holy Bible into contemporary British/International English.", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-09-27", - publicationURL: "http://ebible.org/engwebpb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGWEBPB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engWEBBE2015peb", - rodCode: 3222.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "World English Bible British Edition", - PODISBN: "978-1-5313-0227-6", - script: "Latin", - sourceDate: "2022-12-29", - }, - { - languageCode: "eng", - translationId: "engwebster", - languageName: "English", - languageNameInEnglish: "English", - dialect: "archaic American", - homeDomain: "ebible.org", - title: "Noah Webster Bible", - description: - "The Holy Bible, Containing the Old and New Testaments, in the Common Version, with Amendments of the language by Noah Webster, LL.D.", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2019-10-22", - publicationURL: "http://ebible.org/engwebster/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGWBS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engwebster1833eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Webster Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2019-10-23", - }, - { - languageCode: "eng", - translationId: "engwmb", - languageName: "English", - languageNameInEnglish: "English", - dialect: "American Messianic", - homeDomain: "ebible.org", - title: "World Messianic Bible", - description: - "The World Messianic Bible is a Public Domain translation of the Holy Bible into modern English as spoken among Messianic Jews. It has also been called the World English Bible: Messianic Edition and the Hebrew Names Version.", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-09-27", - publicationURL: "http://ebible.org/engwmb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGWMB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engWMB2015eb", - rodCode: 25.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "World Messianic Bible", - PODISBN: "978-1-5313-0228-3", - script: "Latin", - sourceDate: "2022-12-29", - }, - { - languageCode: "eng", - translationId: "engwmbb", - languageName: "English", - languageNameInEnglish: "English", - dialect: "British Messianic", - homeDomain: "ebible.org", - title: "World Messianic Bible British Edition", - description: - "The World Messianic Bible British Edition is a Public Domain translation of the Holy Bible into modern English as spoken among Messianic Jews outside of the United States of America. This translation is also known as the World English Bible: British Messianic Edition.", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-09-27", - publicationURL: "http://ebible.org/engwmbb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGWMU", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engWMBB2015eb", - rodCode: 3222.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "World Messianic Bible British Edition", - PODISBN: "978-1-5313-0229-0", - script: "Latin", - sourceDate: "2022-09-28", - }, - { - languageCode: "eng", - translationId: "engwyc2017", - languageName: "English", - languageNameInEnglish: "English", - dialect: "Archaic", - homeDomain: "ebible.org", - title: "Wycliffe's Bible with Modern Spelling", - description: "English: Wycliffe's Bible Modern Spelling (with Deuterocanon)", - Redistributable: true, - Copyright: "Copyright \u00a9 2001,2010,2011,2012,2013,2015 Terry Noble", - UpdateDate: "2019-09-26", - publicationURL: "http://ebible.org/engwyc2017/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 14, - DCchapters: 157, - DCverses: 4906, - FCBHID: "ENGWYC2017", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engwyc2017eb", - rodCode: 3222.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "English: Wycliffe's Bible Modern Spelling (with Deuterocanon)", - PODISBN: null, - script: "Latin", - sourceDate: "2019-09-26", - }, - { - languageCode: "eng", - translationId: "engwyc2018", - languageName: "English", - languageNameInEnglish: "English", - dialect: "Archaic", - homeDomain: "ebible.org", - title: "Wycliffe's Bible with Modern Spelling (Enhanced)", - description: "English: Wycliffe's Bible Modern Spelling (Enhanced) (with Deuterocanon)", - Redistributable: true, - Copyright: "Copyright \u00a9 2001,2010,2011,2012,2013,2015 Terry Noble", - UpdateDate: "2019-09-25", - publicationURL: "http://ebible.org/engwyc2018/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 14, - DCchapters: 157, - DCverses: 4906, - FCBHID: "ENGWYC2018", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engwyc2018eb", - rodCode: 3222.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "English: Wycliffe's Bible Modern Spelling (Enhanced) (with Deuterocanon)", - PODISBN: null, - script: "Latin", - sourceDate: "2019-09-26", - }, - { - languageCode: "eng", - translationId: "engWycliffe", - languageName: "Middle English", - languageNameInEnglish: "English", - dialect: "Middle", - homeDomain: "ebible.org", - title: "Wycliffe Bible", - description: - "This is the Pentateuch and Gospels from The Holy Bible, containing the Old and New Testaments, with the apocryphal books, in the earliest English version made from the latin Vulgate by John Wycliffe and his followers. c.1395", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2016-11-08", - publicationURL: "http://ebible.org/engWycliffe/", - OTbooks: 5, - OTchapters: 187, - OTverses: 5843, - NTbooks: 4, - NTchapters: 89, - NTverses: 3779, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGW88", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engWycliffe1395eb", - rodCode: 3222.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Wycliffe Bible portions", - PODISBN: "978-1-5313-0845-2", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "eng", - translationId: "engylt", - languageName: "ENGLISH", - languageNameInEnglish: "English", - dialect: "archaic British", - homeDomain: "ebible.org", - title: "Young's Literal Translation", - description: "Young's Literal Translation of the Holy Bible", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2019-10-20", - publicationURL: "http://ebible.org/engylt/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGYLT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engylt1898eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Young's Literal Translation", - PODISBN: null, - script: "Latin", - sourceDate: "2019-10-21", - }, - { - languageCode: "enq", - translationId: "enq", - languageName: "Enga", - languageNameInEnglish: "Enga", - dialect: "Mae", - homeDomain: "png.bible", - title: "Enga Nutesamene Baipolo", - description: "The New Testament in the Enga language of Papua New Guinea, old translation", - Redistributable: true, - Copyright: "Copyright \u00a9 1988 The Bible Society of Papua New Guinea", - UpdateDate: "2015-02-04", - publicationURL: "http://png.bible/enq/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7648, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENQPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "enq1988eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Enga NT", - PODISBN: "978-1-5313-0230-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "enq", - translationId: "enq2", - languageName: "Enga", - languageNameInEnglish: "Enga", - dialect: "Mae", - homeDomain: "png.bible", - title: "Enga Baibolo Epapu Kapilyetae Doko", - description: - "Matthew, Mark, and part of Genesis in the Enga language of Papua New Guinea, revised translation", - Redistributable: true, - Copyright: "Copyright \u00a9 2014-2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-02-04", - publicationURL: "http://png.bible/enq2/", - OTbooks: 1, - OTchapters: 16, - OTverses: 343, - NTbooks: 2, - NTchapters: 44, - NTverses: 1668, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENQPN2", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "enq2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Enga Bible portions", - PODISBN: "978-1-5313-0231-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "epo", - translationId: "epo", - languageName: "Esperanto", - languageNameInEnglish: "Esperanto", - dialect: null, - homeDomain: "ebible.org", - title: "Londona Biblio", - description: "The Holy Bible in Esperanto (1910)", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-02-13", - publicationURL: "http://ebible.org/epo/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "EPOBFB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "epo1910eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Esperanto Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-02-13", - }, - { - languageCode: "eri", - translationId: "eri", - languageName: "Ogea", - languageNameInEnglish: "Ogea", - dialect: null, - homeDomain: "png.bible", - title: "ITOU NOMO HILOU BEELE", - description: "The New Testament in the Ogea language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-12-01", - publicationURL: "http://png.bible/eri/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7909, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ERIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "eri2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ogea NT", - PODISBN: "978-1-5313-0846-9", - script: "Latin", - sourceDate: "2022-05-28", - }, - { - languageCode: "ese", - translationId: "eseNT", - languageName: "Ese Ejja", - languageNameInEnglish: "Ese Ejja", - dialect: null, - homeDomain: "ebible.org", - title: "Eyacui\u00f1ajjija Esohui", - description: "New Testament in Ese Ejja (BL:ese:Ese Ejja)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-23", - publicationURL: "http://ebible.org/eseNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7850, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ESEWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ese2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Ese Ejja NT", - PODISBN: "978-1-5313-0232-0", - script: "Latin", - sourceDate: "2014-04-24", - }, - { - languageCode: "esg", - translationId: "esg", - languageName: null, - languageNameInEnglish: "Aheri Gondi", - dialect: null, - homeDomain: "eBible.org", - title: "Besta Kabur", - description: "Aheri Gondi: Besta Kabur (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-10", - publicationURL: "http://eBible.org/esg/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 16, - NTverses: 640, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ESGWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "esg2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Akshar Unicode", - shortTitle: "Aheri Gondi: Besta Kabur (Bible)", - PODISBN: null, - script: "Devanagari", - sourceDate: "2020-11-11", - }, - { - languageCode: "esk", - translationId: "eskNT", - languageName: "Inupiatun, Northwest Alaska", - languageNameInEnglish: "Northwest Alaska Eskimo", - dialect: null, - homeDomain: "ebible.org", - title: "Ipqitchuat Makpi\u0121aat - Agaayyutim Uqa\u0142hi I\u00f1upiatun", - description: "The New Testament in Northwest Alaska Eskimo", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/eskNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7928, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ESKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "esk2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Northwest Alaska Eskimo NT", - PODISBN: "978-1-5313-0233-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "etr", - translationId: "etr", - languageName: "Edolo", - languageNameInEnglish: "Edolo", - dialect: null, - homeDomain: "png.bible", - title: "Edolo Bible", - description: - "Ruth, Matthew, Mark, Acts, 1 & 2 Timothy, Titus, and John's Letters in the Edolo Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2010-2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/etr/", - OTbooks: 1, - OTchapters: 4, - OTverses: 77, - NTbooks: 10, - NTchapters: 113, - NTverses: 3984, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ETRTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "etr2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Edolo Bible", - PODISBN: "978-1-5313-0234-4", - script: "Latin", - sourceDate: "2022-10-04", - }, - { - languageCode: "ewe", - translationId: "ewe", - languageName: "e\u028begbe", - languageNameInEnglish: "e\u028begbe", - dialect: null, - homeDomain: "ebible.org", - title: "Biblica\u00ae Se a\u0256eke mebla Biblia zaza\u0303 o Agbenya La\u2122", - description: - "\u00c9w\u00e9: Biblica\u00ae Se a\u0256eke mebla Biblia zaza\u0303 o Agbenya La\u2122 (Bible) of Ghana", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Biblica, Inc.", - UpdateDate: "2021-11-15", - publicationURL: "http://ebible.org/ewe/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "EWEBIB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ewe2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "\u00c9w\u00e9 Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-06-20", - }, - { - languageCode: "faa", - translationId: "faa", - languageName: "Fasu", - languageNameInEnglish: "Fasu", - dialect: null, - homeDomain: "png.bible", - title: "Kotimo Kawe Someaka Masane Oyapo", - description: "The New Testament in the Fasu Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/faa/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7859, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "FAAWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "faa2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Fasu NT", - PODISBN: "978-1-5313-0235-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "fad", - translationId: "fad", - languageName: "Wagi", - languageNameInEnglish: "Wagi", - dialect: null, - homeDomain: "png.bible", - title: "Lukri N\u00e9 Kena", - description: "Wagi: Lukri N\u00e9 Kena Portions", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://png.bible/fad/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 24, - NTverses: 1147, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "FADWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "fad2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Wagi Luke", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-03", - }, - { - languageCode: "fai", - translationId: "fai", - languageName: "Faiwol", - languageNameInEnglish: "Faiwol", - dialect: null, - homeDomain: "png.bible", - title: "GOT WENG ABEM Alokso Abino Kalin", - description: "The New Testament in the Faiwol Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1995 Bible Society of Papua New Guinea", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/fai/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7948, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "FAIPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "fai1995eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Faiwol NT", - PODISBN: "978-1-5313-0236-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "far", - translationId: "far", - languageName: "Fataleka", - languageNameInEnglish: "Fataleka", - dialect: null, - homeDomain: "ebible.org", - title: "Farongoe Lea Ana Fataleka", - description: "The New Testament in the Fataleka language of the Solomon Islands", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-11-13", - publicationURL: "http://ebible.org/far/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7869, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "FARWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "far2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Fataleka New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2021-12-30", - }, - { - languageCode: "ffm", - translationId: "ffm", - languageName: "Maasina Fulfulde", - languageNameInEnglish: "Fulfulde, Maasina", - dialect: null, - homeDomain: "ebible.org", - title: "Aadi keyri: linjiila iisaa almasiihu", - description: "New Testament in Fulfulde, Maasina", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/ffm/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7937, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "FFMWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ffm2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Maasina Fulfulde NT", - PODISBN: "978-1-5313-0237-5", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "flr", - translationId: "flr", - languageName: "Fuliiru", - languageNameInEnglish: "Fuliiru", - dialect: null, - homeDomain: "ebible.org", - title: "Ibibiriya: Igambo lya Rurema mu ndeto ye'kifuliiru", - description: "Fuliiru: Ibibiriya: Igambo lya Rurema mu ndeto ye'kifuliiru (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/flr/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23001, - NTbooks: 27, - NTchapters: 260, - NTverses: 7914, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "FLRWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "flr2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Fuliiru: Ibibiriya: Igambo lya Rurema mu ndeto ye'kifuliiru (Bible)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "for", - translationId: "for", - languageName: "Fore", - languageNameInEnglish: "Fore", - dialect: null, - homeDomain: "png.bible", - title: "Fore New Testament", - description: "The New Testament in the Fore Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1974 Biblica", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/for/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7904, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "FORNYB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "for1974eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Fore NT", - PODISBN: "978-1-5313-0238-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "fra", - translationId: "fra_fob", - languageName: "fran\u00e7ais", - languageNameInEnglish: "French", - dialect: null, - homeDomain: "ebible.org", - title: "La Sainte Bible", - description: "The Holy Bible in French, Ostervald", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2023-02-04", - publicationURL: "http://ebible.org/fra_fob/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23149, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "FRAOST", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "fraFOB1744eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "French Ostervald Bible", - PODISBN: "978-1-5313-0240-5", - script: "Latin", - sourceDate: "2023-02-04", - }, - { - languageCode: "fra", - translationId: "fraLSG", - languageName: "fran\u00e7ais", - languageNameInEnglish: "French", - dialect: null, - homeDomain: "ebible.org", - title: "Louis Segond 1910", - description: "The Holy Bible in French, Louis Segond version of 1910", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2023-02-04", - publicationURL: "http://ebible.org/fraLSG/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23211, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "FRELSG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "fraLSG1910eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "French Louis Segond 1910 Bible", - PODISBN: "978-1-5313-0239-9", - script: "Latin", - sourceDate: "2023-02-04", - }, - { - languageCode: "fra", - translationId: "francl", - languageName: "fran\u00e7ais", - languageNameInEnglish: "French", - dialect: null, - homeDomain: "eBible.org", - title: "Sainte Bible n\u00e9o-Crampon Libre", - description: "The Holy Bible in French, n\u00e9o-Crampon Libre translation", - Redistributable: true, - Copyright: "Copyright \u00a9 2022 CrossWire Bible Society", - UpdateDate: "2023-02-03", - publicationURL: "http://eBible.org/francl/", - OTbooks: 39, - OTchapters: 937, - OTverses: 23487, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 7, - DCchapters: 137, - DCverses: 4085, - FCBHID: "FRANCL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "francl2022eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "French n\u00e9o-Crampon Libre", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-04", - }, - { - languageCode: "fra", - translationId: "frasbl", - languageName: "fran\u00e7ais", - languageNameInEnglish: "French", - dialect: null, - homeDomain: "ebible.org", - title: "Sainte Bible libre pour le monde", - description: "The Holy Bible in French, Sainte Bible Libre pour le monde translation", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2023-02-04", - publicationURL: "http://ebible.org/frasbl/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 15, - DCchapters: 214, - DCverses: 6955, - FCBHID: "FRASBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "frasbl2022eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "French Free Holy Bible for the World", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-04", - }, - { - languageCode: "frd", - translationId: "frd", - languageName: "Fordata", - languageNameInEnglish: "Fordata", - dialect: null, - homeDomain: "ebible.org", - title: "Surat Ralan na'a Vaidida", - description: "Fordata: Surat Ralan na'a Vaidida (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/frd/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7868, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "FRDWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "frd2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Fordata: Surat Ralan na'a Vaidida (New Testament)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "fue", - translationId: "fue", - languageName: "Fulfulde Borgu", - languageNameInEnglish: "Fulfulde, Borgu", - dialect: null, - homeDomain: "ebible.org", - title: "Alkawal Kesal", - description: "Portions of the New Testament in the Fulfulde Borgu language of Benin", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 SIM International", - UpdateDate: "2014-10-16", - publicationURL: "http://ebible.org/fue/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 21, - NTchapters: 169, - NTverses: 4669, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "FUESIM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "fue2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Fulfulde Borgu NT", - PODISBN: "978-1-5313-0241-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "fuf", - translationId: "fuf", - languageName: "Pular", - languageNameInEnglish: "Pular", - dialect: null, - homeDomain: "ebible.org", - title: "Version Pular Fuuta-Jallon", - description: "The New Testament in the Fouta-Jallon Pular language of Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Pioneer Bible Translators", - UpdateDate: "2018-02-06", - publicationURL: "http://ebible.org/fuf/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7943, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "FUFPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "fuf2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Pular Fuuta-Jallon New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2018-02-07", - }, - { - languageCode: "fuh", - translationId: "fuh", - languageName: null, - languageNameInEnglish: "Fulfulde, Western Niger", - dialect: null, - homeDomain: "ebible.org", - title: "Ko woni Amaana Keso", - description: "Fulfulde, Western Niger: Ko woni Amaana Keso (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/fuh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7908, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "FUHWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "fuh2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Western Niger Fulfulde NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-02", - }, - { - languageCode: "fuh", - translationId: "fuhbkf", - languageName: "Fulfulde Burkina", - languageNameInEnglish: "Fulfulde, Western Niger", - dialect: "Burkina", - homeDomain: "ebible.org", - title: "Fulfulfe Burkina, Dewtere Laam\u0257o Amaana Keso", - description: "Fulfulde Burkina New Testament", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 SIM International", - UpdateDate: "2014-10-02", - publicationURL: "http://ebible.org/fuhbkf/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "FUHSIM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "fuhBKF2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Fulfulde Burkina NT", - PODISBN: "978-1-5313-0242-9", - script: "Latin", - sourceDate: "2014-10-03", - }, - { - languageCode: "fuv", - translationId: "fuv", - languageName: "Fulfulde Caka Nigeria", - languageNameInEnglish: "Fulfulde Caka Nigeria", - dialect: null, - homeDomain: "ebible.org", - title: "\u0627\u0644\u064e\u06a9\u0652\u0648\u064e\u0644\u064e \u06a9 \u065c\u0633\u064e\u0644\u0652", - description: - "Fulfulde, Nigerian: \u0627\u0644\u064e\u06a9\u0652\u0648\u064e\u0644\u064e \u06a9 \u065c\u0633\u064e\u0644\u0652 New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-19", - publicationURL: "http://ebible.org/fuv/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7945, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "FUVWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "fuv2011eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "Amiri", - shortTitle: "Nigerian Fulfulde NT", - PODISBN: null, - script: "Arabic", - sourceDate: "2020-11-20", - }, - { - languageCode: "gah", - translationId: "gah", - languageName: "Alekano (Gahuku)", - languageNameInEnglish: "Alekano or Gahuku", - dialect: null, - homeDomain: "png.bible", - title: "Monoq Gotola Gosohaq", - description: "The New Testament in the Alekano (Gahuku) Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1973, 1986 Bible Society of Papua New Guinea", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/gah/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7884, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GAHPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gah1986eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Alekano Bible", - PODISBN: "978-1-5313-0243-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "gai", - translationId: "gai", - languageName: "Borei", - languageNameInEnglish: "Borei", - dialect: null, - homeDomain: "png.bible", - title: "Rara\u014b Aetaniacna Kam Wemba\u014b La\u014b", - description: "New Testament in Mborena Kam language", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://png.bible/gai/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7871, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GAIPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gai2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "New Testament in Mborena Kam language", - PODISBN: null, - script: "Latin", - sourceDate: "2019-12-29", - }, - { - languageCode: "gam", - translationId: "gam", - languageName: "Kandawo", - languageNameInEnglish: "Kandawo", - dialect: null, - homeDomain: "png.bible", - title: "Jisas Kandjiyebe Wopake", - description: "New Testament in the Kandawo language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2012-2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-12-11", - publicationURL: "http://png.bible/gam/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7812, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GAMWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gam2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Kandawo NT", - PODISBN: "978-1-5313-0245-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "gaw", - translationId: "gaw", - languageName: "Nobonob", - languageNameInEnglish: "Nobonob", - dialect: null, - homeDomain: "png.bible", - title: "KAYAKNU NAI Tituanak Bau", - description: "The New Testament in the Nobonob Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1990 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-02-07", - publicationURL: "http://png.bible/gaw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7844, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GAWWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gaw1990eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Nobnob NT", - PODISBN: "978-1-5313-0246-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "gde", - translationId: "gde", - languageName: "Gude", - languageNameInEnglish: "Gude", - dialect: null, - homeDomain: "ebible.org", - title: "Kura Al\u0259kawal\u0259 \u014bga \u018fnta\u014bf\u0259", - description: "Gude: Kura Al\u0259kawal\u0259 \u014bga \u018fnta\u014bf\u0259 New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2000 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/gde/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7940, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GDEWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gde2000eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Gude: Kura Al\u0259kawal\u0259 \u014bga \u018fnta\u014bf\u0259 New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "gdg", - translationId: "gdg", - languageName: "Ga'dang", - languageNameInEnglish: "Ga'dang", - dialect: null, - homeDomain: "ebible.org", - title: "Ga'dang", - description: "Ga'dang: Ga'dang New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/gdg/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7894, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GDGWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gdg2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ga'dang: Ga'dang New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "gdn", - translationId: "gdn", - languageName: "Umanakaina", - languageNameInEnglish: "Umanakaina", - dialect: null, - homeDomain: "png.bible", - title: "IYA YONAI", - description: "The New Testament in the Umanakaina Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1999 The Bible Society of Papua New Guinea", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/gdn/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7732, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GDNPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gdn1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Umanakaina NT", - PODISBN: "978-1-5313-0247-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "gdr", - translationId: "gdr", - languageName: "Wipi", - languageNameInEnglish: "Wipi", - dialect: null, - homeDomain: "png.bible", - title: "Wipi Y\u0268t God ma Y\u0268na Sis\u0268l Y\u0268na Peba", - description: "The New Testament in the Wipi Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2001 The Bible Society of Papua New Guinea", - UpdateDate: "2013-10-13", - publicationURL: "http://png.bible/gdr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7923, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GDRPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gdr2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Wipi NT", - PODISBN: "978-1-5313-0248-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "geb", - translationId: "geb", - languageName: "Kire", - languageNameInEnglish: "Kire", - dialect: null, - homeDomain: "png.bible", - title: "Fhe Bak\u0268men Kaman Kame\u014b", - description: "Kire New Testament", - Redistributable: true, - Copyright: "Copyright \u00a9 2001 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://png.bible/geb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7825, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GEBPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "geb2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kire NT", - PODISBN: "978-1-5313-0249-8", - script: "Latin (Roman) with Papua New Guinea enhancements", - sourceDate: "2016-11-24", - }, - { - languageCode: "gfk", - translationId: "gfk", - languageName: "Patpatar", - languageNameInEnglish: "Patpatar", - dialect: null, - homeDomain: "png.bible", - title: "No Sigar Kunubus tika ma Ira Ninge na Lotu", - description: "The New Testament and Psalms in the Patpatar Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1997-2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-02", - publicationURL: "http://png.bible/gfk/", - OTbooks: 1, - OTchapters: 150, - OTverses: 2459, - NTbooks: 27, - NTchapters: 260, - NTverses: 7701, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GFKTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gfk1997eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Patpatar NT and Psalms", - PODISBN: "978-1-5313-0250-4", - script: "Latin", - sourceDate: "2022-03-02", - }, - { - languageCode: "gfk", - translationId: "gfkh", - languageName: "Hinsaal", - languageNameInEnglish: "Patpatar", - dialect: "Hinsaal", - homeDomain: "png.bible", - title: "No Tahut na Hinhinawas", - description: - "The New Testament in the Hinsaal dialect of the Patpatar language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-03", - publicationURL: "http://png.bible/gfkh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7707, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GFKHWB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gfkh2016eb", - rodCode: 21926.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Hinsaal NT", - PODISBN: null, - script: "Latin", - sourceDate: "2022-03-03", - }, - { - languageCode: "gfk", - translationId: "gfks", - languageName: "Sokarek", - languageNameInEnglish: "Patpatar", - dialect: "Sokarek", - homeDomain: "png.bible", - title: "No Tahut na Hininaawas", - description: - "The New Testament in the Sokarek dialect of the Patpatar language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-04", - publicationURL: "http://png.bible/gfks/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7703, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GFKSWB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gfks2014eb", - rodCode: 21925.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sokarek NT", - PODISBN: null, - script: "Latin", - sourceDate: "2022-03-05", - }, - { - languageCode: "ghs", - translationId: "ghs", - languageName: "Guhu-Samane", - languageNameInEnglish: "Guhu-Samane", - dialect: null, - homeDomain: "png.bible", - title: "PORO TONGO USAQE", - description: "The New Testament in the Guhu-Samane Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1975 Bible Society of Papua New Guinea", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/ghs/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7464, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GHSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ghs1975eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Guhu-Samane NT", - PODISBN: "978-1-5313-0252-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "gia", - translationId: "gia", - languageName: "Kitja", - languageNameInEnglish: "Kitja", - dialect: null, - homeDomain: "ebible.org", - title: "Jawunany", - description: "The Book of Jonah in the Kitja language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1978 Bible Society of Australia", - UpdateDate: "2019-05-23", - publicationURL: "http://ebible.org/gia/", - OTbooks: 1, - OTchapters: 4, - OTverses: 48, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GIABSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gia1978eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kitja Jonah", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "glk", - translationId: "glk", - languageName: "Gilaki", - languageNameInEnglish: "Gilaki", - dialect: null, - homeDomain: "ebible.org", - title: "Gilaki John", - description: "The Gospel of John in the Gilaki language of Iran", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 gilakmedia.com", - UpdateDate: "2015-01-02", - publicationURL: "http://ebible.org/glk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 21, - NTverses: 879, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GLKGLK", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "glk2014eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "XB Niloofar", - shortTitle: "Gilaki John", - PODISBN: "978-1-5313-0253-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "gmv", - translationId: "gmvNT", - languageName: "Gamo", - languageNameInEnglish: "Gamo", - dialect: null, - homeDomain: "ebible.org", - title: "\u12a6\u122b\uab03 \u132b\u1246 \u121b\u1343\u134b \u130b\u121e\uab06", - description: "New Testament in Gamo (ET:gmv:Gamo)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/gmvNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7842, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GMVTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gmv2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Abyssinica SIL", - shortTitle: "Gamo NT", - PODISBN: "978-1-5313-0254-2", - script: "Ethiopic (Ge\u02bbez)", - sourceDate: "2014-04-25", - }, - { - languageCode: "gmv", - translationId: "gmvRNT", - languageName: "Gamo", - languageNameInEnglish: "Gamo", - dialect: null, - homeDomain: "ebible.org", - title: "Ooratha Caaqo Maxaafa Gamoththo", - description: "New Testament in Gamo (ET:gmv:Gamo)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/gmvRNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7841, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GMVWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gmvR2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Gamo NT", - PODISBN: "978-1-5313-0255-9", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "gng", - translationId: "gngNT", - languageName: "Ngangam", - languageNameInEnglish: "Ngangam", - dialect: null, - homeDomain: "ebible.org", - title: "Uwien ya J\u0254tief\u025b\u0300nku ya gb\u0254nku", - description: "The New Testament in the Ngangam language of Togo", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/gngNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7945, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GNGWYI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gng2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ngangam NT", - PODISBN: "978-1-5313-0256-6", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "gnn", - translationId: "gnn", - languageName: "Gumatj", - languageNameInEnglish: "Gumatj", - dialect: null, - homeDomain: "ebible.org", - title: "Gumatj Bible", - description: "The New Testament in the Gumatj language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Bible Society of Australia", - UpdateDate: "2019-05-14", - publicationURL: "http://ebible.org/gnn/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7683, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GNNBSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gnn2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Gumatj NT", - PODISBN: null, - script: "Latin", - sourceDate: "2019-05-15", - }, - { - languageCode: "gnw", - translationId: "gnwNT", - languageName: "Guaran\u00ed, Western Bolivian", - languageNameInEnglish: "Guaran\u00ed, Western Bolivian", - dialect: null, - homeDomain: "ebible.org", - title: "Nuevo Testamento Guaran\u00ed Pe", - description: - "New Testament in Guaran\u00ed, Western Bolivian (BL:gnw:Guaran\u00ed, Western Bolivian)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/gnwNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7915, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GNWWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gnw2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Western Bolivian Guaran\u00ed NT", - PODISBN: "978-1-5313-0257-3", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "gof", - translationId: "gofENT", - languageName: "Gofa", - languageNameInEnglish: "Gofa", - dialect: null, - homeDomain: "ebible.org", - title: "\u12a6\u122b\uab03 \u132b\u1241\u12cb \u130e\u134b\uab06", - description: "New Testament in Gofa", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/gofENT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7931, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GO1TBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gofE2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Abyssinica SIL", - shortTitle: "Gofa NT (Ethiopic script)", - PODISBN: "978-1-5313-0258-0", - script: "Ethiopic (Ge\u02bbez)", - sourceDate: "2014-04-25", - }, - { - languageCode: "gof", - translationId: "gofRNT", - languageName: "Gofa", - languageNameInEnglish: "Gofa", - dialect: null, - homeDomain: "ebible.org", - title: "Ooratha Caaquwa Goofatho", - description: "New Testament in Gofa (ET:gof:Gofa)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/gofRNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7931, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GOFTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gofR2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Gofa NT (Latin script)", - PODISBN: "978-1-5313-0259-7", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "gqr", - translationId: "gqr", - languageName: "Gor", - languageNameInEnglish: "Gor", - dialect: null, - homeDomain: "ebible.org", - title: "Ta l\u01dd Luw\u01dd Kunmind\u0268 k\u0268 Sig\u0268", - description: "New Testament in Gor", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/gqr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GQRWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gqr2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "New Testament in Gor", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "grc", - translationId: "grcbrent", - languageName: "\u1f19\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ae", - languageNameInEnglish: "Greek, Ancient", - dialect: "Koine", - homeDomain: "ebible.org", - title: "\u03bc\u03b5\u03c4\u03ac\u03c6\u03c1\u03b1\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b5\u03b2\u03b4\u03bf\u03bc\u03ae\u03ba\u03bf\u03bd\u03c4\u03b1", - description: "The Greek Septuagint with Apocrypha, compiled by Sir Lancelot C. L. Brenton", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-03-31", - publicationURL: "http://ebible.org/grcbrent/", - OTbooks: 36, - OTchapters: 908, - OTverses: 22561, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 16, - DCchapters: 196, - DCverses: 6036, - FCBHID: "GRCBRE", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "grclxxbrenteb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Brenton Septuagint", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "grc", - translationId: "grcbyz", - languageName: "\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ae", - languageNameInEnglish: "Greek, Ancient", - dialect: "Koine", - homeDomain: "ebible.org", - title: "\u0397 \u039a\u03b1\u03b9\u03bd\u03ae \u0394\u03b9\u03b1\u03b8\u03ae\u03ba\u03b7", - description: - "1904 Patriarchal Greek New Testament with 20 correcctions from later editions", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-11-11", - publicationURL: "http://ebible.org/grcbyz/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GRCBYZ", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "grcbyz1904eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Byzantine Greek NT", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "grc", - translationId: "grcf35", - languageName: "\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ae", - languageNameInEnglish: "Greek, Ancient", - dialect: "Koine", - homeDomain: "ebible.org", - title: "\u0397 \u039a\u03b1\u03b9\u03bd\u03ae \u0394\u03b9\u03b1\u03b8\u03ae\u03ba\u03b7", - description: "The Greek New Testament According to Family 35, Wilbur Pickering", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Wilbur N. Pickering", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/grcf35/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GRCF35", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "grcf35eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Greek NT Family 35", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "grc", - translationId: "grcmt", - languageName: "\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ae", - languageNameInEnglish: "Greek, Ancient", - dialect: "Koine", - homeDomain: "ebible.org", - title: "\u0397 \u039a\u03b1\u03b9\u03bd\u03ae \u0394\u03b9\u03b1\u03b8\u03ae\u03ba\u03b7", - description: "The Greek New Testament according to the Byzantine Text form. 2000 Revision.", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2021-04-21", - publicationURL: "http://ebible.org/grcmt/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GRCMTK", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "grcMT2000eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Greek Majority Text NT", - PODISBN: "978-1-5313-0260-3", - script: "Latin", - sourceDate: "2018-09-02", - }, - { - languageCode: "grc", - translationId: "grcsbl", - languageName: "\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03c3\u03c4\u03b9\u03ba\u03ae", - languageNameInEnglish: "Greek, Ancient", - dialect: "Ancient", - homeDomain: "ebible.org", - title: "\u0397 \u039a\u03b1\u03b9\u03bd\u03ae \u0394\u03b9\u03b1\u03b8\u03ae\u03ba\u03b7", - description: "The Greek New Testament: SBL Edition", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Society of Biblical Literature and Logos Bible Software", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/grcsbl/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7927, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GRCSBL1", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "grcsbl2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "SBL Greek NT", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "grc", - translationId: "grcsr", - languageName: "\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03c3\u03c4\u03b9\u03ba\u03ae", - languageNameInEnglish: "Greek, Ancient", - dialect: null, - homeDomain: "ebible.org", - title: "\u0397 \u039a\u03b1\u03b9\u03bd\u03ae \u0394\u03b9\u03b1\u03b8\u03ae\u03ba\u03b7", - description: "Solid Rock Greek New Testament, Scholar's Edition", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-11-25", - publicationURL: "http://ebible.org/grcsr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7961, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GRCSRG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "grcsr2022eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Solid Rock Greek New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "grc", - translationId: "grctcgnt", - languageName: "\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03c3\u03c4\u03b9\u03ba\u03ae", - languageNameInEnglish: "Greek, Ancient", - dialect: null, - homeDomain: "ebible.org", - title: "\u0397 \u039a\u03b1\u03b9\u03bd\u03ae \u0394\u03b9\u03b1\u03b8\u03ae\u03ba\u03b7", - description: "The New Testament in Ancient Greek with critical text notes", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/grctcgnt/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GRCTCG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "grctcgnt2022eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Text-Critical Greek NT", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "grc", - translationId: "grc-tisch", - languageName: "\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ae", - languageNameInEnglish: "Greek", - dialect: "Koine", - homeDomain: "ebible.org", - title: "\u0397 \u039a\u03b1\u03b9\u03bd\u03ae \u0394\u03b9\u03b1\u03b8\u03ae\u03ba\u03b7", - description: "The New Testament in Koine Greek, based on Tischendorf's 8th edition", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2014-01-11", - publicationURL: "http://ebible.org/grc-tisch/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7939, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GRCTIS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "grcTischeb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tischendorf Greek NT", - PODISBN: "978-1-5313-0262-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "grc", - translationId: "grctr", - languageName: "\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac", - languageNameInEnglish: "Greek, Ancient", - dialect: null, - homeDomain: "ebible.org", - title: "\u0397 \u039a\u03b1\u03b9\u03bd\u03ae \u0394\u03b9\u03b1\u03b8\u03ae\u03ba\u03b7", - description: - "The Greek Textus Receptus New Testament with manuscript annotations by Adam Boyd", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/grctr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GRCGTR", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "grctreb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Textus Receptus", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "gri", - translationId: "gri", - languageName: null, - languageNameInEnglish: "Ghari", - dialect: null, - homeDomain: "ebible.org", - title: "Ghari Bible", - description: "Ghari: Ghari Bible (Bible with Deuterocanon)", - Redistributable: false, - Copyright: "Copyright \u00a9 1998 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-12", - publicationURL: "http://ebible.org/gri/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22256, - NTbooks: 27, - NTchapters: 260, - NTverses: 7918, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GRIWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gri1998eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ghari Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-13", - }, - { - languageCode: "gub", - translationId: "gubBl", - languageName: "Guajaj\u00e1ra", - languageNameInEnglish: "Guajaj\u00e1ra", - dialect: null, - homeDomain: "ebible.org", - title: "Tup\u00e0n ze'eg", - description: "Bible without Deuterocanon in Guajaj\u00e1ra (BR:gub:Guajaj\u00e1ra)", - Redistributable: true, - Copyright: "Copyright \u00a9 2007 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-03-30", - publicationURL: "http://ebible.org/gubBl/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22354, - NTbooks: 27, - NTchapters: 260, - NTverses: 7832, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GUBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gub2007eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Guajaj\u00e1ra Bible", - PODISBN: "978-1-5313-0265-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "guc", - translationId: "guc", - languageName: "Wayuu", - languageNameInEnglish: "Wayuu", - dialect: null, - homeDomain: "ebible.org", - title: "T\u00fc n\u00fcchikimaajatkat Jesucristo", - description: "Wayuu: T\u00fc n\u00fcchikimaajatkat Jesucristo New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/guc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7621, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GUCWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "guc2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Wayuu: T\u00fc n\u00fcchikimaajatkat Jesucristo New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-02", - }, - { - languageCode: "gue", - translationId: "gue", - languageName: "Gurindji", - languageNameInEnglish: "Gurinji", - dialect: null, - homeDomain: "ebible.org", - title: "Ruth + Luke 2", - description: "The Book of Ruth and Luke 2 in the Gurindji language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1984 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-11-23", - publicationURL: "http://ebible.org/gue/", - OTbooks: 1, - OTchapters: 4, - OTverses: 39, - NTbooks: 1, - NTchapters: 1, - NTverses: 4, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GUEWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gue1984eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Gurindji Ruth + Luke 2", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-24", - }, - { - languageCode: "guh", - translationId: "guh", - languageName: "Guahibo", - languageNameInEnglish: "Guahibo", - dialect: null, - homeDomain: "ebible.org", - title: "Dios pejumelivaisibaxuto pejanalivaisibaxuto", - description: "New Testament in Guahibo", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/guh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7884, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GUHWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "guh2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Guahibo NT", - PODISBN: "978-1-5313-0266-5", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "gui", - translationId: "guiNT", - languageName: "Guaran\u00ed, Eastern Bolivian", - languageNameInEnglish: "Guaran\u00ed, Eastern Bolivian", - dialect: null, - homeDomain: "ebible.org", - title: "Nuevo Testamento Guaran\u00ed Pe", - description: - "New Testament in Guaran\u00ed, Eastern Bolivian (BL:gui:Guaran\u00ed, Eastern Bolivian)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/guiNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7914, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GUISBU", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gui2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Eastern Bolivian Guaran\u00ed NT", - PODISBN: "978-1-5313-0267-2", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "guj", - translationId: "guj2009", - languageName: "\u0a97\u0ac1\u0a9c\u0ab0\u0abe\u0aa4\u0ac0", - languageNameInEnglish: "Gujarati", - dialect: null, - homeDomain: "ebible.org", - title: "\u0aaa\u0ab5\u0abf\u0aa4\u0acd\u0ab0 \u0aac\u0abe\u0a87\u0aac\u0ab2", - description: "The Holy Bible in Gujarati, Easy Reading Version", - Redistributable: false, - Copyright: "Copyright \u00a9 1997-2009 World Bible Translation Center", - UpdateDate: "2013-11-04", - publicationURL: "http://ebible.org/guj2009/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23034, - NTbooks: 26, - NTchapters: 256, - NTverses: 7818, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GUJWTC", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "guj2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Rekha", - shortTitle: "Gujarati Bible", - PODISBN: null, - script: "Gujarati", - sourceDate: "2020-10-09", - }, - { - languageCode: "guj", - translationId: "guj2017", - languageName: "\u0a97\u0ac1\u0a9c\u0ab0\u0abe\u0aa4\u0ac0", - languageNameInEnglish: "Gujarati", - dialect: null, - homeDomain: "ebible.org", - title: "\u0a97\u0ac1\u0a9c\u0ab0\u0abe\u0aa4\u0ac0 \u0aac\u0abe\u0a87\u0aac\u0ab2", - description: "The Indian Revised Version Holy Bible in the Gujarati language of India", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Bridge Connectivity Solutions", - UpdateDate: "2020-02-11", - publicationURL: "http://ebible.org/guj2017/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GUJIRV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "guj2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "FreeSerif", - shortTitle: "Gujarati Indian Revised Version Bible", - PODISBN: null, - script: "Gujarati", - sourceDate: "2021-11-30", - }, - { - languageCode: "gul", - translationId: "gulNT", - languageName: "Sea Island Creole English", - languageNameInEnglish: "Sea Island Creole English", - dialect: null, - homeDomain: "ebible.org", - title: "De Nyew Testament", - description: - "New Testament in Sea Island Creole English (US:gul:Sea Island Creole English)", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/gulNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GULWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gul2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sea Island Creole English NT", - PODISBN: "978-1-5313-0268-9", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "gum", - translationId: "gum", - languageName: "Guambiano", - languageNameInEnglish: "Guambiano", - dialect: null, - homeDomain: "ebible.org", - title: "Nacom Pejume Diwesi po diwesi pena jume diwesi xua Jesucristo yabara tinatsi", - description: "New Testament in Guambiano", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/gum/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1533, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GUMTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gum2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Guambiano NT", - PODISBN: "978-1-5313-0269-6", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "gun", - translationId: "gun", - languageName: "Mby\u00e1 Guaran\u00ed", - languageNameInEnglish: "Guaran\u00ed, Mby\u00e1", - dialect: null, - homeDomain: "ebible.org", - title: "Nhanderuete ayvu iky'a e'y\u0303 va'e", - description: "New Testament in Guaran\u00ed, Mby\u00e1", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/gun/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23144, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GUNWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gun2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Mby\u00e1 Guaran\u00ed NT", - PODISBN: "978-1-5313-0270-2", - script: "Latin", - sourceDate: "2014-08-07", - }, - { - languageCode: "guo", - translationId: "guoNT", - languageName: "Guayabero", - languageNameInEnglish: "Guayabero", - dialect: null, - homeDomain: "ebible.org", - title: "Pajelw\u0289ajan Dios pejjamechan", - description: "New Testament in Guayabero (CO:guo:Guayabero)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/guoNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7800, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GUOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "guo2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Guayabero NT", - PODISBN: "978-1-5313-0271-9", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "gup", - translationId: "gup", - languageName: "Kunwijku", - languageNameInEnglish: "Gunwinggu", - dialect: null, - homeDomain: "ebible.org", - title: "God Nuye Kunmok", - description: "The Holy Bible in the Kunwijku language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 Bible Society of Australia", - UpdateDate: "2019-04-22", - publicationURL: "http://ebible.org/gup/", - OTbooks: 5, - OTchapters: 310, - OTverses: 6466, - NTbooks: 27, - NTchapters: 260, - NTverses: 7764, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GUPBSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gup2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kunwijku Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-07-15", - }, - { - languageCode: "gup", - translationId: "gupk", - languageName: "Kuninjku", - languageNameInEnglish: "Gunwinggu", - dialect: null, - homeDomain: "ebible.org", - title: "Kuninjku Gospel Selections", - description: "Matthew and Luke in the Gunwinggu language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2021 Wycliffe Bible Translators", - UpdateDate: "2021-11-23", - publicationURL: "http://ebible.org/gupk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 2, - NTchapters: 4, - NTverses: 84, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GUPKWB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gupk2021eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kuninjku Gospel Selections", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-24", - }, - { - languageCode: "gux", - translationId: "gux", - languageName: "Gourma", - languageNameInEnglish: "Gourmanch\u00e9ma", - dialect: "Central", - homeDomain: "ebible.org", - title: "Bible Gourma", - description: - "The New Testament in the Gourmanch\u00e9ma language of Burkina Faso, Niger, Benin, and Togo", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door 43 world-wide mission community", - UpdateDate: "2022-06-16", - publicationURL: "http://ebible.org/gux/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GUXULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gux2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Gourmanch\u00e9ma NT", - PODISBN: null, - script: "Latin", - sourceDate: "2022-06-16", - }, - { - languageCode: "gux", - translationId: "guxg", - languageName: "Gourmantche", - languageNameInEnglish: "Gourmanch\u00e9ma", - dialect: "Gormantche", - homeDomain: "ebible.org", - title: "Bible Gourmantche", - description: "The New Testament in the Gourmantche language of Togo", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door 43 world-wide mission community", - UpdateDate: "2020-08-13", - publicationURL: "http://ebible.org/guxg/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7944, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GUXULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "guxg2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Gourmanch\u00e9ma NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-08-14", - }, - { - languageCode: "gvc", - translationId: "gvc", - languageName: "Guanano", - languageNameInEnglish: "Guanano", - dialect: null, - homeDomain: "ebible.org", - title: "Cohamac\u0289 Yare Yahari Tjuel", - description: "New Testament in Guanano", - Redistributable: true, - Copyright: "Copyright \u00a9 2007 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/gvc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7765, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GVCWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gvc2007eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Guanano NT", - PODISBN: "978-1-5313-0272-6", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "gvf", - translationId: "gvf", - languageName: "Golin", - languageNameInEnglish: "Golin", - dialect: null, - homeDomain: "png.bible", - title: "Golin New Testament", - description: "The New Testament in the Golin Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1980 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-17", - publicationURL: "http://png.bible/gvf/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7911, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GVFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gvf1980eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Golin NT", - PODISBN: "978-1-5313-0273-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "gvn", - translationId: "gvn", - languageName: "Kuku Yalanji", - languageNameInEnglish: "Kuku-Yalanji", - dialect: null, - homeDomain: "ebible.org", - title: "Godumu Kuku", - description: "Portions of the Holy Bible in the Kuku-Yalanji language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1984 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-05-14", - publicationURL: "http://ebible.org/gvn/", - OTbooks: 21, - OTchapters: 172, - OTverses: 521, - NTbooks: 27, - NTchapters: 260, - NTverses: 7783, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GVNWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gvn1984eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kuku-Yalanji Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2019-05-14", - }, - { - languageCode: "gvr", - translationId: "gvr", - languageName: "Gurung", - languageNameInEnglish: "Gurung, Western", - dialect: null, - homeDomain: "ebible.org", - title: "Gurung Central Adapt It Study Bible", - description: "Gurung: Gurung Central Adapt It Study Bible (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/gvr/", - OTbooks: 7, - OTchapters: 289, - OTverses: 6422, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GVRWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gvr2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "FreeSerif", - shortTitle: "Gurung Bible", - PODISBN: null, - script: "Devanagari", - sourceDate: "2020-11-20", - }, - { - languageCode: "gvs", - translationId: "gvs", - languageName: "Gumawana", - languageNameInEnglish: "Gumawana", - dialect: null, - homeDomain: "png.bible", - title: "Buki Kimaasabaina", - description: - "The New Testament and part of the Old Testament of the Holy Bible in the Gumawana language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2023-02-04", - publicationURL: "http://png.bible/gvs/", - OTbooks: 4, - OTchapters: 98, - OTverses: 2847, - NTbooks: 27, - NTchapters: 260, - NTverses: 7878, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GVSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gvs2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Gumawana Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-04", - }, - { - languageCode: "gwi", - translationId: "gwiNT", - languageName: "Gwich'in", - languageNameInEnglish: "Gwich'in", - dialect: null, - homeDomain: "ebible.org", - title: "Vit'eegwijy\u0105hchy'aa Vagwandak Niz\u012f\u012f", - description: "New Testament in Gwich'in (US:gwi:Gwich'in)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/gwiNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7864, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GWIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gwi2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Gwich'in NT", - PODISBN: "978-1-5313-0274-0", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "gwr", - translationId: "gwr", - languageName: "Gwere", - languageNameInEnglish: "Gwere", - dialect: null, - homeDomain: "ebible.org", - title: "Endagaano Empyaka Omu Lugwere", - description: "Gwere: Endagaano Empyaka Omu Lugwere (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/gwr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7941, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GWRWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gwr2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Gwere: Endagaano Empyaka Omu Lugwere (Bible)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "gym", - translationId: "gymNT", - languageName: "Ng\u00e4bere", - languageNameInEnglish: "Ng\u00e4bere", - dialect: null, - homeDomain: "ebible.org", - title: "Kukwe kuin ng\u00f6b\u00f6kwe", - description: "New Testament in Ng\u00e4bere (PM:gym:Ng\u00e4bere)", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/gymNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7804, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GYMWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gym2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ng\u00e4bere NT", - PODISBN: "978-1-5313-0275-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "gyr", - translationId: "gyrNT", - languageName: "Guarayu", - languageNameInEnglish: "Guarayu", - dialect: null, - homeDomain: "ebible.org", - title: "T\u0169pa \u00d1ehengag\u00fcer", - description: "New Testament in Guarayu (BL:gyr:Guarayu)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/gyrNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7885, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "GYRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "gyr2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Guarayu NT", - PODISBN: "978-1-5313-0276-4", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "hat", - translationId: "hat", - languageName: "Krey\u00f2l Ayisyen", - languageNameInEnglish: "Haitian", - dialect: null, - homeDomain: "ebible.org", - title: "Bib La", - description: "The Holy Bible in Haitian Creole", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-03-10", - publicationURL: "http://ebible.org/hat/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HATPDS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hat1985eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Haitian Creole Bible 1985", - PODISBN: null, - script: "Latin", - sourceDate: "2019-10-25", - }, - { - languageCode: "hat", - translationId: "hatbsa", - languageName: "Krey\u00f2l Ayisyen", - languageNameInEnglish: "Haitian", - dialect: null, - homeDomain: "ebible.org", - title: "Bib Sen An", - description: "The Holy Bible in Haitian Creole, 2022 update", - Redistributable: true, - Copyright: "Copyright \u00a9 2017-2022 Ron Smith", - UpdateDate: "2023-02-06", - publicationURL: "http://ebible.org/hatbsa/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HATBSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hatbsa2022eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Haitian Creole Bible 2022", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-06", - }, - { - languageCode: "hau", - translationId: "hausa", - languageName: "Hausa", - languageNameInEnglish: "Hausa", - dialect: null, - homeDomain: "ebible.org", - title: "Biblica\u00ae Bu\u0257a\u0257\u0257en Littafi Mai Tsarki, Sabon Rai Don Kowa\u2122", - description: - "Hausa: Biblica\u00ae Bu\u0257a\u0257\u0257en Littafi Mai Tsarki, Sabon Rai Don Kowa\u2122 (Bible) of Nigeria", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Biblica, Inc.", - UpdateDate: "2021-11-15", - publicationURL: "http://ebible.org/hausa/", - OTbooks: 39, - OTchapters: 930, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7942, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HAUBIB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hausa2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Hausa Contemporary Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-04-23", - }, - { - languageCode: "hau", - translationId: "hauulb", - languageName: "Hausa", - languageNameInEnglish: "Hausa", - dialect: null, - homeDomain: "ebible.org", - title: "Litafi Mai-tsarki", - description: "The New Testament in the Hausa language of Nigeria", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door43 World Missions Community", - UpdateDate: "2020-06-19", - publicationURL: "http://ebible.org/hauulb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HAUULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hauulb2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Hausa NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-06-19", - }, - { - languageCode: "haw", - translationId: "haw1868", - languageName: "'Olelo Hawai'i", - languageNameInEnglish: "Hawaiian", - dialect: null, - homeDomain: "ebible.org", - title: "Baibala Hemolele", - description: "The Holy Bible in the Hawaiian language of the United States, 1868 revision", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2015-11-10", - publicationURL: "http://ebible.org/haw1868/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HAW868", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "haw1868eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Hawaiian Bible 1868", - PODISBN: "978-1-5313-0277-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "hbo", - translationId: "hbo", - languageName: "\u05e2\u05d1\u05e8\u05d9\u05ea", - languageNameInEnglish: "Hebrew", - dialect: "Biblical/Ancient", - homeDomain: "ebible.org", - title: "\u05db\u05ea\u05d1\u05d9 \u05d4\u05e7\u05d5\u05d3\u05e9", - description: "The Old Testament in ancient Hebrew, following the Masoretic Text", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2013-12-11", - publicationURL: "http://ebible.org/hbo/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23213, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HBOMAS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hboMTeb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "Ezra SIL", - shortTitle: "Hebrew Masoretic OT", - PODISBN: "978-1-5313-0278-8", - script: "Hebrew", - sourceDate: "2020-10-09", - }, - { - languageCode: "hbo", - translationId: "hboWLC", - languageName: "\u05e2\u05d1\u05e8\u05d9\u05ea", - languageNameInEnglish: "Hebrew", - dialect: "Biblical/Ancient", - homeDomain: "ebible.org", - title: "\u05db\u05ea\u05d1\u05d9 \u05d4\u05e7\u05d5\u05d3\u05e9", - description: "The Hebrew Old Testament, Westminster Leningrad Codex", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2017-12-27", - publicationURL: "http://ebible.org/hboWLC/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23213, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HBOWLC", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hboWLCeb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "FreeSerif", - shortTitle: "Westminster Leningrad Codex Hebrew OT", - PODISBN: "978-1-5313-0280-1", - script: "Hebrew", - sourceDate: "2020-10-09", - }, - { - languageCode: "hch", - translationId: "hchNT", - languageName: "Huichol", - languageNameInEnglish: "Huichol", - dialect: null, - homeDomain: "ebible.org", - title: "Caca\u00fcyari niuquieya xapayari t\u00fcratu hecuame hepa\u00fcsita tati\u02bcait\u00fcvame tasivicueisit\u00fcvame Quesusi C\u00fcrisitu mi\u02bcat\u00fca", - description: "New Testament in Huichol (MX:hch:Huichol)", - Redistributable: true, - Copyright: "Copyright \u00a9 1988 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/hchNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HCHWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hch1988eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Huichol NT", - PODISBN: "978-1-5313-0281-8", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "heb", - translationId: "heb", - languageName: "\u05e2\u05d1\u05e8\u05d9\u05ea", - languageNameInEnglish: "Hebrew", - dialect: null, - homeDomain: "ebible.org", - title: "\u05ea\u05e0 \u05da \u05e2\u05d1\u05e8\u05d9 \u05de\u05d5\u05d3\u05e8\u05e0\u05d9", - description: "The Holy Bible in Modern Hebrew", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-06-14", - publicationURL: "http://ebible.org/heb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HEBMOD", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hebmodeb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "Ezra SIL", - shortTitle: "Modern Hebrew Bible", - PODISBN: null, - script: "Hebrew", - sourceDate: "2022-06-14", - }, - { - languageCode: "heg", - translationId: "hegNTpo", - languageName: "Helong", - languageNameInEnglish: "Helong", - dialect: null, - homeDomain: "ebible.org", - title: "Buk Niu In Hida Balu nol Dehet deng Apan-kloma ki in Dadi ka", - description: "Genesis and the New Testament in Helong", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Unit Bahasa dan Budaya", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/hegNTpo/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1422, - NTbooks: 27, - NTchapters: 260, - NTverses: 7665, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HEGWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "heg2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Helong Bible", - PODISBN: "978-1-5313-0282-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "hin", - translationId: "hin2010", - languageName: "\u0939\u093f\u0902\u0926\u0940", - languageNameInEnglish: "Hindi", - dialect: null, - homeDomain: "ebible.org", - title: "\u092a\u0935\u093f\u0924\u094d\u0930 \u092c\u093e\u0907\u092c\u0932", - description: "The Holy Bible, Easy Reading Version, in Hindi", - Redistributable: false, - Copyright: "Copyright \u00a9 1992-2010 World Bible Translation Center", - UpdateDate: "2019-11-15", - publicationURL: "http://ebible.org/hin2010/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22849, - NTbooks: 27, - NTchapters: 260, - NTverses: 7923, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HNDWTC", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hin2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Akshar Unicode", - shortTitle: "Hindi Easy Reading Version", - PODISBN: null, - script: "Hindi", - sourceDate: "2021-11-30", - }, - { - languageCode: "hin", - translationId: "hin2017", - languageName: "\u0939\u093f\u0928\u094d\u0926\u0940 \u092d\u093e\u0937\u093e", - languageNameInEnglish: "Hindi", - dialect: null, - homeDomain: "ebible.org", - title: "\u092a\u0935\u093f\u0924\u094d\u0930 \u092c\u093e\u0907\u092c\u093f\u0932", - description: "The Indian Revised Version Holy Bible in the Hindi language of India", - Redistributable: true, - Copyright: "Copyright \u00a9 2017, 2018 Bridge Connectivity Solutions", - UpdateDate: "2020-04-22", - publicationURL: "http://ebible.org/hin2017/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23146, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HINIRV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hin2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Akshar Unicode", - shortTitle: "Hindi Indian Revised Version Bible", - PODISBN: null, - script: "Devanagari", - sourceDate: "2021-11-30", - }, - { - languageCode: "hix", - translationId: "hixNT", - languageName: "Hixkary\u00e1na", - languageNameInEnglish: "Hixkary\u00e1na", - dialect: null, - homeDomain: "ebible.org", - title: "Khoryenkom Karyehtan\u00e0", - description: "New Testament in Hixkary\u00e1na (BR:hix:Hixkary\u00e1na)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/hixNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7805, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HIXWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hix2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Hixkary\u00e1na NT", - PODISBN: "978-1-5313-0283-2", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "hla", - translationId: "hla", - languageName: "Halia", - languageNameInEnglish: "Halia", - dialect: null, - homeDomain: "png.bible", - title: "U BULUNGANA U NIGA", - description: "The New Testament in the Halia Language of Papua New Guinea", - Redistributable: true, - Copyright: - "Copyright \u00a9 2020 Bible Society of Papua New Guinea and Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-06-08", - publicationURL: "http://png.bible/hla/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7716, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HLAPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hla2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Halia NT", - PODISBN: "978-1-5313-0284-9", - script: "Latin", - sourceDate: "2022-05-04", - }, - { - languageCode: "hlt", - translationId: "hlt", - languageName: "Matupi Chin", - languageNameInEnglish: "Chin, Matu", - dialect: null, - homeDomain: "ebible.org", - title: "Baibal Olcim", - description: "The Holy Bible in the Matupi Chin language of Mynmar with Strong's numbers", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2023-01-03", - publicationURL: "http://ebible.org/hlt/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HLTMCS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hlt2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Matupi Chin Standard Bible w/ Strongs", - PODISBN: null, - script: "Latin", - sourceDate: "2023-01-03", - }, - { - languageCode: "hlt", - translationId: "hltmcsb", - languageName: "Matupi Chin", - languageNameInEnglish: "Chin, Matu", - dialect: null, - homeDomain: "ebible.org", - title: "Baibal Olcim", - description: - "The Holy Bible in the Matupi Chin language of Mynmar. Matupi Chin Standard Bible", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-12-07", - publicationURL: "http://ebible.org/hltmcsb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 13, - DCchapters: 175, - DCverses: 5752, - FCBHID: "HLTGBI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hltmcsb2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Matupi Chin Standard Bible 2019", - PODISBN: null, - script: "Latin", - sourceDate: "2022-12-07", - }, - { - languageCode: "hlt", - translationId: "hltthb", - languageName: "Tuivang", - languageNameInEnglish: "Chin, Matu", - dialect: "Tuivang", - homeDomain: "ebible.org", - title: "Tuivang Holy Bible", - description: - "The Holy Bible in the Tuivang dialect of the Matu Chin language of Myanmar (Burma)", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Batupei Christian Fellowtship", - UpdateDate: "2023-01-03", - publicationURL: "http://ebible.org/hltthb/", - OTbooks: 2, - OTchapters: 181, - OTverses: 3376, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HLTTHB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hltthb2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tuivang Matu Chin Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2023-01-06", - }, - { - languageCode: "hmo", - translationId: "hmo", - languageName: "Hiri Motu", - languageNameInEnglish: "Motu, Hiri", - dialect: null, - homeDomain: "png.bible", - title: "Buka Helaga", - description: "The Holy Bible in the Hiri Motu language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1964, 1982, 1994 The Bible Society of Papua New Guinea", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/hmo/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22921, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HMOPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hmo1994eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Hiri Motu Bible", - PODISBN: "978-1-5313-0285-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "hns", - translationId: "hnsNT", - languageName: "Hindustani, Caribbean", - languageNameInEnglish: "Hindustani, Caribbean", - dialect: null, - homeDomain: "ebible.org", - title: "Parmeswar ke naawa poestak", - description: "New Testament in Hindustani, Caribbean (NS:hns:Hindustani, Caribbean)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/hnsNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7830, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HNSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hns2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Caribbean Hindustani NT", - PODISBN: "978-1-5313-0286-3", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "hop", - translationId: "hopNT", - languageName: "Hopi", - languageNameInEnglish: "Hopi", - dialect: null, - homeDomain: "ebible.org", - title: "God Lavayiyat A\u1e45 Puhuvasiwni", - description: "New Testament in Hopi (US:hop:Hopi)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/hopNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7921, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HOPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hop2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Hopi NT", - PODISBN: "978-1-5313-0287-0", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "hot", - translationId: "hot", - languageName: "Hot\u00ea-Mal\u00ea", - languageNameInEnglish: "Malei-Hote", - dialect: null, - homeDomain: "png.bible", - title: "Wap\u00f4mb\u00ea\u014b An\u00ea\u014b Ab\u00f4 Mathe\u014b", - description: "The New Testament in the Malei-Hote Language of Papua New Guinea", - Redistributable: true, - Copyright: - "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc. and The Mal\u00ea people", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/hot/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7706, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HOTWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hot2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Malei-Hote NT", - PODISBN: "978-1-5313-0288-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "hre", - translationId: "hre", - languageName: "Hre", - languageNameInEnglish: "Hre", - dialect: null, - homeDomain: "ebible.org", - title: "Sech Hadr\u00f2ih", - description: "Sech Hadr\u00f2ih", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/hre/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23140, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HREWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hre2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sech Hadr\u00f2ih", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-18", - }, - { - languageCode: "hrv", - translationId: "hrv", - languageName: "Hrvatski", - languageNameInEnglish: "Croatian", - dialect: null, - homeDomain: "ebible.org", - title: "Sveta Biblija", - description: - "The Holy Bible in the Croatian language, translated by Ivan \u0160ari\u0107 Sarajevo", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2019-12-16", - publicationURL: "http://ebible.org/hrv/", - OTbooks: 38, - OTchapters: 921, - OTverses: 23212, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 8, - DCchapters: 147, - DCverses: 4279, - FCBHID: "HRVIVA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hrv1942eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Croatian Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2019-12-17", - }, - { - languageCode: "hto", - translationId: "hto", - languageName: "Minica Huitoto", - languageNameInEnglish: "Huitoto, Minica", - dialect: null, - homeDomain: "ebible.org", - title: "Juzi\u00f1amui \u00d1uera Uai", - description: "New Testament in Huitoto, Minica", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/hto/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7929, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HTOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hto2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Minica Huitoto NT", - PODISBN: "978-1-5313-0289-4", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "hub", - translationId: "hubNT", - languageName: "Huambisa", - languageNameInEnglish: "Huambisa", - dialect: null, - homeDomain: "ebible.org", - title: "Yuusa chichame yaunchukia tura yamaram chichamjai aarmau", - description: "New Testament in Huambisa (PE:hub:Huambisa)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/hubNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7744, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HUBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hub2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Huambisa NT", - PODISBN: "978-1-5313-0290-0", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "hui", - translationId: "hui", - languageName: "Huli", - languageNameInEnglish: "Huli", - dialect: null, - homeDomain: "png.bible", - title: "Habo nalolene bi gahenge lo winigo ogo", - description: "The Holy Bible with Deuterocanon in the Huli Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1983, 1991, 2002 Bible Society of Papua New Guinea", - UpdateDate: "2014-12-11", - publicationURL: "http://png.bible/hui/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22137, - NTbooks: 27, - NTchapters: 260, - NTverses: 7855, - DCbooks: 12, - DCchapters: 147, - DCverses: 4314, - FCBHID: "HUIPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hui2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Huli Bible", - PODISBN: "978-1-5313-0291-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "hun", - translationId: "hun", - languageName: "Magyar", - languageNameInEnglish: "Magyar", - dialect: null, - homeDomain: "ebible.org", - title: "Biblica\u00ae Nyitott \u00dajsz\u00f6vets\u00e9g: \u00e9let, igazs\u00e1g \u00e9s vil\u00e1goss\u00e1g", - description: - "Hungarian: Biblica\u00ae Nyitott \u00dajsz\u00f6vets\u00e9g: \u00e9let, igazs\u00e1g \u00e9s vil\u00e1goss\u00e1g (New Testament) of Hungary", - Redistributable: true, - Copyright: "Copyright \u00a9 2021 Biblica, Inc.", - UpdateDate: "2021-11-15", - publicationURL: "http://ebible.org/hun/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HUNBIB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hun2021eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Hungarian Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-05-26", - }, - { - languageCode: "hus", - translationId: "husNT1971", - languageName: "Huastec", - languageNameInEnglish: "Huastec", - dialect: null, - homeDomain: "ebible.org", - title: "An it jilchith cau c\u02bcal i Ajatic Jesucristo", - description: "New Testament in Huastec San Luis Potosi; hus (MX:hus:Huastec)", - Redistributable: true, - Copyright: "Copyright \u00a9 1971 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/husNT1971/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HUSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hus1971eb", - rodCode: 4381.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Huastec San Luis Potosi NT", - PODISBN: "978-1-5313-0292-4", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "hus", - translationId: "husNT2005", - languageName: "Huastec", - languageNameInEnglish: "Huastec", - dialect: null, - homeDomain: "ebible.org", - title: "Nin t\u00e9nek k\u00e1wintal an ok\u02c0\u00f3xl\u00e1b", - description: "New Testament in Huastec Aquiche; hus (MX:hus:Huastec)", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/husNT2005/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7943, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HUSTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hus2005eb", - rodCode: 4681.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Huastec Aquiche NT", - PODISBN: "978-1-5313-0293-1", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "huu", - translationId: "huuNT", - languageName: "Huitoto, Murui", - languageNameInEnglish: "Huitoto, Murui", - dialect: null, - homeDomain: "ebible.org", - title: "Jusi\u00f1amui uai: Jusi\u00f1amui jito rafue illa rabenico", - description: "New Testament in Huitoto, Murui (PE:huu:Huitoto, Murui)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/huuNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7799, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HUUWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "huu2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Murui Huitoto", - PODISBN: "978-1-5313-0294-8", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "huv", - translationId: "huvNT", - languageName: "Huave, San Mateo Del Mar", - languageNameInEnglish: "Huave, San Mateo Del Mar", - dialect: null, - homeDomain: "ebible.org", - title: "Jayats nanderac w\u00fcx miteatii\u00fcts Jesucristo", - description: "New Testament in Huave, San Mateo Del Mar (MX:huv:Huave, San Mateo Del Mar)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/huvNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HUVTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "huv2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "San Mateo Del Mar Huave NT", - PODISBN: "978-1-5313-0295-5", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "hvn", - translationId: "hvn", - languageName: "Hawu", - languageNameInEnglish: "Hawu", - dialect: null, - homeDomain: "ebible.org", - title: "Ma\ua78cu", - description: "The Good News According to Mark in the Hawu language of Indonesia", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Unit Bahasa dan Budaya", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/hvn/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 16, - NTverses: 633, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HVNUBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hvn2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Hawu Mark", - PODISBN: "978-1-5313-0779-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "hwc", - translationId: "hwc", - languageName: "Hawai'i Pidgin", - languageNameInEnglish: "Hawai'i Pidgin", - dialect: null, - homeDomain: "ebible.org", - title: "Da Good An Spesho Book", - description: "Hawaii Pidgin Bible", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Hawaii Pidgin Bible Ministry", - UpdateDate: "2023-01-21", - publicationURL: "http://ebible.org/hwc/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23089, - NTbooks: 27, - NTchapters: 260, - NTverses: 7901, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "HWCWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "hwc2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Hawaii Pidgin Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2023-01-21", - }, - { - languageCode: "ian", - translationId: "ian", - languageName: "Ngepma Kwundi", - languageNameInEnglish: "Iatmul", - dialect: null, - homeDomain: "png.bible", - title: "GOD WAA NYAAG\u0197T", - description: "The New Testament in the Iatmul Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1975 Bible Society of Papua New Guinea", - UpdateDate: "2012-12-13", - publicationURL: "http://png.bible/ian/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7678, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IANWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ian1975eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Iatmul NT", - PODISBN: "978-1-5313-0297-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ibl", - translationId: "ibl", - languageName: null, - languageNameInEnglish: "Ibaloi", - dialect: null, - homeDomain: "ebible.org", - title: "Dibshon Mengi-kan Ni Pansigshan", - description: "Ibaloi: Dibshon Mengi-kan Ni Pansigshan (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/ibl/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7781, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IBLWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ibl2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ibaloi NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-18", - }, - { - languageCode: "ifa", - translationId: "ifa", - languageName: "Ifugao, Amganad", - languageNameInEnglish: "Ifugao, Amganad", - dialect: null, - homeDomain: "ebible.org", - title: "Nan Hapit Apu Dios", - description: "Ifugao, Amganad: Nan Hapit Apu Dios Bible", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-13", - publicationURL: "http://ebible.org/ifa/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7944, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IFAWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ifa2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ifugao, Amganad: Nan Hapit Apu Dios Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "ifb", - translationId: "ifb", - languageName: "Batad Ifugao", - languageNameInEnglish: "Batad Ifugao", - dialect: null, - homeDomain: "ebible.org", - title: "Nan Hapit Apo Dios", - description: "Ifugao, Batad: Nan Hapit Apo Dios (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-02-08", - publicationURL: "http://ebible.org/ifb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23108, - NTbooks: 27, - NTchapters: 260, - NTverses: 7919, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IFBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ifb2018eb", - rodCode: 10798.0, - textDirection: "ltr", - downloadable: true, - font: "FreeSerif", - shortTitle: "Ifugao, Batad: Nan Hapit Apo Dios (Bible)", - PODISBN: null, - script: "Latin", - sourceDate: "2021-02-09", - }, - { - languageCode: "ifk", - translationId: "ifk", - languageName: null, - languageNameInEnglish: "Ifugao, Tuwali", - dialect: null, - homeDomain: "ebible.org", - title: "Nan Kalin Apu Dios", - description: "Ifugao, Tuwali: Nan Kalin Apu Dios Bible", - Redistributable: false, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/ifk/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22206, - NTbooks: 27, - NTchapters: 260, - NTverses: 7756, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IFKWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ifk2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tuwali Ifugao Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-02", - }, - { - languageCode: "ifu", - translationId: "ifu", - languageName: null, - languageNameInEnglish: "Ifugao, Mayoyao", - dialect: null, - homeDomain: "ebible.org", - title: "Hapit apo jos", - description: "Ifugao, Mayoyao: Hapit apo jos New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/ifu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7882, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IFUWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ifu2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ifugao, Mayoyao: Hapit apo jos New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-18", - }, - { - languageCode: "ify", - translationId: "ify", - languageName: "Antipolo Ifugao", - languageNameInEnglish: "Antipolo Ifugao", - dialect: null, - homeDomain: "ebible.org", - title: "Ya ehel apu Dios", - description: "Kallahan, Keley-i: Ya ehel apu Dios Bible", - Redistributable: false, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/ify/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22210, - NTbooks: 27, - NTchapters: 260, - NTverses: 7723, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IFYWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ify2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Antipolo Ifugao Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "ign", - translationId: "ignNT", - languageName: "Ignaciano", - languageNameInEnglish: "Ignaciano", - dialect: null, - homeDomain: "ebible.org", - title: "Eta T\u00e1urinaquene m\u00e1echajiriruvahi ema Viya eta viyehe, ticaijare puito Eta Nuevo Testamento", - description: "New Testament in Ignaciano (BL:ign:Ignaciano)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/ignNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7483, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IGNSBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ign2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ignaciano NT", - PODISBN: "978-1-5313-0298-6", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "ikk", - translationId: "ikkNT", - languageName: "Ika", - languageNameInEnglish: "Ika", - dialect: null, - homeDomain: "ebible.org", - title: "Elu \u1ecch\u1ee5n: \u1eb8k\u1ee5kw\u1ecd-Ns\u1ecd (Az\u1ee5\u1ee5n \u1ecch\u1ee5n r\u1ecbn'a)", - description: "Revision of New Testament in Ika", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe", - UpdateDate: "2019-08-09", - publicationURL: "http://ebible.org/ikkNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IKKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ikk2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ika NT", - PODISBN: "978-1-5313-0299-3", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "ikw", - translationId: "ikwNT", - languageName: "Ikwere", - languageNameInEnglish: "Ikwere", - dialect: null, - homeDomain: "ebible.org", - title: "Te\u0323sitamenti Ikne n'\u1eccnu Ikwere", - description: "New Testament in Ikwere", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe", - UpdateDate: "2019-08-09", - publicationURL: "http://ebible.org/ikwNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IKWWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ikw2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ikwere NT", - PODISBN: "978-1-5313-0300-6", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "ilo", - translationId: "iloulb", - languageName: "Ilocano", - languageNameInEnglish: "Ilocano", - dialect: null, - homeDomain: "ebible.org", - title: "Ti Biblia", - description: - "Unlocked Literal Bible in the Ilocano language of the Republic of the Philippines", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Door43 World Missions Community", - UpdateDate: "2020-06-10", - publicationURL: "http://ebible.org/iloulb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23144, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ILOULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "iloulb2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ilocano Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-06-10", - }, - { - languageCode: "imo", - translationId: "imo", - languageName: "Imbo Ungu", - languageNameInEnglish: "Imbo Ungu", - dialect: null, - homeDomain: "png.bible", - title: "UNGU TUKUMEMU", - description: "The New Testament in the Imbo Ungu Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1997 The Bible League", - UpdateDate: "2015-01-02", - publicationURL: "http://png.bible/imo/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7725, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IMOTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "imo1997eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Imbo Ungu NT", - PODISBN: "978-1-5313-0301-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "inb", - translationId: "inb", - languageName: "Inga", - languageNameInEnglish: "Inga", - dialect: null, - homeDomain: "ebible.org", - title: "Kaipimi Taita Dius Rimaku", - description: "New Testament in Inga", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/inb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7940, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "INBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "inb2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Inga NT", - PODISBN: "978-1-5313-0302-0", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "ind", - translationId: "ind", - languageName: "Indonesian", - languageNameInEnglish: "Indonesian", - dialect: null, - homeDomain: "ebible.org", - title: "Perjanjian Baru dalam Terjemahan Sederhana Indonesia Edisi Kedua", - description: - "The New Testament in the Indonesian language, Perjanjian Baru dalam Terjemahan Sederhana Indonesia Edisi Kedua translation", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 oleh Yayasan Alkitab BahasaKita (Albata)", - UpdateDate: "2020-11-11", - publicationURL: "http://ebible.org/ind/", - OTbooks: 6, - OTchapters: 120, - OTverses: 3121, - NTbooks: 27, - NTchapters: 260, - NTverses: 7725, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "INDOBO", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ind2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Indonesian NT (TSI)", - PODISBN: "978-1-5313-0832-2", - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "ind", - translationId: "indags", - languageName: "bahasa Indonesia", - languageNameInEnglish: "Indonesian", - dialect: null, - homeDomain: "ebible.org", - title: "Alkitab Gratis untuk Semua", - description: "The Holy Bible in Indonesian, Bible for All translation", - Redistributable: true, - Copyright: "Copyright \u00a9 2021 Jonathan Gallagher", - UpdateDate: "2022-03-07", - publicationURL: "http://ebible.org/indags/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "INDAGS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "indags2021eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Indonesian Bible for All", - PODISBN: null, - script: "Latin", - sourceDate: "2022-07-11", - }, - { - languageCode: "ino", - translationId: "ino", - languageName: "Inoke-Yate", - languageNameInEnglish: "Inoke-Yate", - dialect: null, - homeDomain: "png.bible", - title: "Anumaya Koti'a Saufa Lami'nea Ke", - description: "The New Testament in the Inoke-Yate Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1992 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-17", - publicationURL: "http://png.bible/ino/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7481, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "INOTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ino1992eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Inoke-Yate NT", - PODISBN: "978-1-5313-0303-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ino", - translationId: "ino2013", - languageName: "Inoke-Yate", - languageNameInEnglish: "Inoke-Yate", - dialect: null, - homeDomain: "png.bible", - title: "Anumaya Koti\ua78ca Saufa Lami\ua78cnea Ke", - description: "New Testament in Inoke-Yate", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-11", - publicationURL: "http://png.bible/ino2013/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7481, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "INOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ino2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "New Testament in Inoke-Yate", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "iou", - translationId: "iou", - languageName: "Tuma-Irumu", - languageNameInEnglish: "Tuma-Irumu", - dialect: null, - homeDomain: "png.bible", - title: "Anutu T\u00e4\u014bo Man", - description: - "The New Testament and portions of the Old Testament in the Tuma-Irumu Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1997, 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-09-20", - publicationURL: "http://png.bible/iou/", - OTbooks: 29, - OTchapters: 813, - OTverses: 4956, - NTbooks: 27, - NTchapters: 260, - NTverses: 7672, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IOUTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "iou2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tuma-Irumu Bible", - PODISBN: "978-1-5313-0304-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ipi", - translationId: "ipi", - languageName: "Ipili", - languageNameInEnglish: "Ipili", - dialect: null, - homeDomain: "png.bible", - title: "IPILI NUTESAMENE", - description: "The New Testament in the Ipili Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Bible Society of Papua New Guinea", - UpdateDate: "2013-12-11", - publicationURL: "http://png.bible/ipi/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 6196, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IPIPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ipi2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Ipili NT", - PODISBN: "978-1-5313-0305-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "iqw", - translationId: "iqw", - languageName: null, - languageNameInEnglish: "Ikwo", - dialect: null, - homeDomain: "ebible.org", - title: "Bay\u1ecbburu Ikwo", - description: "Ikwo: Bay\u1ecbburu Ikwo Bible", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/iqw/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23138, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IQWWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "iqw2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ikwo: Bay\u1ecbburu Ikwo Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-20", - }, - { - languageCode: "isd", - translationId: "isd", - languageName: null, - languageNameInEnglish: "Isnag", - dialect: null, - homeDomain: "ebible.org", - title: "Ya b\u00e0b\u00e0n\u00e1n ne Dios nga nes\u00far\u00e1t kiya baru wa t\u00falag Genesis se Exodus", - description: - "Isnag: Ya b\u00e0b\u00e0n\u00e1n ne Dios nga nes\u00far\u00e1t kiya baru wa t\u00falag Genesis se Exodus New Testament+", - Redistributable: false, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/isd/", - OTbooks: 2, - OTchapters: 90, - OTverses: 2722, - NTbooks: 27, - NTchapters: 260, - NTverses: 7898, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ISDWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "isd2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Isnag: Ya b\u00e0b\u00e0n\u00e1n ne Dios nga nes\u00far\u00e1t kiya baru wa t\u00falag Genesis se Exodus New Testament+", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "isn", - translationId: "isn", - languageName: "Kiisanzu", - languageNameInEnglish: "Isanzu", - dialect: null, - homeDomain: "ebible.org", - title: "Isanzu Bible", - description: "The New Testament in the Isanzu language of Tanzania", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door 43 International Mission Community", - UpdateDate: "2020-07-31", - publicationURL: "http://ebible.org/isn/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ISNULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "isn2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Isanzu NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-07-24", - }, - { - languageCode: "ita", - translationId: "ita1885", - languageName: "Italiano", - languageNameInEnglish: "Italian", - dialect: null, - homeDomain: "ebible.org", - title: "Sacra Bibbia", - description: - "The Holy Bible in Italian, translated by Giovanni Diodati in 1641 and revised in 1821", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-07-02", - publicationURL: "http://ebible.org/ita1885/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23138, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ITADIO", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ita1885eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Italian Diodati Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-07-03", - }, - { - languageCode: "ita", - translationId: "ita1927", - languageName: "lingua italiana", - languageNameInEnglish: "Italian", - dialect: null, - homeDomain: "ebible.org", - title: "Riveduta Bibbia 1927", - description: "The Holy Bible in Italian, Riveduta 1927", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2019-12-17", - publicationURL: "http://ebible.org/ita1927/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ITARIV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ita1927eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Italian Riveduta Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2019-12-18", - }, - { - languageCode: "ivb", - translationId: "ivb", - languageName: null, - languageNameInEnglish: "Ibatan", - dialect: null, - homeDomain: "ebible.org", - title: "Chirin ni \u0100po Dyos", - description: "Ibatan: Chirin ni \u0100po Dyos (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/ivb/", - OTbooks: 27, - OTchapters: 382, - OTverses: 10188, - NTbooks: 27, - NTchapters: 260, - NTverses: 7940, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IVBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ivb2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ibatan Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-18", - }, - { - languageCode: "ivv", - translationId: "ivv", - languageName: null, - languageNameInEnglish: "Ivatan", - dialect: null, - homeDomain: "ebible.org", - title: "No Vayo A Testamento, Salmo, No Libro No Proverbo", - description: "New Testament plus Psalms and Proverbs", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/ivv/", - OTbooks: 2, - OTchapters: 72, - OTverses: 1599, - NTbooks: 27, - NTchapters: 260, - NTverses: 7939, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IVVWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ivv2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ivatan Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "iws", - translationId: "iws", - languageName: "Sepik Iwam", - languageNameInEnglish: "Iwam, Sepik", - dialect: null, - homeDomain: "png.bible", - title: "Yai W\u0268n K\u0268biya", - description: "The New Testament in the Sepik Iwam Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1989 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/iws/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IWSTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "iws1989eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sepik Iwam NT", - PODISBN: "978-1-5313-0306-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ixl", - translationId: "ixlCNT", - languageName: "Ixil", - languageNameInEnglish: "Ixil", - dialect: "Cotzal", - homeDomain: "ebible.org", - title: "Viak\u02bcla txumb\u02bcal u tioxh", - description: "New Testament in Ixil Cotzal; ixl (GT:ixl:Ixil)", - Redistributable: true, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-25", - publicationURL: "http://ebible.org/ixlCNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7899, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IXLWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ixlC2001eb", - rodCode: 4781.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Ixil Cotzal NT", - PODISBN: "978-1-5313-0307-5", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "ixl", - translationId: "ixlNNT", - languageName: "Ixil", - languageNameInEnglish: "Ixil", - dialect: "Nebaj", - homeDomain: "ebible.org", - title: "U ak' Testamento tu kuyob'al", - description: "New Testament in Ixil Nebaj; ixl (GT:ixl:Ixil)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-12-07", - publicationURL: "http://ebible.org/ixlNNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IXIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ixlN2008eb", - rodCode: 486.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ixil Nebaj NT", - PODISBN: "978-1-5313-0308-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "izz", - translationId: "izz", - languageName: null, - languageNameInEnglish: "Izii", - dialect: null, - homeDomain: "ebible.org", - title: "Bay\u1ecbburu Izii", - description: "Izii: Bay\u1ecbburu Izii Bible", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/izz/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23136, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "IZZWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "izz2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Izii Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "jaa", - translationId: "jaa", - languageName: null, - languageNameInEnglish: "Jamamad\u00ed", - dialect: null, - homeDomain: "ebible.org", - title: "Teoso Ka Yama Hani", - description: "Jamamad\u00ed: Teoso Ka Yama Hani (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/jaa/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7821, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "JAAWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "jaa2020eb", - rodCode: 3816.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Jarawara NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "jac", - translationId: "jacNT", - languageName: "Jakalteko", - languageNameInEnglish: "Jakalteko", - dialect: null, - homeDomain: "ebible.org", - title: "Nuevo Testamento yin\u0308 abxubal", - description: "New Testament in Jakalteko Eastern; jac (GT:jac:Jakalteko)", - Redistributable: true, - Copyright: "Copyright \u00a9 1997 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-05-05", - publicationURL: "http://ebible.org/jacNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7918, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "JACWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "jacNT1997eb", - rodCode: 542.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Eastern Jakalteko NT", - PODISBN: "978-1-5313-0309-9", - script: "Latin", - sourceDate: "2014-04-25", - }, - { - languageCode: "jae", - translationId: "jae", - languageName: "Jabem", - languageNameInEnglish: "Yabem", - dialect: null, - homeDomain: "png.bible", - title: "BIBOLO DABU\u014a", - description: "The Holy Bible in the Yabem language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1980 Bible Society of Papua New Guinea", - UpdateDate: "2015-01-03", - publicationURL: "http://png.bible/jae/", - OTbooks: 31, - OTchapters: 514, - OTverses: 10480, - NTbooks: 26, - NTchapters: 247, - NTverses: 7649, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "JAEPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "jae1980eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yabem Bible", - PODISBN: "978-1-5313-0310-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "jao", - translationId: "jao", - languageName: "Yanyuwa", - languageNameInEnglish: "Yanyuwa", - dialect: null, - homeDomain: "ebible.org", - title: "Selections from Luke, Mark, Acts, Genesis, Ruth, and Romans", - description: - "Selections from Luke, Mark, Acts, Genesis, Ruth, and Romans in the Yanyuwa language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1980 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-08-27", - publicationURL: "http://ebible.org/jao/", - OTbooks: 2, - OTchapters: 15, - OTverses: 420, - NTbooks: 4, - NTchapters: 22, - NTverses: 396, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "JAOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "jao1980eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Yanyuwa Bible portions", - PODISBN: null, - script: "Latin", - sourceDate: "2019-08-28", - }, - { - languageCode: "jib", - translationId: "jib", - languageName: null, - languageNameInEnglish: "Jibu", - dialect: null, - homeDomain: "ebible.org", - title: "Jir Shidun", - description: "Jibu: Jir Shidun (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/jib/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7947, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "JIBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "jib2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Jibu NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "jic", - translationId: "jicNT", - languageName: "Tol", - languageNameInEnglish: "Tol", - dialect: null, - homeDomain: "ebible.org", - title: "Dios Tjevele Jupj '\u00dcs\u00fcs La Qjuisiji Jesucristo Mpes", - description: "New Testament in Tol (HO:jic:Tol)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/jicNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7922, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "JICWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "jic2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tol NT", - PODISBN: "978-1-5313-0311-2", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "jid", - translationId: "jid", - languageName: "Jida", - languageNameInEnglish: "Bu", - dialect: null, - homeDomain: "ebible.org", - title: "Bu New Testament", - description: "The New Testament in the Bu language of Nigeria", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door43 World Missions Community", - UpdateDate: "2020-07-21", - publicationURL: "http://ebible.org/jid/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "JIDNBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "jid2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Bu NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-07-22", - }, - { - languageCode: "jiv", - translationId: "jivNT", - languageName: "Shuar", - languageNameInEnglish: "Shuar", - dialect: null, - homeDomain: "ebible.org", - title: "Yus Pap\u00ed: Shuarja\u0331i\u0331 Yus Yamaram Chicham Najanamu", - description: "New Testament in Shuar (EC:jiv:Shuar)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/jivNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7815, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "JIVAIE", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "jiv2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "New Testament in Shuar", - PODISBN: "978-1-5313-0312-9", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "jni", - translationId: "jni", - languageName: "Ajanji", - languageNameInEnglish: "Janji", - dialect: null, - homeDomain: "ebible.org", - title: "Janji Bible", - description: "The New Testament in the Janji language of Nigeria", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door 43 International Mission Community", - UpdateDate: "2020-07-31", - publicationURL: "http://ebible.org/jni/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7952, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "JNIULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "jni2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Janji NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-07-31", - }, - { - languageCode: "jvn", - translationId: "jvnNT", - languageName: "Javanese, Caribbean", - languageNameInEnglish: "Javanese, Caribbean", - dialect: null, - homeDomain: "ebible.org", - title: "Kitab sutyi prejanjian anyar ing Basa Jawa Suriname sing gampang", - description: "New Testament in Javanese, Caribbean (NS:jvn:Javanese, Caribbean)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-27", - publicationURL: "http://ebible.org/jvnNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7753, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "JVNWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "jvn2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Caribbean Javanese NT", - PODISBN: "978-1-5313-0314-3", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "kan", - translationId: "kan2010", - languageName: "\u0c95\u0ca8\u0ccd\u0ca8\u0ca1", - languageNameInEnglish: "Kannada", - dialect: null, - homeDomain: "ebible.org", - title: "\u0caa\u0cb5\u0cbf\u0ca4\u0ccd\u0cb0 \u0cac\u0cc6\u0cd6\u0cac\u0cb2\u0ccd, \u0c88\u0cb8\u0cbf \u0c93\u0ca6\u0cc1\u0cb5\u0cbf\u0c95\u0cc6 \u0c86\u0cb5\u0cc3\u0ca4\u0ccd\u0ca4\u0cbf", - description: "The Holy Bible, Easy Reading Version, in the Kannada language of India", - Redistributable: false, - Copyright: "Copyright \u00a9 1992-2010 World Bible Translation Center", - UpdateDate: "2013-11-06", - publicationURL: "http://ebible.org/kan2010/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22832, - NTbooks: 27, - NTchapters: 260, - NTverses: 7905, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KANWTC", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kan2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Akshar Unicode", - shortTitle: "Kannada Easy Reading Version", - PODISBN: null, - script: "Kannada", - sourceDate: "2020-10-09", - }, - { - languageCode: "kan", - translationId: "kan2017", - languageName: "\u0c95\u0ca8\u0ccd\u0ca8\u0ca1", - languageNameInEnglish: "Kannada", - dialect: null, - homeDomain: "ebible.org", - title: "\u0c87\u0c82\u0ca1\u0cbf\u0caf\u0ca8\u0ccd \u0cb0\u0cbf\u0cb5\u0cc8\u0c9c\u0ccd\u0ca1\u0ccd \u0cb5\u0cb0\u0ccd\u0cb8\u0ca8\u0ccd (IRV) - \u0c95\u0ca8\u0ccd\u0ca8\u0ca1 - 2019", - description: "The Indian Revised Version Holy Bible in the Kannada language of India", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Bridge Connectivity Solutions", - UpdateDate: "2020-02-11", - publicationURL: "http://ebible.org/kan2017/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23141, - NTbooks: 27, - NTchapters: 260, - NTverses: 7890, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KANIRV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kan2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Kannada Indian Revised Version Bible", - PODISBN: null, - script: "Kannada", - sourceDate: "2020-01-25", - }, - { - languageCode: "kaq", - translationId: "kaqNT", - languageName: "Capanahua", - languageNameInEnglish: "Capanahua", - dialect: null, - homeDomain: "ebible.org", - title: "Noquen hihbaan joi", - description: "New Testament in Capanahua (PE:kaq:Capanahua)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/kaqNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7924, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KAQWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kaq2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Capanahua NT", - PODISBN: "978-1-5313-0315-0", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "kbc", - translationId: "kbcNT", - languageName: "Kadiw\u00e9u", - languageNameInEnglish: "Kadiw\u00e9u", - dialect: null, - homeDomain: "ebible.org", - title: "Gela Liwai Lota\u0261\u0336ana\u0261\u0336axi Aneotedo\u0261\u0336oji", - description: "New Testament in Kadiw\u00e9u (BR:kbc:Kadiw\u00e9u)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-27", - publicationURL: "http://ebible.org/kbcNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7866, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KBCWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kbc2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kadiw\u00e9u NT", - PODISBN: "978-1-5313-0316-7", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "kbh", - translationId: "kbh", - languageName: "Cams\u00e1", - languageNameInEnglish: "Cams\u00e1", - dialect: null, - homeDomain: "ebible.org", - title: "B\u00ebngbe B\u00ebtsa Cab\u00ebngaftaca Entsoyebuambna", - description: "New Testament in Cams\u00e1", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-05-05", - publicationURL: "http://ebible.org/kbh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7900, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KBHWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kbh2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Cams\u00e1 NT", - PODISBN: "978-1-5313-0317-4", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "kbm", - translationId: "kbm", - languageName: "Iwal", - languageNameInEnglish: "Iwal", - dialect: null, - homeDomain: "png.bible", - title: "YISU KILISI ANE BINGE VIE GIENGK IWAL AVOS", - description: "The New Testament in the Iwal Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1984 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-03", - publicationURL: "http://png.bible/kbm/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7798, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KBMTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kbm1984eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Iwal NT", - PODISBN: "978-1-5313-0318-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kbo", - translationId: "kbo", - languageName: null, - languageNameInEnglish: "Keliko", - dialect: null, - homeDomain: "ebible.org", - title: "\u1ee4\u0301\ua78cd\u1ee5\u0301k\u1ecd\u0301 M\u00fak\u00e9 M\u00fang\u00fa v\u00e9 r\u1ecb", - description: - "Keliko: \u1ee4\u0301\ua78cd\u1ee5\u0301k\u1ecd\u0301 M\u00fak\u00e9 M\u00fang\u00fa v\u00e9 r\u1ecb New Testament+", - Redistributable: false, - Copyright: "Copyright \u00a9 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/kbo/", - OTbooks: 4, - OTchapters: 79, - OTverses: 2211, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KBOWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kbo2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Keliko Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "kbq", - translationId: "kbq", - languageName: "Kamano-Kafe", - languageNameInEnglish: "Kamano", - dialect: null, - homeDomain: "png.bible", - title: "Anumzamofo Ruotage Avontafere", - description: "The Holy Bible in the Kamano-Kafe language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2022 Tyndale Bible Translators", - UpdateDate: "2023-01-11", - publicationURL: "http://png.bible/kbq/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23140, - NTbooks: 27, - NTchapters: 260, - NTverses: 7952, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KBQWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kbq2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Kamano-Kafe Bible", - PODISBN: "978-1-5313-0319-8", - script: "Latin", - sourceDate: "2023-01-11", - }, - { - languageCode: "kby", - translationId: "kby", - languageName: null, - languageNameInEnglish: "Kanuri, Manga", - dialect: null, - homeDomain: "ebible.org", - title: "Manga Kanuri Translation", - description: "Kanuri, Manga: Manga Kanuri Translation (Portions)", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/kby/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 4, - NTchapters: 89, - NTverses: 3779, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KBYWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kby2018eb", - rodCode: 3015.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kanuri, Manga: Manga Kanuri Translation (Portions)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "kdc", - translationId: "kdc", - languageName: "Kutu", - languageNameInEnglish: "Kutu", - dialect: null, - homeDomain: "ebible.org", - title: "Lagano da Sambi kwa Wanhu Wose", - description: "The New Testament in Kutu", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://ebible.org/kdc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KDCPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kdc2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kutu NT", - PODISBN: "978-1-5313-0320-4", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "kde", - translationId: "kde", - languageName: "Makonde", - languageNameInEnglish: "Makonde", - dialect: null, - homeDomain: "ebible.org", - title: "LILAILANO LYAHAMBI LYA NNUNGU KWA VANU VAMMALELE", - description: - "Portions of the Holy Bible in the Makonde language of Mozambique and Tanzania", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-12-29", - publicationURL: "http://ebible.org/kde/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7948, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KDEWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kde2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Makonde Bible", - PODISBN: "978-1-5313-0321-1", - script: "Latin", - sourceDate: "2019-12-30", - }, - { - languageCode: "kdh", - translationId: "kdh", - languageName: null, - languageNameInEnglish: "Tem", - dialect: null, - homeDomain: "ebible.org", - title: "Taw\u00farat\u0269 na Injiila d\u025b\u0301\u025b f\u0254\u0254l\u0269\u0301n\u0269", - description: - "Tem: Taw\u00farat\u0269 na Injiila d\u025b\u0301\u025b f\u0254\u0254l\u0269\u0301n\u0269 Portions", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/kdh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 28, - NTverses: 1071, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KDHWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kdh2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tem Matthew", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-02", - }, - { - languageCode: "kdl", - translationId: "kdlNT", - languageName: "Tsikimba", - languageNameInEnglish: "Tsikimba", - dialect: null, - homeDomain: "ebible.org", - title: "Kazuwamgbani ka savu n Tsikimba n a\u0253on a \u0257a a \u0257anga\u0331sai a kazuwamgbani ka cau", - description: "New Testament in Tsikimba (NI:kdl:Tsikimba)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-08-09", - publicationURL: "http://ebible.org/kdlNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7910, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KDLWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kdlNT2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tsikimba NT", - PODISBN: "978-1-5313-0322-8", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "kek", - translationId: "kekNT", - languageName: "Q'eqchi'", - languageNameInEnglish: "Q'eqchi'", - dialect: null, - homeDomain: "ebible.org", - title: "Li Santil hu", - description: "Bible in Q'eqchi' (GT:kek:Q'eqchi')", - Redistributable: true, - Copyright: "Copyright \u00a9 2000 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/kekNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KEKIBS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kek2000eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Q'eqchi' Bible", - PODISBN: "978-1-5313-0323-5", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "ken", - translationId: "kenNT", - languageName: "Kenyang", - languageNameInEnglish: "Kenyang", - dialect: null, - homeDomain: "ebible.org", - title: "\u0190k\u00e1ti Nku Nk\u0254", - description: "New Testament in Kenyang (CM:ken:Kenyang)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-27", - publicationURL: "http://ebible.org/kenNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7948, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KENWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ken2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kenyang NT", - PODISBN: "978-1-5313-0324-2", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "kew", - translationId: "kew", - languageName: "West Kewa", - languageNameInEnglish: "West Kewa", - dialect: null, - homeDomain: "png.bible", - title: "Gotena Epe Agaa", - description: - "Portions of Genesis, Ruth, Proverbs, Ecclesiastes, and The New Testament in the West Kewa Language of Papua New Guinea", - Redistributable: true, - Copyright: - "Copyright \u00a9 2003 The Bible Society of Papua New Guinea in cooperation with Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/kew/", - OTbooks: 4, - OTchapters: 58, - OTverses: 1475, - NTbooks: 27, - NTchapters: 260, - NTverses: 7919, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KEWPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kew2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "West Kewa Bible", - PODISBN: "978-1-5313-0325-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "key", - translationId: "key", - languageName: null, - languageNameInEnglish: "Kupia", - dialect: null, - homeDomain: "ebible.org", - title: "Kupia New Testament", - description: "Kupia: Kupia New Testament (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/key/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7929, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KEYWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "key2019eb", - rodCode: 3455.0, - textDirection: "ltr", - downloadable: true, - font: "Akshar Unicode", - shortTitle: "Kupia NT", - PODISBN: null, - script: "Telugu", - sourceDate: "2020-11-19", - }, - { - languageCode: "kfc", - translationId: "kfc", - languageName: null, - languageNameInEnglish: "Konda-Dora", - dialect: null, - homeDomain: "ebible.org", - title: "\u0c15\u0c4a\u0c02\u0c21 \u0c2c\u0c3e\u0c38\u0c26\u0c41 \u0c28\u0c46\u0c17\u0c4d\u0c17\u0c3f \u0c15\u0c2c\u0c4d\u0c30\u0c41 2006", - description: "Konda Dora New Testament which was published in 2006", - Redistributable: false, - Copyright: "Copyright \u00a9 2006 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/kfc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7606, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KFCWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kfc2006eb", - rodCode: 3457.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Konda NT", - PODISBN: null, - script: "Telugu", - sourceDate: "2020-12-02", - }, - { - languageCode: "kgf", - translationId: "kgf", - languageName: "Mongi", - languageNameInEnglish: "Kube", - dialect: null, - homeDomain: "png.bible", - title: "SISIPAC AC \u024aELIA", - description: "The New Testament and Psalms in the Kube Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Global Bible Translators", - UpdateDate: "2012-11-23", - publicationURL: "http://png.bible/kgf/", - OTbooks: 1, - OTchapters: 150, - OTverses: 2449, - NTbooks: 27, - NTchapters: 260, - NTverses: 7936, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KGFGBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kgf2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Kube NT+Psalms", - PODISBN: "978-1-5313-0326-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kgk", - translationId: "kgkNT", - languageName: "Kaiw\u00e1", - languageNameInEnglish: "Kaiw\u00e1", - dialect: null, - homeDomain: "ebible.org", - title: "Nhandej\u00e1ry Nhe'\u1ebd", - description: "New Testament in Kaiw\u00e1 (BR:kgk:Kaiw\u00e1)", - Redistributable: true, - Copyright: "Copyright \u00a9 2006 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-27", - publicationURL: "http://ebible.org/kgkNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7669, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KGKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kgk2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kaiw\u00e1 NT", - PODISBN: "978-1-5313-0327-3", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "kgp", - translationId: "kgpNT", - languageName: "Kaingang", - languageNameInEnglish: "Kaingang", - dialect: null, - homeDomain: "ebible.org", - title: "Top\u1ebd v\u0129 r\u00e1", - description: "New Testament in Kaingang (BR:kgp:Kaingang)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-04", - publicationURL: "http://ebible.org/kgpNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7920, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KGPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kgpNT2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kaingang NT", - PODISBN: "978-1-5313-0328-0", - script: "Latin", - sourceDate: "2022-03-25", - }, - { - languageCode: "khm", - translationId: "khm", - languageName: "Khmer", - languageNameInEnglish: "Central Khmer", - dialect: null, - homeDomain: "ebible.org", - title: "\u1796\u17d2\u179a\u17c7\u1782\u1798\u17d2\u1796\u17b8\u179a\u1781\u17d2\u1798\u17c2\u179a\u1794\u1785\u17d2\u1785\u17bb\u1794\u17d2\u1794\u1793\u17d2\u1793 \u17e2\u17e0\u17e0\u17e5", - description: - "Khmer Standard Version of the Holy Bible in the Cambodian dialect of the Khmer language. This edition omits footnotes and introductions.", - Redistributable: false, - Copyright: "Copyright \u00a9 1997, 2005 Bible Society in Cambodia", - UpdateDate: "2012-11-24", - publicationURL: "http://ebible.org/khm/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23143, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KHMKSV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "khmKSV2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: false, - font: "Hanuman", - shortTitle: "Khmer Standard Version", - PODISBN: null, - script: "Khmer", - sourceDate: "2012-11-24", - }, - { - languageCode: "khm", - translationId: "khm-h", - languageName: "Khmer", - languageNameInEnglish: "Central Khmer", - dialect: null, - homeDomain: "ebible.org", - title: "\u1796\u17d2\u179a\u17c7\u1782\u1798\u17d2\u1796\u17b8\u179a\u1781\u17d2\u1798\u17c2\u179a\u1794\u1780\u1794\u17d2\u179a\u17c2\u1785\u17b6\u179f\u17cb \u17e1\u17e9\u17e5\u17e4", - description: - "The Holy Bible in the Cambodian dialect of the Khmer language, Hammond 1954 translation. This edition omits introductions and footnotes.", - Redistributable: false, - Copyright: "Copyright \u00a9 1954, 1962 Bible Society in Cambodia", - UpdateDate: "1962-01-01", - publicationURL: "http://ebible.org/khm-h/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23144, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KHMKHV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "khmH1962eb", - rodCode: null, - textDirection: "ltr", - downloadable: false, - font: "Hanuman", - shortTitle: "Khmer Hammond Translation", - PODISBN: null, - script: "Khmer", - sourceDate: "2011-12-10", - }, - { - languageCode: "khs", - translationId: "khs", - languageName: "Kasua", - languageNameInEnglish: "Kasua", - dialect: null, - homeDomain: "png.bible", - title: "Kokolo Kao Tesene Solo", - description: "The New Testament in the Kasua language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-08-11", - publicationURL: "http://png.bible/khs/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7851, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KHSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "khs2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kasua NT", - PODISBN: null, - script: "Latin", - sourceDate: "2019-08-11", - }, - { - languageCode: "khz", - translationId: "khz", - languageName: "Kalo (Keapara)", - languageNameInEnglish: "Keapara", - dialect: "Kalo", - homeDomain: "png.bible", - title: "VEKAPAWAI VALIGUNA", - description: - "The New Testament in the Kalo Dialect of the Keapara Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 The Bible Society of Papua New Guinea", - UpdateDate: "2012-01-18", - publicationURL: "http://png.bible/khz/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7952, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KHZPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "khz2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Keapara Kalo NT", - PODISBN: "978-1-5313-0329-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kij", - translationId: "kij", - languageName: "Kiriwina", - languageNameInEnglish: "Kilivila", - dialect: null, - homeDomain: "png.bible", - title: "Buki Pilabumaboma Kabutubogwa Deli Kabutuvau", - description: "Kilivila: Buki Pilabumaboma Kabutubogwa Deli Kabutuvau Bible", - Redistributable: true, - Copyright: "Copyright \u00a9 1984 Bible Society of Papua New Guinea", - UpdateDate: "2022-03-04", - publicationURL: "http://png.bible/kij/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22253, - NTbooks: 27, - NTchapters: 260, - NTverses: 7919, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KIJPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kij1984eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kilivila: Buki Pilabumaboma Kabutubogwa Deli Kabutuvau Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2022-03-05", - }, - { - languageCode: "kik", - translationId: "kik", - languageName: "Kikuyu", - languageNameInEnglish: "Gikuyu", - dialect: null, - homeDomain: "ebible.org", - title: "Biblica\u00ae Kiugo G\u0129theru K\u0129a Ngai K\u0129hing\u0169re", - description: - "Gikuyu: Biblica\u00ae Kiugo G\u0129theru K\u0129a Ngai K\u0129hing\u0169re (Bible) of Kenya", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Biblica, Inc.", - UpdateDate: "2021-11-15", - publicationURL: "http://ebible.org/kik/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KIKBIB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kik2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kikuyu Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-05-18", - }, - { - languageCode: "kiw", - translationId: "kiw", - languageName: "Kope", - languageNameInEnglish: "Kiwai, Northeast", - dialect: "Kope", - homeDomain: "png.bible", - title: "Pai meai Ruka-ro i\ua78cati emerai-ka", - description: - "The Gospel of Luke in the Kope dialect of the Northeast Kiwai language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2022 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-08-19", - publicationURL: "http://png.bible/kiw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 24, - NTverses: 1143, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KIWWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kiw2022eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kope Luke", - PODISBN: null, - script: "Latin", - sourceDate: "2022-08-18", - }, - { - languageCode: "kiz", - translationId: "kiz", - languageName: "Kese", - languageNameInEnglish: "Kisi", - dialect: null, - homeDomain: "ebible.org", - title: "Kisi Bible", - description: "The New Testament in the Kisi language of Tanzania", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door 43 International Mission Community", - UpdateDate: "2020-07-31", - publicationURL: "http://ebible.org/kiz/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7943, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KIZULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kiz2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kisi NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-07-29", - }, - { - languageCode: "kje", - translationId: "kjeNT", - languageName: "Kisar", - languageNameInEnglish: "Kisar", - dialect: null, - homeDomain: "ebible.org", - title: "Makromod lalap lirna wawan", - description: "New Testament in Kisar", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Yayasan Sumber Sejahtera", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/kjeNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7843, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KJEWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kje2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kisar NT", - PODISBN: "978-1-5313-0330-3", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "kjl", - translationId: "kjl", - languageName: null, - languageNameInEnglish: "Kham, Western Parbate", - dialect: null, - homeDomain: "ebible.org", - title: "\u0938\u093e\u0903\u0930\u094b \u092c\u093e\u091a\u093e", - description: - "Kham, Western Parbate: \u0938\u093e\u0903\u0930\u094b \u092c\u093e\u091a\u093e (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/kjl/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7934, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KJLWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kjl2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Magar Kham NT", - PODISBN: null, - script: "Devanagari", - sourceDate: "2020-11-19", - }, - { - languageCode: "kjn", - translationId: "kjn", - languageName: "Guguminjen", - languageNameInEnglish: "Kunjen", - dialect: "Oykangand", - homeDomain: "ebible.org", - title: "Kunjen Mark Portions", - description: "Portions of the Gospel According to Mark in the Kunjen language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1967 Wycliffe Bible Translators Australia", - UpdateDate: "2020-08-26", - publicationURL: "http://ebible.org/kjn/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 6, - NTverses: 25, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KJNWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kjn1967eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kunjen Mark Portions", - PODISBN: null, - script: "Latin", - sourceDate: "2020-08-27", - }, - { - languageCode: "kjs", - translationId: "kjs", - languageName: "East Kewa", - languageNameInEnglish: "East Kewa", - dialect: null, - homeDomain: "png.bible", - title: "Gotena Epe Agale", - description: "The New Testament in the East Kewa Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-18", - publicationURL: "http://png.bible/kjs/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7918, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KJSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kjs2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "East Kewa NT", - PODISBN: "978-1-5313-0331-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kkc", - translationId: "kkc", - languageName: "Odoodee", - languageNameInEnglish: "Odoodee", - dialect: null, - homeDomain: "png.bible", - title: "Godeeyo To Tekepo", - description: "Portions of the New Testament in the Odoodee language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2006, 2015, 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-05", - publicationURL: "http://png.bible/kkc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 15, - NTchapters: 146, - NTverses: 5186, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KKCWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kkc2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Odoodee partial NT", - PODISBN: "978-1-5313-0332-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kkj", - translationId: "kkj", - languageName: null, - languageNameInEnglish: "Kako", - dialect: null, - homeDomain: "ebible.org", - title: "M\u025bl\u025bpi m\u025b Njambiy\u025b J\u0254nja Mbon", - description: "Kako: M\u025bl\u025bpi m\u025b Njambiy\u025b J\u0254nja Mbon New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1999 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/kkj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7946, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KKJWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kkj1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kako NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "kkl", - translationId: "kkl", - languageName: "Mek Kosarek", - languageNameInEnglish: "Yale, Kosarek", - dialect: null, - homeDomain: "ebible.org", - title: "Allah Yubu", - description: - "Portions of the Holy Bible in the Mek Kosarek language of Papua Province, Indonesia", - Redistributable: true, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-09-05", - publicationURL: "http://ebible.org/kkl/", - OTbooks: 2, - OTchapters: 54, - OTverses: 1480, - NTbooks: 10, - NTchapters: 71, - NTverses: 2044, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KKLWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kkl2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Mek Kosarek Bible", - PODISBN: "978-1-5313-0333-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kky", - translationId: "kky", - languageName: "Gugu Yimidhirr", - languageNameInEnglish: "Guugu Yimidhirr", - dialect: null, - homeDomain: "ebible.org", - title: "Matthew sample", - description: - "9 verses of the Gospel According to Matthew in the Gugu Yimidhirr language of Australia", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2021-11-23", - publicationURL: "http://ebible.org/kky/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 1, - NTverses: 9, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KKYLAA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kky1888eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Gugu Yimidhirr Matthew Sample", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-24", - }, - { - languageCode: "kld", - translationId: "kld", - languageName: "Gamilaraay", - languageNameInEnglish: "Gamilaraay", - dialect: null, - homeDomain: "ebible.org", - title: "GURRE KAMILAROI", - description: "Story book in the Gamilaraay language of Australia", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2021-11-23", - publicationURL: "http://ebible.org/kld/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KLDPDT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kld1839eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "KAMILAROI SAYINGS", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-24", - }, - { - languageCode: "klt", - translationId: "klt", - languageName: "Nukna", - languageNameInEnglish: "Nukna", - dialect: null, - homeDomain: "png.bible", - title: "Miti yan Papia", - description: "Portions of the Holy Bible in the Nukna Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2013, 2017, 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-11-24", - publicationURL: "http://png.bible/klt/", - OTbooks: 1, - OTchapters: 4, - OTverses: 85, - NTbooks: 13, - NTchapters: 110, - NTverses: 3687, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KLTWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "klt2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Nukna Bible", - PODISBN: "978-1-5313-0334-1", - script: "Latin", - sourceDate: "2022-08-19", - }, - { - languageCode: "klv", - translationId: "klv", - languageName: "Maskelynes", - languageNameInEnglish: "Maskelynes", - dialect: null, - homeDomain: "ebible.org", - title: "Nasoruan siGot len nasoruan ta Uluveu", - description: "The New Testament in the Maskelynes language of Uluveu, Vanuatu", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/klv/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7912, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KLVWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "klv2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Maskelynes NT", - PODISBN: "978-1-5313-0335-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kma", - translationId: "kma", - languageName: null, - languageNameInEnglish: "Konni", - dialect: null, - homeDomain: "ebible.org", - title: "\u014ami\u014b Nuahaal\u0269\u014b Gban\u0269\u014b K\u0254m\u0269\u014b", - description: "Konni NT (Ghana)", - Redistributable: false, - Copyright: "Copyright \u00a9 2004-2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/kma/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7948, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KMAWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kma2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Konni NT (Ghana)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "kmg", - translationId: "kmg", - languageName: "K\u00e2te", - languageNameInEnglish: "Kate", - dialect: null, - homeDomain: "png.bible", - title: "K\u00e2te Bible", - description: "The Holy Bible in the K\u00e2te language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1978 The Bible Society of Papua New Guinea", - UpdateDate: "2019-11-22", - publicationURL: "http://png.bible/kmg/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23097, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KMPPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kmg1978eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "K\u00e2te NT", - PODISBN: "978-1-5313-0336-5", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "kmh", - translationId: "kmh", - languageName: "Kalam", - languageNameInEnglish: "Kalam", - dialect: "central", - homeDomain: "png.bible", - title: "Kalam Baybol Buk Gor minim nuk kisin angayak", - description: "The New Testament in the Kalam Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1992 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-06", - publicationURL: "http://png.bible/kmh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7438, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KMHKAL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kmh1992eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Kalam NT", - PODISBN: "978-1-5313-0337-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kmh", - translationId: "kmh-m", - languageName: "Minimib", - languageNameInEnglish: "Minimib dialect of Kalam", - dialect: null, - homeDomain: "png.bible", - title: "M\u0197N\u0197M KOMI\u014a", - description: - "The New Testament in the Minimib dialect of the Kalam language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-02-07", - publicationURL: "http://png.bible/kmh-m/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7734, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KMHMIN", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kmhM2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Minimib NT", - PODISBN: "978-1-5313-0338-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kmk", - translationId: "kmk", - languageName: "Limos Kalinga", - languageNameInEnglish: "Kalinga, Limos", - dialect: null, - homeDomain: "ebible.org", - title: "Ugud apudyus = Ti baro tulag", - description: "New Testament in Kalinga, Limos", - Redistributable: true, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/kmk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7915, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KMKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kmk2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Limos Kalinga NT", - PODISBN: "978-1-5313-0339-6", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "kmo", - translationId: "kmo", - languageName: "Washkuk", - languageNameInEnglish: "Kwoma", - dialect: "Kwoma or Washkuk", - homeDomain: "png.bible", - title: "GOD RIITI MAJI KEPI", - description: - "The New Testament in the Washkuk Language, also known as the Kwoma Language, of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1974 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-01-08", - publicationURL: "http://png.bible/kmo/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7851, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KMOBIL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kmo1974eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Washkuk NT", - PODISBN: "978-1-5313-0340-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kms", - translationId: "kms", - languageName: "Kamasau", - languageNameInEnglish: "Kamasau", - dialect: null, - homeDomain: "png.bible", - title: "Yumbui Ningg Wand Yuwon Ye", - description: "The New Testament in the Kamasau Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1998 Bible Society of Papua New Guinea", - UpdateDate: "2012-01-18", - publicationURL: "http://png.bible/kms/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7870, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KMSPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kms1998eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Kamasau NT", - PODISBN: "978-1-5313-0341-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kmu", - translationId: "kmu", - languageName: "Kanite", - languageNameInEnglish: "Kanite", - dialect: null, - homeDomain: "png.bible", - title: "Anumayamo'a Haegafa Alino Hagelafilatenea Kea", - description: "The New Testament in the Kanite Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-04-21", - publicationURL: "http://png.bible/kmu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7546, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KMUTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kmu2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Kanite NT", - PODISBN: "978-1-5313-0342-6", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "knb", - translationId: "knb", - languageName: null, - languageNameInEnglish: "Kalinga, Lubuagan", - dialect: null, - homeDomain: "ebible.org", - title: "Ha Ugud Apudyus", - description: "Kalinga, Lubuagan: Ha Ugud Apudyus (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/knb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7905, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KNBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "knb2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Lubuagan Kalinga NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "kne", - translationId: "kne", - languageName: "Kankanaey", - languageNameInEnglish: "Kankanaey", - dialect: null, - homeDomain: "ebible.org", - title: "Kankanaey Bible", - description: "The Holy Bible in the Kankanaey language of the Republic of the Philippines", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators of Canada, Inc.", - UpdateDate: "2016-06-08", - publicationURL: "http://ebible.org/kne/", - OTbooks: 35, - OTchapters: 913, - OTverses: 22684, - NTbooks: 27, - NTchapters: 260, - NTverses: 7858, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KNEWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kne2016eb", - rodCode: 0.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kankanaey Bible", - PODISBN: "978-1-5313-0765-3", - script: "Latin", - sourceDate: "2016-06-08", - }, - { - languageCode: "knf", - translationId: "knf", - languageName: "Mankanya", - languageNameInEnglish: "Mankanya", - dialect: null, - homeDomain: "ebible.org", - title: "Ulibra wi Na\u015fiba\u0163i", - description: "New Testament and Shorter Old Testament in Mankanya", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/knf/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1530, - NTbooks: 27, - NTchapters: 260, - NTverses: 7935, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KNFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "knf2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Mankanya NT and partial OT", - PODISBN: "978-1-5313-0343-3", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "knj", - translationId: "knjNT", - languageName: "Akateko", - languageNameInEnglish: "Akateko", - dialect: null, - homeDomain: "ebible.org", - title: "Ja' An Nuevo Testamento", - description: "New Testament in Akateko (GT:knj:Akateko)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-21", - publicationURL: "http://ebible.org/knjNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7922, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KNJWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "knj2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Akateko NT", - PODISBN: "978-1-5313-0344-0", - script: "Latin", - sourceDate: "2014-04-22", - }, - { - languageCode: "knv", - translationId: "knv-aramia", - languageName: "Tabo (Aramia)", - languageNameInEnglish: "Tabo", - dialect: "Aramia River", - homeDomain: "png.bible", - title: "GODOKONO HIDO TABO", - description: "The New Testament in the Tabo Language, Aramia Dialect, of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2006 The Bible Society of Papua New Guinea", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/knv-aramia/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7799, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KNVARA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "knvA2006eb", - rodCode: 17012.0, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Tabo Aramia NT", - PODISBN: "978-1-5313-0345-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "knv", - translationId: "knv-fly_river", - languageName: "Tabo (Fly River)", - languageNameInEnglish: "Tabo", - dialect: "Fly River", - homeDomain: "png.bible", - title: "GODOKONO WADE TABO", - description: - "The New Testament in the Fly River dialect of the Tabo language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2006 The Bible Society of Papua New Guinea", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/knv-fly_river/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7799, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KNVPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "knvF2006eb", - rodCode: 17013.0, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Tabo Fly River NT", - PODISBN: "978-1-5313-0346-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kog", - translationId: "kog", - languageName: null, - languageNameInEnglish: "Kogi", - dialect: null, - homeDomain: "ebible.org", - title: "Jatetshi m\u00faldigaba", - description: "Kogi: Jatetshi m\u00faldigaba New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/kog/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7939, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KOGWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kog2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kogi NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "kos", - translationId: "kos", - languageName: "Kosrae", - languageNameInEnglish: "Kosraean", - dialect: null, - homeDomain: "ebible.org", - title: "BIBLE MUTAL", - description: - "The Holy Bible in the Kosraean language of the Federated States of Micronesia", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-10-09", - publicationURL: "http://ebible.org/kos/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22988, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KOSPUB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kos1928eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kosraean Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "kpf", - translationId: "kpf", - languageName: "Komba", - languageNameInEnglish: "Komba", - dialect: null, - homeDomain: "png.bible", - title: "SI\u014aGI \u00c2LIP EKAP", - description: "The New Testament in the Komba Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1980 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-06", - publicationURL: "http://png.bible/kpf/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7864, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KPFPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kpf1980eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Komba NT", - PODISBN: "978-1-5313-0347-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kpg", - translationId: "kpg", - languageName: "Kapingamarangi", - languageNameInEnglish: "Kapingamarangi", - dialect: null, - homeDomain: "ebible.org", - title: "Beebaa Dabu", - description: - "The Holy Bible in the Kapingamarangi language of the Federated States of Micronesia, spoken on the Kapingamarangi and Ponape islands, Caroline Islands", - Redistributable: true, - Copyright: "Copyright \u00a9 1996, 2014 The Kapingamarangi Bible translation committee", - UpdateDate: "2015-04-24", - publicationURL: "http://ebible.org/kpg/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22303, - NTbooks: 27, - NTchapters: 260, - NTverses: 7937, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KPGKPT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kpg2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Kapingamarangi Bible", - PODISBN: "978-1-5313-0348-8", - script: "Latin", - sourceDate: "2022-05-17", - }, - { - languageCode: "kpj", - translationId: "kpjNT", - languageName: "Karaj\u00e1", - languageNameInEnglish: "Karaj\u00e1", - dialect: null, - homeDomain: "ebible.org", - title: "Deuxu Rybe Tyyriti", - description: "New Testament in Karaj\u00e1 (BR:kpj:Karaj\u00e1)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-27", - publicationURL: "http://ebible.org/kpjNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7653, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KPJWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kpj2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Karaj\u00e1 NT", - PODISBN: "978-1-5313-0349-5", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "kpr", - translationId: "kpr", - languageName: "Korafe-Yegha", - languageNameInEnglish: "Korafe", - dialect: "Yegha", - homeDomain: "png.bible", - title: "God Da Geka Seka", - description: "The New Testament in the Korafe-Yegha Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1984 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-12-09", - publicationURL: "http://png.bible/kpr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7647, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KPRTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kpr1984eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Korafe NT", - PODISBN: "978-1-5313-0350-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kpw", - translationId: "kpw", - languageName: "Kobon", - languageNameInEnglish: "Kobon", - dialect: null, - homeDomain: "png.bible", - title: "Man\u00f6 Kam\u0268\u014b", - description: "The New Testament in the Kobon Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 The Bible Society of Papua New Guinea", - UpdateDate: "2015-01-26", - publicationURL: "http://png.bible/kpw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7732, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KPWPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kpw2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Kobon NT", - PODISBN: "978-1-5313-0351-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kpx", - translationId: "kpx", - languageName: "Mountain Koiali", - languageNameInEnglish: "Koiali, Mountain", - dialect: null, - homeDomain: "png.bible", - title: "Buka Tumute", - description: "The New Testament in the Mountain Koiali Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1981 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-26", - publicationURL: "http://png.bible/kpx/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7814, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KPXTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kpx1981eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Mountain Koiali NT", - PODISBN: "978-1-5313-0352-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kqa", - translationId: "kqa", - languageName: "Mum", - languageNameInEnglish: "Mum", - dialect: null, - homeDomain: "png.bible", - title: "Mum Language NT Portions", - description: "Portions of the New Testament in the Mum language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://png.bible/kqa/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 28, - NTverses: 1046, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KQAPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kqa2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mum NT Portions", - PODISBN: null, - script: "Latin", - sourceDate: "2019-12-30", - }, - { - languageCode: "kqc", - translationId: "kqc", - languageName: "Doromu-Koki", - languageNameInEnglish: "Doromu-Koki", - dialect: null, - homeDomain: "png.bible", - title: "Sei di Uka Ago Ruaka", - description: "Ruth and the New Testament in the Doromu-Koki Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2011-2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-03-15", - publicationURL: "http://png.bible/kqc/", - OTbooks: 1, - OTchapters: 4, - OTverses: 85, - NTbooks: 27, - NTchapters: 260, - NTverses: 7943, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KQCWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kqc2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Doromu-Koki Bible", - PODISBN: "978-1-5313-0353-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kqe", - translationId: "kqe", - languageName: null, - languageNameInEnglish: "Kalagan", - dialect: "Eastern", - homeDomain: "ebible.org", - title: "Kalagan", - description: "Kalagan: Kalagan (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2012-2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/kqe/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7934, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KQEWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kqe2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Eastern Kalagan NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "kqe", - translationId: "kqew", - languageName: null, - languageNameInEnglish: "Kalagan", - dialect: null, - homeDomain: "ebible.org", - title: "Kitab Injil", - description: "Kalagan: Kitab Injil (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/kqew/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7934, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KQEWWB", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kqew2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Western Kalagan NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "kqf", - translationId: "kqf", - languageName: "Kakabai", - languageNameInEnglish: "Kakabai", - dialect: null, - homeDomain: "png.bible", - title: "Buk Baibel long Kakabai", - description: "Portions of the Holy Bible in the Kakabai language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2010-2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-06-05", - publicationURL: "http://png.bible/kqf/", - OTbooks: 28, - OTchapters: 223, - OTverses: 2443, - NTbooks: 2, - NTchapters: 44, - NTverses: 1651, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KQFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kqf2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Kakabai Bible portions", - PODISBN: "978-1-5313-0354-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kql", - translationId: "kql", - languageName: "Kyenele", - languageNameInEnglish: "Kyenele", - dialect: null, - homeDomain: "png.bible", - title: "Mak Kia\u00f1i\u014b Bala\u014b", - description: "Kyenele: Mak Kia\u00f1i\u014b Bala\u014b Portions", - Redistributable: true, - Copyright: "Copyright \u00a9 1992 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://png.bible/kql/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 16, - NTverses: 667, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KQLPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kql1992eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kyenele Mark", - PODISBN: null, - script: "Latin", - sourceDate: "2018-02-07", - }, - { - languageCode: "kqp", - translationId: "kqp", - languageName: "Kimr\u00e9", - languageNameInEnglish: "Kimr\u00e9", - dialect: null, - homeDomain: "ebible.org", - title: "Magtubu t\u00f4\u00f4 to\u0272 bi\u0272are to k\u00f4rbi", - description: - "Kimr\u00e9: Magtubu t\u00f4\u00f4 to\u0272 bi\u0272are to k\u00f4rbi New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2007 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/kqp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7945, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KQPWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kqp2007eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Kimr\u00e9: Magtubu t\u00f4\u00f4 to\u0272 bi\u0272are to k\u00f4rbi New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "kqw", - translationId: "kqw", - languageName: "Kandas", - languageNameInEnglish: "Kandas", - dialect: null, - homeDomain: "png.bible", - title: "Buk Baibel long tokples Kandas", - description: "Portions of the New Testament in the Kandas Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2011-2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-04-02", - publicationURL: "http://png.bible/kqw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7907, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KQWWIN", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kqw2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Kandas NT", - PODISBN: "978-1-5313-0355-6", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "krj", - translationId: "krj", - languageName: "Kinaray-a", - languageNameInEnglish: "Kinaray-a", - dialect: null, - homeDomain: "ebible.org", - title: "Kinaray-a NT", - description: "Kinaray-a: Kinaray-a NT New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/krj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KRJWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "krj2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kinaray-a NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "krx", - translationId: "krx", - languageName: null, - languageNameInEnglish: "Karon", - dialect: null, - homeDomain: "ebible.org", - title: "Kuloonaay", - description: "Karon: Kuloonaay (Portions)", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/krx/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 24, - NTverses: 1144, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KRXWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "krx2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kuloonaay Luke", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "ksc", - translationId: "ksc", - languageName: "Kalinga, Southern", - languageNameInEnglish: "Kalinga, Southern", - dialect: null, - homeDomain: "ebible.org", - title: "Na ukud Apudyus", - description: "Kalinga, Southern: Na ukud Apudyus New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1986 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/ksc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7894, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KSCWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ksc1986eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kalinga, Southern: Na ukud Apudyus New Testament", - PODISBN: null, - script: "Arabic", - sourceDate: "2020-12-01", - }, - { - languageCode: "ksd", - translationId: "ksd", - languageName: "Kuanua or Tinata Tuna or Tolai", - languageNameInEnglish: "Kauana", - dialect: null, - homeDomain: "png.bible", - title: "A BUK TABU A MAULANA KUNUBU ma A KALAMANA KUNUBU", - description: "The Holy Bible in the Kuanua language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1882-1983 Bible Society of Papua New Guinea", - UpdateDate: "2015-01-26", - publicationURL: "http://png.bible/ksd/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23137, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KSDPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ksd1983eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Kauana Bible", - PODISBN: "978-1-5313-0356-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ksj", - translationId: "ksj", - languageName: "Uare", - languageNameInEnglish: "Uare", - dialect: null, - homeDomain: "png.bible", - title: "Uare Bible", - description: "Portions of the New Testament in the Uare language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-05-15", - publicationURL: "http://png.bible/ksj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 8, - NTchapters: 112, - NTverses: 4209, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KSJWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ksj2017eb", - rodCode: 550.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Uare NT", - PODISBN: "978-1-5313-0357-0", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "ksp", - translationId: "ksp", - languageName: "Kabba", - languageNameInEnglish: "Kabba", - dialect: null, - homeDomain: "ebible.org", - title: "Tar le Lubba ke tar Kabba", - description: "Kaba: Tar le Lubba ke tar Kabba Bible", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/ksp/", - OTbooks: 3, - OTchapters: 18, - OTverses: 297, - NTbooks: 8, - NTchapters: 131, - NTverses: 4551, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KSPWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ksp2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kaba Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "ksr", - translationId: "ksr", - languageName: "Borong", - languageNameInEnglish: "Borong", - dialect: null, - homeDomain: "png.bible", - title: "Uumeleembaa Bu\u014ba Tere Soomo\u014bgo Gbilia", - description: - "The New Testament and portions of the Old Testament in the Borong Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2002, 2011 The Bible Society of Papua New Guinea", - UpdateDate: "2015-01-26", - publicationURL: "http://png.bible/ksr/", - OTbooks: 3, - OTchapters: 58, - OTverses: 1661, - NTbooks: 27, - NTchapters: 260, - NTverses: 7937, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KSRPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ksr2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Borong NT + OT portions", - PODISBN: "978-1-5313-0358-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ktj", - translationId: "ktj", - languageName: null, - languageNameInEnglish: "Krumen, Plapo", - dialect: null, - homeDomain: "ebible.org", - title: "Ny\u0269s\u028ba a \ua78ahaanttie", - description: "Krumen, Plapo: Ny\u0269s\u028ba a \ua78ahaanttie New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/ktj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7874, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KTJWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ktj2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Plapo Krumen NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "ktm", - translationId: "ktm", - languageName: "Kurti", - languageNameInEnglish: "Kurti", - dialect: null, - homeDomain: "png.bible", - title: "Kurti Baibel", - description: - "Genesis, Mark, Galatians, and 1 Timothy in the Kurti Language of Manus Province, Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-09-13", - publicationURL: "http://png.bible/ktm/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1506, - NTbooks: 3, - NTchapters: 28, - NTverses: 919, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KTMWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ktm2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Basic", - shortTitle: "Kurti Scripture Portions", - PODISBN: "978-1-5313-0829-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kto", - translationId: "kto", - languageName: "Kuot", - languageNameInEnglish: "Kuot", - dialect: null, - homeDomain: "png.bible", - title: "Bais Ula Mumuru Aime Iesu", - description: "The New Testament in the Kuot Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-01-08", - publicationURL: "http://png.bible/kto/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7815, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KTOPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kto2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Kuot NT", - PODISBN: "978-1-5313-0359-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kud", - translationId: "kud", - languageName: "'Auhelawa", - languageNameInEnglish: "'Auhelawa", - dialect: null, - homeDomain: "png.bible", - title: "YAUBADA YANA WALO YEMIDI VAUVAUNA", - description: "The New Testament in the 'Auhelawa Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Papua New Guinea Bible Translation Association, Inc.", - UpdateDate: "2015-01-26", - publicationURL: "http://png.bible/kud/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7899, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KUDPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kud2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "'Auhelawa NT", - PODISBN: "978-1-5313-0360-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kud", - translationId: "kud2014", - languageName: "\u2019Auhelawa", - languageNameInEnglish: "\u2019Auhelawa", - dialect: null, - homeDomain: "png.bible", - title: "Yaubada Yana Walo Yemidi Vauvauna", - description: "\u2019Auhelawa: Yaubada Yana Walo Yemidi Vauvauna New Testament", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-11", - publicationURL: "http://png.bible/kud2014/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7899, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KUDWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kud2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "\u2019Auhelawa: Yaubada Yana Walo Yemidi Vauvauna New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "kue", - translationId: "kue", - languageName: "Kuman", - languageNameInEnglish: "Kuman", - dialect: null, - homeDomain: "png.bible", - title: "YESUS KAMO WAKAI", - description: "The New Testament in the Kuman Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 The Bible Society of Papua New Guinea", - UpdateDate: "2015-01-26", - publicationURL: "http://png.bible/kue/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KUEPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kue2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Kuman NT", - PODISBN: "978-1-5313-0361-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kup", - translationId: "kup", - languageName: "Kunimaipa", - languageNameInEnglish: "Kunimaipa", - dialect: null, - homeDomain: "png.bible", - title: "Bai\u00f1etinavoz Tep Tokatit", - description: "The New Testament in the Kunimaipa Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1989, 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-26", - publicationURL: "http://png.bible/kup/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7539, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KUPTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kup2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Kunimaipa NT", - PODISBN: "978-1-5313-0362-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kus", - translationId: "kus", - languageName: null, - languageNameInEnglish: "Kusaal", - dialect: null, - homeDomain: "ebible.org", - title: "Wina\ua78cam Gbau\u014b (Ghana)", - description: "The New Testament the Kusaal language (Ghana)", - Redistributable: false, - Copyright: "Copyright \u00a9 1996 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/kus/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7936, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KUSWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kus1996eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "The New Testament the Kusaal language (Ghana)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "kux", - translationId: "kux", - languageName: "Kukatja", - languageNameInEnglish: "Kukatja", - dialect: null, - homeDomain: "ebible.org", - title: "Kukatja Christmas Story", - description: "Part of Luke 2 in the Kukatja language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators", - UpdateDate: "2022-01-06", - publicationURL: "http://ebible.org/kux/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 1, - NTverses: 19, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KUXWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kux2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kukatja Christmas Story", - PODISBN: null, - script: "Latin", - sourceDate: "2022-01-07", - }, - { - languageCode: "kvg", - translationId: "kvg", - languageName: "Kuni-Boazi", - languageNameInEnglish: "Kuni-Boazi", - dialect: "Kuni", - homeDomain: "png.bible", - title: "Mbumbukiam-qa Manqat Mbomambaqape", - description: - "Ruth, Jonah, and the New Testament in the Kuni dialect of the Kuni-Boazi language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2015 Wycliffe Switzerland", - UpdateDate: "2018-08-20", - publicationURL: "http://png.bible/kvg/", - OTbooks: 2, - OTchapters: 8, - OTverses: 133, - NTbooks: 27, - NTchapters: 260, - NTverses: 7934, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KVGWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kvg2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Kuni-Boazi Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2022-10-18", - }, - { - languageCode: "kvn", - translationId: "kvnNT", - languageName: "Kuna, Border", - languageNameInEnglish: "Kuna, Border", - dialect: null, - homeDomain: "ebible.org", - title: "Pab tummad karta pab Jesucristobal igal-pin mezhijad", - description: "New Testament in Kuna, Border (PM:kvn:Kuna, Border)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/kvnNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7934, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KVNWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kvn2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Border Kuna NT", - PODISBN: "978-1-5313-0363-1", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "kwd", - translationId: "kwd", - languageName: "Kwaio", - languageNameInEnglish: "Kwaio", - dialect: null, - homeDomain: "ebible.org", - title: "Fatalana God", - description: "The New Testament in the Kwaio language of the Solomon Islands", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/kwd/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7879, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KWDWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kwd2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kwaio NT", - PODISBN: "978-1-5313-0364-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kwf", - translationId: "kwf", - languageName: "Kwara'ae", - languageNameInEnglish: "Kwara'ae", - dialect: null, - homeDomain: "ebible.org", - title: "Fau Alanga'inga Faolu Ana Ala'anga Kwara'ae", - description: - "The New Testament and Genesis in the Kwara'ae language of the Solomon Islands", - Redistributable: true, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-11-14", - publicationURL: "http://ebible.org/kwf/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1469, - NTbooks: 27, - NTchapters: 260, - NTverses: 7877, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KWFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kwf2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kwara'ae Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2017-11-29", - }, - { - languageCode: "kwi", - translationId: "kwi", - languageName: "Awa-Cuaiquer", - languageNameInEnglish: "Awa-Cuaiquer", - dialect: null, - homeDomain: "ebible.org", - title: "Masas Pit Jesucristowa", - description: "New Testament in Awa-Cuaiquer", - Redistributable: true, - Copyright: "Copyright \u00a9 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/kwi/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7917, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KWIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kwi2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Awa-Cuaiquer NT", - PODISBN: "978-1-5313-0365-5", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "kwj", - translationId: "kwj", - languageName: "Kwanga", - languageNameInEnglish: "Kwanga", - dialect: null, - homeDomain: "png.bible", - title: "Kwanga New Testament", - description: "The New Testament in the Kwanga Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1992 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-26", - publicationURL: "http://png.bible/kwj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7939, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KWJWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kwj1992eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Kwanga NT", - PODISBN: "978-1-5313-0366-2", - script: "Latin", - sourceDate: "2022-05-27", - }, - { - languageCode: "kxw", - translationId: "kxw", - languageName: "Konai", - languageNameInEnglish: "Konai", - dialect: null, - homeDomain: "ebible.org", - title: "Godiha\u0331 Ta\u0331 Bolofe\u0331i\u0331", - description: "Konai: Godiha\u0331 Ta\u0331 Bolofe\u0331i\u0331 New Testament", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-08-19", - publicationURL: "http://ebible.org/kxw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7939, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KXWWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kxw2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Konai NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "kyb", - translationId: "kyb", - languageName: "Butbut Kalinga", - languageNameInEnglish: "Butbut Kalinga", - dialect: null, - homeDomain: "ebible.org", - title: "Nan Ukud Apudyus", - description: "Kalinga, Butbut: Nan Ukud Apudyus (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/kyb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KYBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kyb2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kalinga, Butbut: Nan Ukud Apudyus (New Testament)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "kyc", - translationId: "kyc", - languageName: "Kyaka E\u014ba", - languageNameInEnglish: "Kyaka Enga", - dialect: null, - homeDomain: "png.bible", - title: "BUKU BAEPOLE", - description: - "The Shorter Bible (New Testament and selected portions of the Old Testament) in the Kyaka Enga language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1973, 1980, 1987 The Bible Society of Papua New Guinea", - UpdateDate: "2015-01-26", - publicationURL: "http://png.bible/kyc/", - OTbooks: 38, - OTchapters: 420, - OTverses: 9162, - NTbooks: 27, - NTchapters: 260, - NTverses: 7901, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KYCPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kyc1987eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Kyaka Enga Bible", - PODISBN: "978-1-5313-0367-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kyf", - translationId: "kyf", - languageName: "Kouya", - languageNameInEnglish: "Kouya", - dialect: null, - homeDomain: "ebible.org", - title: "\u02bcW\u028bsuslolue loluu \u02bcs\u025bbh\u025b", - description: "New Testament in Kouya", - Redistributable: true, - Copyright: "Copyright \u00a9 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/kyf/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7880, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KYFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kyf2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kouya NT", - PODISBN: "978-1-5313-0368-6", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "kyg", - translationId: "kyg", - languageName: "Keyagana", - languageNameInEnglish: "Keyagana", - dialect: null, - homeDomain: "png.bible", - title: "Saufa Kotalake Gemae", - description: - "The New Testament and Portions of the Old Testament in the Keyagana Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-26", - publicationURL: "http://png.bible/kyg/", - OTbooks: 5, - OTchapters: 101, - OTverses: 1713, - NTbooks: 27, - NTchapters: 260, - NTverses: 7822, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KYGTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kyg2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Keyagana Bible", - PODISBN: "978-1-5313-0369-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "kyq", - translationId: "kyq", - languageName: "Kenga", - languageNameInEnglish: "Kenga", - dialect: null, - homeDomain: "ebible.org", - title: "Kitapm k\u025bn Raa d\u0254\u0254ko kiji ute jeege", - description: "New Testament in Kenga", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/kyq/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7936, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KYQWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kyq2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Kenga NT", - PODISBN: "978-1-5313-0370-9", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "kyu", - translationId: "kyu", - languageName: "Kayah, Western", - languageNameInEnglish: "Kayah, Western", - dialect: null, - homeDomain: "ebible.org", - title: "Lis\u01ces\u00e8\u030c Ath\u00e8\u030c - Kay\u01ce Ng\u00f3\u0324", - description: - "Western Kayah: Lis\u01ces\u00e8\u030c Ath\u00e8\u030c - Kay\u01ce Ng\u00f3\u0324 New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-25", - publicationURL: "http://ebible.org/kyu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7928, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KYUWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kyu2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Noto Serif", - shortTitle: "Western Kayah NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-26", - }, - { - languageCode: "kyu", - translationId: "kyuk", - languageName: "Western Kayah", - languageNameInEnglish: "Kayah, Western", - dialect: null, - homeDomain: "ebible.org", - title: "\ua91c\ua924\ua92c\ua921\ua922\ua92d\ua90f\ua922\ua927\ua92d \ua922\ua92c\ua91e\ua922\ua927\ua92d \ua914\ua922 \ua91c\ua924\ua92c\ua921\ua922\ua92d\ua90f\ua922\ua927\ua92d \ua922\ua92c\ua91c\ua91f\ua91b\ua922\ua929\ua92d \ua912\ua922\ua92c\ua91f\ua922\ua929\ua92c \ua90a\ua922\ua92c\ua91b\ua922\ua92d\ua91c\ua91f\ua924\ua92c\ua90d\ua91f\ua925", - description: - "Kayah, Western: \ua91c\ua924\ua92c\ua921\ua922\ua92d\ua90f\ua922\ua927\ua92d \ua922\ua92c\ua91e\ua922\ua927\ua92d \ua914\ua922 \ua91c\ua924\ua92c\ua921\ua922\ua92d\ua90f\ua922\ua927\ua92d \ua922\ua92c\ua91c\ua91f\ua91b\ua922\ua929\ua92d \ua912\ua922\ua92c\ua91f\ua922\ua929\ua92c \ua90a\ua922\ua92c\ua91b\ua922\ua92d\ua91c\ua91f\ua924\ua92c\ua90d\ua91f\ua925 (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2021 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-11-01", - publicationURL: "http://ebible.org/kyuk/", - OTbooks: 4, - OTchapters: 208, - OTverses: 4116, - NTbooks: 27, - NTchapters: 260, - NTverses: 7928, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KYUKWB", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kyuk2021eb", - rodCode: 404.0, - textDirection: "ltr", - downloadable: true, - font: "Annapurna SIL", - shortTitle: - "Kayah, Western: \ua91c\ua924\ua92c\ua921\ua922\ua92d\ua90f\ua922\ua927\ua92d \ua922\ua92c\ua91e\ua922\ua927\ua92d \ua914\ua922 \ua91c\ua924\ua92c\ua921\ua922\ua92d\ua90f\ua922\ua927\ua92d \ua922\ua92c\ua91c\ua91f\ua91b\ua922\ua929\ua92d \ua912\ua922\ua92c\ua91f\ua922\ua929\ua92c \ua90a\ua922\ua92c\ua91b\ua922\ua92d\ua91c\ua91f\ua924\ua92c\ua90d\ua91f\ua925 (Bible)", - PODISBN: null, - script: "Kayah Li", - sourceDate: "2020-12-02", - }, - { - languageCode: "kyz", - translationId: "kyzNT", - languageName: "Kayab\u00ed", - languageNameInEnglish: "Kayab\u00ed", - dialect: null, - homeDomain: "ebible.org", - title: "Janeruwarete 'Ga Je'eg", - description: "New Testament in Kayab\u00ed (BR:kyz:Kayab\u00ed)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-27", - publicationURL: "http://ebible.org/kyzNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7575, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KYZWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kyz2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kayab\u00ed NT", - PODISBN: "978-1-5313-0371-6", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "kze", - translationId: "kze", - languageName: "Kosena", - languageNameInEnglish: "Kosena", - dialect: null, - homeDomain: "png.bible", - title: "a\u00fan\u00e1-aimba sim\u00e1i tar\u00famakain-kwasai", - description: "The New Testament in the Kosena Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1980 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-26", - publicationURL: "http://png.bible/kze/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7778, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "KZEWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "kze1980eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Kosena NT", - PODISBN: "978-1-5313-0372-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "lac", - translationId: "lacNT", - languageName: "Lacandon", - languageNameInEnglish: "Lacandon", - dialect: null, - homeDomain: "ebible.org", - title: "A quet u t\u02bc\u028cno\u02bc a ric\u02bcbeno\u02bc", - description: "New Testament in Lacandon (MX:lac:Lacandon)", - Redistributable: true, - Copyright: "Copyright \u00a9 1978 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/lacNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7927, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LACTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lac1978eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Lacandon NT", - PODISBN: "978-1-5313-0373-0", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "lat", - translationId: "latVUC", - languageName: "Latine", - languageNameInEnglish: "Latin", - dialect: null, - homeDomain: "ebible.org", - title: "Bibbia Vulgata Clementina na 1598", - description: "Clementine Vulgate of 1598 with Glossa Ordinaria Migne edition 1880 in Latin", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2014-08-23", - publicationURL: "http://ebible.org/latVUC/", - OTbooks: 39, - OTchapters: 937, - OTverses: 23483, - NTbooks: 27, - NTchapters: 260, - NTverses: 7951, - DCbooks: 7, - DCchapters: 137, - DCverses: 4375, - FCBHID: "LATCLV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "latVUC1880eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Clementine Vulgate 1598", - PODISBN: "978-1-5313-0374-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "lbb", - translationId: "lbb", - languageName: "Label", - languageNameInEnglish: "Label", - dialect: null, - homeDomain: "png.bible", - title: "Label Buk Baibel", - description: "The New Testament in the Label language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2012-2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-03-29", - publicationURL: "http://png.bible/lbb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7902, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LBBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lbb2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Label NT", - PODISBN: "978-1-5313-0375-4", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "lbj", - translationId: "lbj", - languageName: "Ladakhi", - languageNameInEnglish: "Ladakhi", - dialect: null, - homeDomain: "ebible.org", - title: "Ladakhi", - description: "Fixed version of NTLadTr for YouVersion Bible upload", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/lbj/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1531, - NTbooks: 27, - NTchapters: 260, - NTverses: 7924, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LBJWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lbj2020eb", - rodCode: 12657.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ladakhi Bible", - PODISBN: null, - script: "Tibetan", - sourceDate: "2020-11-19", - }, - { - languageCode: "lbk", - translationId: "lbk", - languageName: "Central Bontok", - languageNameInEnglish: "Bontok, Central", - dialect: null, - homeDomain: "ebible.org", - title: "Nan kalin Apo Dios", - description: "New Testament in Bontok, Central", - Redistributable: true, - Copyright: "Copyright \u00a9 1992 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/lbk/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1504, - NTbooks: 27, - NTchapters: 260, - NTverses: 7924, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LBKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lbk1992eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Central Bontok NT", - PODISBN: "978-1-5313-0376-1", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "lcm", - translationId: "lcm", - languageName: "Tungag", - languageNameInEnglish: "Tungag", - dialect: "Tungag", - homeDomain: "png.bible", - title: "AKUS RO NA PALATUNG TANGINANG ANI IESU KARISTO", - description: - "Genesis, Ruth, Jonah, and The New Testament in the Tungag Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1998, 2011 The Bible Society of Papua New Guinea", - UpdateDate: "2013-08-19", - publicationURL: "http://png.bible/lcm/", - OTbooks: 3, - OTchapters: 58, - OTverses: 1637, - NTbooks: 27, - NTchapters: 260, - NTverses: 7942, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LCMPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lcm2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Tungag Bible", - PODISBN: "978-1-5313-0377-8", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "lcp", - translationId: "lcp", - languageName: null, - languageNameInEnglish: "Lawa, Western", - dialect: null, - homeDomain: "ebible.org", - title: "\u0e1e\u0e23\u0e30\u0e04\u0e31\u0e21\u0e20\u0e35\u0e23\u0e4c\u0e25\u0e30\u0e27\u0e49\u0e32", - description: "Digitization of Western Lawa Print Bible", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/lcp/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22517, - NTbooks: 27, - NTchapters: 260, - NTverses: 7934, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LCPWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lcp2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Noto Serif Thai", - shortTitle: "Western Lawa Bible", - PODISBN: null, - script: "Thai", - sourceDate: "2020-12-02", - }, - { - languageCode: "leu", - translationId: "leu", - languageName: "Kara", - languageNameInEnglish: "Kara", - dialect: null, - homeDomain: "png.bible", - title: "Kara New Testament", - description: "The New Testament in the Kara Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1997 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-01-10", - publicationURL: "http://png.bible/leu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7875, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LEUPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "leu1997eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Kara NT", - PODISBN: "978-1-5313-0378-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "lex", - translationId: "lex", - languageName: "Luang", - languageNameInEnglish: "Luang", - dialect: null, - homeDomain: "ebible.org", - title: "Puka Lululi", - description: - "The New Testament, Genesis, Ruth, Esther, and Job in the Luang language of Indonesia", - Redistributable: true, - Copyright: "Copyright \u00a9 2005, 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-07-01", - publicationURL: "http://ebible.org/lex/", - OTbooks: 4, - OTchapters: 68, - OTverses: 1793, - NTbooks: 27, - NTchapters: 260, - NTverses: 7886, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LEXWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lex2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Luang Bible", - PODISBN: "978-1-5313-0379-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "lgl", - translationId: "lgl", - languageName: "Wala", - languageNameInEnglish: "Wala", - dialect: null, - homeDomain: "ebible.org", - title: "Alafuuna Fa'alu Ala Saena 'I Wala", - description: "The New Testament in the Wala language of the Solomon Islands", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-11-17", - publicationURL: "http://ebible.org/lgl/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7877, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LGLWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lgl2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Wala New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "lhi", - translationId: "lhi", - languageName: "Lahu Si", - languageNameInEnglish: "Lahu Si", - dialect: null, - homeDomain: "ebible.org", - title: "Lad hur Si Liq Phu Awg Suhx", - description: "Lahu Shi: Lad hur Si Liq Phu Awg Suhx New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/lhi/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7879, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LHIWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lhi2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Lahu Shi: Lad hur Si Liq Phu Awg Suhx New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "lid", - translationId: "lid", - languageName: "Nyindrou", - languageNameInEnglish: "Nyindrou", - dialect: null, - homeDomain: "png.bible", - title: "Sahou ta Kindrei", - description: - "Genesis, Ruth, Jonah, and The New Testament in the Nyndrou Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-01-26", - publicationURL: "http://png.bible/lid/", - OTbooks: 3, - OTchapters: 58, - OTverses: 1632, - NTbooks: 27, - NTchapters: 260, - NTverses: 7899, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LIDWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lid2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Nyndrou NT + OT portions", - PODISBN: "978-1-5313-0380-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "lif", - translationId: "lifNT", - languageName: "Limbu", - languageNameInEnglish: "Limbu", - dialect: null, - homeDomain: "ebible.org", - title: "\u190f\u1921\u1931\u1918\u1920\u1939\u1911\u1922 \u1910\u1920\u193a\u1934\u1908\u1920\u1930 \u1901\u1922\u191b\u1931 \u1914\u1920\u1931\u191c\u1922\u1935", - description: "New Testament in Limbu (NP:lif:Limbu)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/lifNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7875, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LIFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lifL2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Limbu NT (Limbu Script)", - PODISBN: "978-1-5313-0381-5", - script: "Devanagari (Nagari)", - sourceDate: "2014-04-30", - }, - { - languageCode: "lif", - translationId: "lifNT2", - languageName: "Limbu", - languageNameInEnglish: "Limbu", - dialect: null, - homeDomain: "ebible.org", - title: "Yesu khristar\u025b kunisaam", - description: "New Testament in Limbu (NP:lif:Limbu)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/lifNT2/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7875, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LIFDEV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lifD2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Annapurna SIL", - shortTitle: "Limbu NT (Devangari Script)", - PODISBN: "978-1-5313-0382-2", - script: "Devanagari (Nagari)", - sourceDate: "2014-04-30", - }, - { - languageCode: "lik", - translationId: "lik", - languageName: "Lika", - languageNameInEnglish: "Lika", - dialect: null, - homeDomain: "ebible.org", - title: "AG\u0244M\u0190 WAMB\u0197YA", - description: "Lika: AG\u0244M\u0190 WAMB\u0197YA (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/lik/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7945, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LIKWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lik2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Lika: AG\u0244M\u0190 WAMB\u0197YA (New Testament+)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "lin", - translationId: "lin", - languageName: "Ling\u00e1la", - languageNameInEnglish: "Ling\u00e1la", - dialect: null, - homeDomain: "ebible.org", - title: "Biblica\u00ae Salela na bonsomi Mokanda na Bomoi\u2122", - description: - "The Holy Bible in the Lingala language of the Democratic Republic of the Congo: Open Lingala Contemporary Bible", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Biblica, Inc.", - UpdateDate: "2021-11-15", - publicationURL: "http://ebible.org/lin/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23212, - NTbooks: 27, - NTchapters: 262, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LINBIB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lin2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Lingala Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-05-22", - }, - { - languageCode: "lip", - translationId: "lip", - languageName: null, - languageNameInEnglish: "Sekpele", - dialect: null, - homeDomain: "ebible.org", - title: "Onanto eto kakle f\u0254f\u0254; S\u025bkp\u025ble", - description: "Sekpele: Onanto eto kakle f\u0254f\u0254; S\u025bkp\u025ble New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/lip/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7902, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LIPWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lip2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sekpele NT ", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "lit", - translationId: "lit", - languageName: "lietuvi\u0173", - languageNameInEnglish: "Lithuanian", - dialect: null, - homeDomain: null, - title: "Tikin\u010di\u0173j\u0173 paveldo vertimas", - description: "The Holy Bible in Lithuanian, Believers' Heritage Translation", - Redistributable: true, - Copyright: "Copyright \u00a9 2022 Believers' Bible Society, Inc.", - UpdateDate: "2022-12-02", - publicationURL: "http:///lit/", - OTbooks: 39, - OTchapters: 530, - OTverses: 2576, - NTbooks: 27, - NTchapters: 253, - NTverses: 4525, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ENGFBV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "engfbv2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Free Bible Version", - PODISBN: null, - script: "Latin", - sourceDate: "2022-12-02", - }, - { - languageCode: "llg", - translationId: "llg", - languageName: "Rote Lole", - languageNameInEnglish: "Lole", - dialect: null, - homeDomain: "ebible.org", - title: "Rote Lole Alkitab", - description: "Genesis and the New Testament in the Rote Lole language of Indonesia", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Unit Bahasa dan Budaya", - UpdateDate: "2016-06-28", - publicationURL: "http://ebible.org/llg/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1419, - NTbooks: 27, - NTchapters: 260, - NTverses: 7666, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LLGUBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "llg2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Rote Lole Bible", - PODISBN: "978-1-5313-0780-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "llu", - translationId: "llu", - languageName: null, - languageNameInEnglish: "Lau", - dialect: null, - homeDomain: "ebible.org", - title: "Lau New Testament", - description: "Lau: Lau New Testament (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 1992 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-23", - publicationURL: "http://ebible.org/llu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7904, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LLUWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "llu1992eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Lau: Lau New Testament (New Testament)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-24", - }, - { - languageCode: "lmd", - translationId: "lmd", - languageName: "Lumun", - languageNameInEnglish: "Lumun", - dialect: null, - homeDomain: "ebible.org", - title: "Lumun", - description: "Lumun: Lumun (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/lmd/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LMDWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lmd2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Lumun: Lumun (Bible)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "log", - translationId: "log", - languageName: "Logo", - languageNameInEnglish: "Logo", - dialect: null, - homeDomain: "ebible.org", - title: "BU\u0301KU\u0300 TA\u0300 T\u0197\u0301DH\u0197\u0301//RU YI\u0300ZO DH\u0197 A\u0300DHYA", - description: - "Logoti (Logo): BU\u0301KU\u0300 TA\u0300 T\u0197\u0301DH\u0197\u0301//RU YI\u0300ZO DH\u0197 A\u0300DHYA New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/log/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7939, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LOGWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "log2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Logoti (Logo): BU\u0301KU\u0300 TA\u0300 T\u0197\u0301DH\u0197\u0301//RU YI\u0300ZO DH\u0197 A\u0300DHYA New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "loq", - translationId: "loq", - languageName: null, - languageNameInEnglish: "Lobala", - dialect: null, - homeDomain: "ebible.org", - title: "Sangola Eenyakune", - description: "Lobala: Sangola Eenyakune New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/loq/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7923, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LOQWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "loq2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Lobala NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "lro", - translationId: "lro", - languageName: null, - languageNameInEnglish: "Laro", - dialect: null, - homeDomain: "ebible.org", - title: "Laro Bible (Bible)", - description: "Laro NT", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/lro/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7940, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LROWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lro2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Laro Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "luc", - translationId: "luc", - languageName: null, - languageNameInEnglish: "Aringa", - dialect: null, - homeDomain: "ebible.org", - title: "\u1eca\u0301j\u1ecd\u0301 \u00da\ua78cd\u00ed r\u0129", - description: "The Holy Bible in the Aringa language of Uganda", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-11", - publicationURL: "http://ebible.org/luc/", - OTbooks: 5, - OTchapters: 159, - OTverses: 4699, - NTbooks: 27, - NTchapters: 260, - NTverses: 7939, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LUCWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "luc2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Aringa Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "lug", - translationId: "lug", - languageName: "Luganda", - languageNameInEnglish: "Luganda", - dialect: null, - homeDomain: "ebible.org", - title: "Biblica\u00ae Bayibuli Entukuvu, Endagaano Enkadde n\u02bcEndagaano Empya ekwatiddwa ku katambi\u2122", - description: - "Ganda: Biblica\u00ae Bayibuli Entukuvu, Endagaano Enkadde n\u02bcEndagaano Empya ekwatiddwa ku katambi\u2122 (Bible) of Uganda", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Biblica, Inc.", - UpdateDate: "2021-12-30", - publicationURL: "http://ebible.org/lug/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LUGBIB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lug2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Luganda Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-04-17", - }, - { - languageCode: "luo", - translationId: "luo", - languageName: "Dholuo", - languageNameInEnglish: "Dholuo", - dialect: null, - homeDomain: "ebible.org", - title: "Biblica\u00ae Ochiw Thuolo Moting\u02bco Loko Manyien\u2122", - description: "Dholuo: Biblica\u00ae Ochiw Thuolo Moting\u02bco Loko Manyien\u2122 (Bible)", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Biblica, Inc.", - UpdateDate: "2021-04-12", - publicationURL: "http://ebible.org/luo/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LUOBIB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "luo2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Dholuo Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-04-13", - }, - { - languageCode: "lwo", - translationId: "lwo", - languageName: null, - languageNameInEnglish: "Luwo", - dialect: null, - homeDomain: "ebible.org", - title: "Anweehd Me Nyaahn", - description: "Luwo: Anweehd Me Nyaahn New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/lwo/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7818, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LWOWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lwo2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Luwo: Anweehd Me Nyaahn New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "lww", - translationId: "lww", - languageName: "Lewo", - languageNameInEnglish: "Lewo", - dialect: null, - homeDomain: "ebible.org", - title: "Lologena Wo Kienane Yesu Kristo Kome Kewo", - description: "The New Testament in the Lewo Language of Epi Island, Vanuatu", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/lww/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7835, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "LWWWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "lww2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Lewo NT", - PODISBN: "978-1-5313-0383-9", - script: "Latin", - sourceDate: "2018-12-20", - }, - { - languageCode: "maa", - translationId: "maaNT", - languageName: "Mazatec, San Jer\u00f3nimo Tec\u00f3atl", - languageNameInEnglish: "Mazatec, San Jer\u00f3nimo Tec\u00f3atl", - dialect: null, - homeDomain: "ebible.org", - title: "'\u00c9n-la\u0331 Nain\u00e1 xi kjoa\u0331 ts'e\u0331 Jesucristo", - description: - "New Testament in Mazatec, San Jer\u00f3nimo Tec\u00f3atl Mazateco de S Jeronimo Tecoatl; maa (MX:maa:Mazatec, San Jer\u00f3nimo Tec\u00f3atl)", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/maaNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7948, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MAASJV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "maa2013eb", - rodCode: 19452.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "San Jer\u00f3nimo Tec\u00f3atl Mazatec NT", - PODISBN: "978-1-5313-0384-6", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mai", - translationId: "mai", - languageName: "Maithili", - languageNameInEnglish: "Maithili", - dialect: null, - homeDomain: "ebible.org", - title: "jiv\u0259n s\u0259ndesh", - description: "Maithili: jiv\u0259n s\u0259ndesh (New Testament)", - Redistributable: false, - Copyright: - "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc. and The Bible Society of India", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/mai/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7925, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MAIWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mai2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Maithili: jiv\u0259n s\u0259ndesh (New Testament)", - PODISBN: null, - script: "Devanagari", - sourceDate: "2020-11-19", - }, - { - languageCode: "maj", - translationId: "majNT", - languageName: "Mazatec, Jalapa de D\u00edaz", - languageNameInEnglish: "Mazatec, Jalapa de D\u00edaz", - dialect: null, - homeDomain: "ebible.org", - title: "\u00c9he\u0331n Nti\u0331a\u0331n\u00e1", - description: - "New Testament in Mazatec, Jalapa de D\u00edaz (MX:maj:Mazatec, Jalapa de D\u00edaz)", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/majNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MAJBTT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "maj2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Jalapa de D\u00edaz Mazatec NT", - PODISBN: "978-1-5313-0385-3", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mal", - translationId: "mal", - languageName: "\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02", - languageNameInEnglish: "Malayalam", - dialect: null, - homeDomain: "ebible.org", - title: "\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02 \u0d2c\u0d48\u0d2c\u0d3f\u0d33\u0d4d\u200d", - description: - "The Indian Revised Version Holy Bible in the Malayalam language of India (BCS 2017)", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Bridge Communication Systems", - UpdateDate: "2020-04-09", - publicationURL: "http://ebible.org/mal/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23142, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MALIRV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mal2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Manjari", - shortTitle: "Malayalam Indian Revised Version Bible", - PODISBN: null, - script: "Malayalam", - sourceDate: "2020-04-10", - }, - { - languageCode: "mal", - translationId: "malc", - languageName: "\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02", - languageNameInEnglish: "\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02", - dialect: null, - homeDomain: "ebible.org", - title: "Biblica\u00ae \u0d38\u0d4d\u0d35\u0d24\u0d28\u0d4d\u0d24\u0d4d\u0d30\u0d02 \u0d38\u0d2e\u0d15\u0d3e\u0d32\u0d3f\u0d15 \u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d35\u0d3f\u0d35\u0d7c\u0d24\u0d4d\u0d24\u0d28\u0d02 2020", - description: - "Malayalam: Biblica\u00ae \u0d38\u0d4d\u0d35\u0d24\u0d28\u0d4d\u0d24\u0d4d\u0d30\u0d02 \u0d38\u0d2e\u0d15\u0d3e\u0d32\u0d3f\u0d15 \u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d35\u0d3f\u0d35\u0d7c\u0d24\u0d4d\u0d24\u0d28\u0d02 2020 (Bible) of India", - Redistributable: true, - Copyright: "Copyright \u00a9 2021 Biblica, Inc.", - UpdateDate: "2021-11-15", - publicationURL: "http://ebible.org/malc/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23061, - NTbooks: 27, - NTchapters: 260, - NTverses: 7879, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MALBIB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "malc2021eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Manjari", - shortTitle: "Malayalam Contemporary Bible", - PODISBN: null, - script: "Malayalam", - sourceDate: "2021-06-25", - }, - { - languageCode: "mam", - translationId: "mamC", - languageName: "Mam", - languageNameInEnglish: "Mam", - dialect: "Comitancillo", - homeDomain: "ebible.org", - title: "Ak'aj tu'jil tyol qman", - description: "New Testament in Mam Comitancillo; mam (GT:mam:Mam)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mamC/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7882, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MAMCOM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mamC2009eb", - rodCode: 4797.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Mam Comitancillo NT", - PODISBN: "978-1-5313-0386-0", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mam", - translationId: "mamNT", - languageName: "Mam", - languageNameInEnglish: "Mam", - dialect: "Todos Santos", - homeDomain: "ebible.org", - title: "Ac\u02bcaj testamento (El Nuevo testamento in Mam de Todos Santos)", - description: "New Testament in Mam Todos Santos; mam (GT:mam:Mam)", - Redistributable: true, - Copyright: "Copyright \u00a9 2000 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mamNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7943, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MAMSBG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mamTS2000eb", - rodCode: 3470.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Mam Todos Santos NT", - PODISBN: "978-1-5313-0387-7", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "maq", - translationId: "maqNT", - languageName: "Mazatec, Chiquihuitl\u00e1n", - languageNameInEnglish: "Mazatec, Chiquihuitl\u00e1n", - dialect: null, - homeDomain: "ebible.org", - title: "Compromisu xi majo xi casahmi nina cojo xuta (El Nuevo Testamento en el mazateco de Chiquihuitl\u00e1n de Ju\u00e1rez ... y en espa\u00f1ol)", - description: - "New Testament in Mazatec, Chiquihuitl\u00e1n (MX:maq:Mazatec, Chiquihuitl\u00e1n)", - Redistributable: true, - Copyright: "Copyright \u00a9 1991 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/maqNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7944, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MAQTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "maq1991eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Chiquihuitl\u00e1n Mazatec NT", - PODISBN: "978-1-5313-0388-4", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mar", - translationId: "mar", - languageName: "\u092e\u0930\u093e\u0920\u0940", - languageNameInEnglish: "Marathi", - dialect: null, - homeDomain: "ebible.org", - title: "\u0907\u0902\u0921\u093f\u092f\u0928 \u0930\u0940\u0935\u093e\u0907\u091c\u094d\u0921 \u0935\u0930\u094d\u091c\u0928 (IRV) - \u092e\u0930\u093e\u0920\u0940", - description: "The Indian Revised Version Holy Bible in the Marathi language of India", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Bridge Connectivity Solutions", - UpdateDate: "2020-02-11", - publicationURL: "http://ebible.org/mar/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23143, - NTbooks: 27, - NTchapters: 260, - NTverses: 7944, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MARIRV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mar2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "FreeSerif", - shortTitle: "Marathi Indian Revised Version Bible", - PODISBN: null, - script: "Devanagari", - sourceDate: "2020-01-25", - }, - { - languageCode: "mau", - translationId: "mauNT", - languageName: "Mazatec, Huautla", - languageNameInEnglish: "Mazatec, Huautla", - dialect: null, - homeDomain: "ebible.org", - title: "Xon\u2074-le\u2074 ni\u00b3na\u00b9 xi\u00b3 t\u0294a\u00b3ts\u0294e\u2074 Jesucristo", - description: "New Testament in Mazatec, Huautla (MX:mau:Mazatec, Huautla)", - Redistributable: true, - Copyright: "Copyright \u00a9 1960 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mauNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MAUWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mau1960eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Huautla Mazatec NT", - PODISBN: "978-1-5313-0389-1", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mav", - translationId: "mavNT", - languageName: "Sater\u00e9-Maw\u00e9", - languageNameInEnglish: "Sater\u00e9-Maw\u00e9", - dialect: null, - homeDomain: "ebible.org", - title: "Tupana Ehay Satere Mawe Pusupuo", - description: "New Testament in Sater\u00e9-Maw\u00e9 (BR:mav:Sater\u00e9-Maw\u00e9)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mavNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MAVWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mav2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sater\u00e9-Maw\u00e9 NT", - PODISBN: "978-1-5313-0390-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "maz", - translationId: "mazNT", - languageName: "Mazahua, Central", - languageNameInEnglish: "Mazahua, Central", - dialect: null, - homeDomain: "ebible.org", - title: "Nu o\u0331 j\u00f1a mizhocjimi nu mama ja ga cja e Jesucristo", - description: "New Testament in Mazahua, Central (MX:maz:Mazahua, Central)", - Redistributable: true, - Copyright: "Copyright \u00a9 2007 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mazNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7850, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MAZTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "maz2007eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Central Mazahua NT", - PODISBN: "978-1-5313-0391-4", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mbb", - translationId: "mbbOT", - languageName: "Manobo, Western Bukidnon", - languageNameInEnglish: "Manobo, Western Bukidnon", - dialect: null, - homeDomain: "ebible.org", - title: "Is Lalag te Megbevay\u00e0", - description: "Old Testament only in Manobo, Western Bukidnon", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-12-09", - publicationURL: "http://ebible.org/mbbOT/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22339, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MBBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mbb2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Western Bukidnon Manobo OT", - PODISBN: "978-1-5313-0392-1", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mbc", - translationId: "mbcNT", - languageName: "Macushi", - languageNameInEnglish: "Macushi", - dialect: null, - homeDomain: "ebible.org", - title: "Amenan pe paapaya uyetato'kon", - description: "New Testament in Macushi (BR:mbc:Macushi)", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mbcNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7882, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MBCWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mbc2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Macushi NT", - PODISBN: "978-1-5313-0393-8", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mbd", - translationId: "mbd", - languageName: "Dibabawon Manobo", - languageNameInEnglish: "Dibabawon Manobo", - dialect: null, - homeDomain: "ebible.org", - title: "Dibabawon Manobo texts", - description: "Manobo, Dibabawon: Dibabawon Manobo texts New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1988 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/mbd/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7828, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MBDWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mbd1988eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Manobo, Dibabawon: Dibabawon Manobo texts New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "mbh", - translationId: "mbh", - languageName: "Mangseng", - languageNameInEnglish: "Mangseng", - dialect: null, - homeDomain: "png.bible", - title: "God Ile Riong Kinnga Ponganga nge Mangsengre Okei", - description: "The New Testament in the Mangseng Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1999 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-24", - publicationURL: "http://png.bible/mbh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7906, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MBHTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mbh1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Mangseng NT", - PODISBN: "978-1-5313-0394-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mbi", - translationId: "mbi", - languageName: "Manobo, Ilianen", - languageNameInEnglish: "Manobo, Ilianen", - dialect: null, - homeDomain: "ebible.org", - title: "Ke meupiya ne tudtul mekeatag ki Hisu Kristu", - description: "Manobo, Ilianen: Ke meupiya ne tudtul mekeatag ki Hisu Kristu New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1989 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/mbi/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7921, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MBIWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mbi1989eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Manobo, Ilianen: Ke meupiya ne tudtul mekeatag ki Hisu Kristu New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "mbj", - translationId: "mbjNT", - languageName: "Nad\u00ebb", - languageNameInEnglish: "Nadeb", - dialect: null, - homeDomain: "ebible.org", - title: "Pop Hag\u00e4 Do Panyyg Han\u00e4m Do Hah\u1ef9\u1ef9h", - description: "The New Testament in the Nad\u00ebb language of Brazil (BR:mbj:Nad\u00ebb)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-29", - publicationURL: "http://ebible.org/mbjNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7895, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MBJWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mbj2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Nad\u00ebb NT", - PODISBN: "978-1-5313-0395-2", - script: "Latin", - sourceDate: "2015-02-17", - }, - { - languageCode: "mbl", - translationId: "mblNT", - languageName: "Maxakal\u00ed", - languageNameInEnglish: "Maxakal\u00ed", - dialect: null, - homeDomain: "ebible.org", - title: "Topa Y\u00f5g Tappet", - description: "New Testament in Maxakal\u00ed (BR:mbl:Maxakal\u00ed)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mblNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7911, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MBLWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mbl2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Maxakal\u00ed NT", - PODISBN: "978-1-5313-0397-6", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mbs", - translationId: "mbs", - languageName: "Sarangani Manobo", - languageNameInEnglish: "Manobo, Sarangani", - dialect: null, - homeDomain: "ebible.org", - title: "Se kaling peokit", - description: "New Testament in Manobo, Sarangani", - Redistributable: true, - Copyright: "Copyright \u00a9 1982 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/mbs/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1517, - NTbooks: 27, - NTchapters: 260, - NTverses: 7893, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MBSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mbs1982eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sarangani Manobo NT", - PODISBN: "978-1-5313-0398-3", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "mbt", - translationId: "mbtNT", - languageName: "Manobo, Matigsalug", - languageNameInEnglish: "Manobo, Matigsalug", - dialect: null, - homeDomain: "ebible.org", - title: "Meupiya ne panugtulen: Bibliya ne Matigsalug", - description: "NT in Manobo, Matigsalug", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mbtNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7926, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MBTWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mbt2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Matigsalug Manobo NT", - PODISBN: "978-1-5313-0399-0", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mca", - translationId: "mca", - languageName: "Maka", - languageNameInEnglish: "Maka", - dialect: null, - homeDomain: "ebible.org", - title: "INTATA \u023dE'\u023dIJEI", - description: "New Testament in Maka", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/mca/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MCAWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mca2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Maka NT", - PODISBN: "978-1-5313-0400-3", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "mcb", - translationId: "mcbNT", - languageName: "Machiguenga", - languageNameInEnglish: "Machiguenga", - dialect: null, - homeDomain: "ebible.org", - title: "Iriniane Tasorintsi", - description: "New Testament in Machiguenga (PE:mcb:Machiguenga)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mcbNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7858, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MCBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mcb2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Machiguenga NT", - PODISBN: "978-1-5313-0401-0", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mcd", - translationId: "mcdNT", - languageName: "Sharanahua", - languageNameInEnglish: "Sharanahua", - dialect: null, - homeDomain: "ebible.org", - title: "Diospan Tsain", - description: "New Testament in Sharanahua (PE:mcd:Sharanahua)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mcdNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7481, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MCDWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mcd2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sharanahua NT", - PODISBN: "978-1-5313-0402-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "mcf", - translationId: "mcfNT", - languageName: "Mats\u00e9s", - languageNameInEnglish: "Mats\u00e9s", - dialect: null, - homeDomain: "ebible.org", - title: "Esuquidistu Chuiquin Tantiamete", - description: "New Testament in Mats\u00e9s (PE:mcf:Mats\u00e9s)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mcfNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7847, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MCFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mcfNT2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Mats\u00e9s NT", - PODISBN: "978-1-5313-0403-4", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mco", - translationId: "mcoNT", - languageName: "Coatl\u00e1n Mixe", - languageNameInEnglish: "Mixe, Coatl\u00e1n", - dialect: null, - homeDomain: "ebible.org", - title: "El Nuevo Testamento en mixe de Coatl\u00e1n", - description: "New Testament in Mixe, Coatl\u00e1n (MX:mco:Mixe, Coatl\u00e1n)", - Redistributable: true, - Copyright: "Copyright \u00a9 1976 Wycliffe Bible Translators, Inc.", - UpdateDate: "2018-11-16", - publicationURL: "http://ebible.org/mcoNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7853, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MCOTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mco1976eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Coatl\u00e1n Mixe NT", - PODISBN: "978-1-5313-0404-1", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mcp", - translationId: "mcp", - languageName: "Makaa", - languageNameInEnglish: "Makaa", - dialect: null, - homeDomain: "ebible.org", - title: "K\u00e1laad Z\u025bmb\u00ee : S\u0254 \u0327 \u00e1 G\u00fagw\u00e1an", - description: "New Testament in Makaa", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2018-11-16", - publicationURL: "http://ebible.org/mcp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MCPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mcp2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Makaa NT", - PODISBN: "978-1-5313-0405-8", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "mcq", - translationId: "mcq", - languageName: "Managalasi", - languageNameInEnglish: "Ese or Managalasi", - dialect: null, - homeDomain: "png.bible", - title: "Godoni Vu'a Maiu'ina", - description: - "The New Testament in the Ese Language, also known as the Managalasi Language, of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1975, 1999 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/mcq/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7933, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MCQSPP", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mcq1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Managalasi NT", - PODISBN: "978-1-5313-0406-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mcr", - translationId: "mcr", - languageName: "Menya", - languageNameInEnglish: "Menya", - dialect: null, - homeDomain: "png.bible", - title: "Goti Hanjuw\u00e4 Iqueq\u00e4 Kuk\u014bui", - description: "The New Testament in the Menya language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-07-12", - publicationURL: "http://png.bible/mcr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7645, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MCRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mcr2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Menya NT", - PODISBN: null, - script: "Latin", - sourceDate: "2017-11-17", - }, - { - languageCode: "mcu", - translationId: "mcu", - languageName: "Cameroon Mambila", - languageNameInEnglish: "Cameroon Mambila", - dialect: null, - homeDomain: "ebible.org", - title: "Mv\u00f9 \u014ag\u0254\u0300\u014b Fe\u00ea", - description: "Mambilla NT (Cameroon-Le Nouveau Testament en mambila)", - Redistributable: false, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/mcu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7937, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MCUWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mcu2001eb", - rodCode: 2580.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mambilla NT (Cameroon-Le Nouveau Testament en mambila)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "mdm", - translationId: "mdm", - languageName: null, - languageNameInEnglish: "Mayogo", - dialect: null, - homeDomain: "ebible.org", - title: "Gandja na Mb\u0268a", - description: "Mayogo: Gandja na Mb\u0268a (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/mdm/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7925, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MDMWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mdm2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mayogo: Gandja na Mb\u0268a (New Testament)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "mdy", - translationId: "mdyeth", - languageName: "Maale", - languageNameInEnglish: "Maale", - dialect: null, - homeDomain: "ebible.org", - title: "\u130c\u12a4\u12e6 \u121b\u1343\u12a3\u1356", - description: "The Holy Bible in the Maale language of Ethiopia, using Ethiopic script", - Redistributable: true, - Copyright: - "Copyright \u00a9 2015 The Word for the World International and The Bible Society of Ethiopia", - UpdateDate: "2019-12-29", - publicationURL: "http://ebible.org/mdyeth/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7943, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MDYTWF", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mdyeth2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "FreeSerif", - shortTitle: "Maale Bible (Ethiopic script)", - PODISBN: null, - script: "Ethiopic", - sourceDate: "2019-12-30", - }, - { - languageCode: "med", - translationId: "med", - languageName: "Melpa", - languageNameInEnglish: "Melpa", - dialect: null, - homeDomain: "png.bible", - title: "Got Nga Nambuha Ik Kai", - description: "The New Testament in the Melpa Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1995 The Bible Society of Papua New Guinea", - UpdateDate: "2012-10-18", - publicationURL: "http://png.bible/med/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7511, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MEDPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "med1995eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Melpa NT", - PODISBN: "978-1-5313-0407-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mee", - translationId: "mee", - languageName: "Mengen", - languageNameInEnglish: "Mengen", - dialect: null, - homeDomain: "png.bible", - title: "Piunga Ba Bonga A Pau", - description: "The New Testament in the Mengen Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-19", - publicationURL: "http://png.bible/mee/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7934, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MEETBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mee2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Mengen NT", - PODISBN: "978-1-5313-0408-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mek", - translationId: "mek", - languageName: "Mekeo", - languageNameInEnglish: "Mekeo", - dialect: null, - homeDomain: "png.bible", - title: "Mauni Mamaga Iifaga", - description: "The New Testament in the Mekeo Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1998 The Bible Society of Papua New Guinea", - UpdateDate: "2012-01-19", - publicationURL: "http://png.bible/mek/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7803, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MEKPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mek1998eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Mekeo NT", - PODISBN: "978-1-5313-0409-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "meq", - translationId: "meq", - languageName: "Merey", - languageNameInEnglish: "Merey", - dialect: null, - homeDomain: "ebible.org", - title: "Dzam We\u0257eye", - description: "New Testament in Merey", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/meq/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MEQWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "meq2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Merey NT", - PODISBN: "978-1-5313-0410-2", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "met", - translationId: "met", - languageName: "Mato", - languageNameInEnglish: "Mato", - dialect: null, - homeDomain: "png.bible", - title: "Urana Xuana", - description: - "The New Testament and portions of the Old Testament in the Mato Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-12-13", - publicationURL: "http://png.bible/met/", - OTbooks: 4, - OTchapters: 106, - OTverses: 3149, - NTbooks: 27, - NTchapters: 260, - NTverses: 7918, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "METWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "met2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mato Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2022-08-30", - }, - { - languageCode: "meu", - translationId: "meu", - languageName: "Motu", - languageNameInEnglish: "Motu", - dialect: null, - homeDomain: "png.bible", - title: "Buk Baibel long tokples Motu", - description: "The Holy Bible in the Motu language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1959-1973 Bible Society of Papua New Guinea", - UpdateDate: "2014-12-09", - publicationURL: "http://png.bible/meu/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23136, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MEUPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "meu1973eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Motu Bible", - PODISBN: "978-1-5313-0411-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mfh", - translationId: "mfh", - languageName: null, - languageNameInEnglish: "Matal", - dialect: null, - homeDomain: "ebible.org", - title: "Wakit\u00e0 Z\u0259zag\u0259la Wakit\u00e0 A\u014ba Mak\u0259s Vok Slawda Mawga (Cameroun)", - description: - "Matal: Wakit\u00e0 Z\u0259zag\u0259la Wakit\u00e0 A\u014ba Mak\u0259s Vok Slawda Mawga (Cameroun) (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/mfh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7952, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MFHWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mfh2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Matal NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "mfi", - translationId: "mfi", - languageName: null, - languageNameInEnglish: "Wandala", - dialect: null, - homeDomain: "ebible.org", - title: "Wakita \u00e1 Dadaamiya", - description: "La Bible en wandala", - Redistributable: false, - Copyright: "Copyright \u00a9 1999 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/mfi/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1521, - NTbooks: 27, - NTchapters: 260, - NTverses: 7944, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MFIWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mfi1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Wandala Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-02", - }, - { - languageCode: "mfy", - translationId: "mfy", - languageName: null, - languageNameInEnglish: "Mayo", - dialect: null, - homeDomain: "ebible.org", - title: "Diosta nooki yorem nokpo", - description: "Mayo: Diosta nooki yorem nokpo New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/mfy/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MFYWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mfy2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mayo NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "mgc", - translationId: "mgc", - languageName: "Morokodo", - languageNameInEnglish: "Morokodo", - dialect: null, - homeDomain: "ebible.org", - title: "Morokodo", - description: "Portions of the Holy Bible in the Morokodo language of South Sudan", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://ebible.org/mgc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 6, - NTchapters: 103, - NTverses: 3827, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MGCPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mgc2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Morokodo Bible Portions", - PODISBN: "978-1-5313-0833-9", - script: "Latin", - sourceDate: "2021-02-17", - }, - { - languageCode: "mge", - translationId: "mge", - languageName: null, - languageNameInEnglish: "Mango", - dialect: null, - homeDomain: "ebible.org", - title: "Ta l\u0259 Lub\u0259 Kunmind\u0268 k\u0268\u0301 Sig\u0268", - description: - "Mango: Ta l\u0259 Lub\u0259 Kunmind\u0268 k\u0268\u0301 Sig\u0268 (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/mge/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7948, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MGEWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mge2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mango NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "mgh", - translationId: "mgh", - languageName: "Makhuwa-Meetto", - languageNameInEnglish: "Makhuwa-Meetto", - dialect: null, - homeDomain: "ebible.org", - title: "Makhuwa-Meetto do Novo Testamento", - description: "The New Testament in the Makhuwa-Meetto Language of Mozambique", - Redistributable: true, - Copyright: "Copyright \u00a9 1927, 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-12-29", - publicationURL: "http://ebible.org/mgh/", - OTbooks: 2, - OTchapters: 54, - OTverses: 1581, - NTbooks: 2, - NTchapters: 21, - NTverses: 786, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MGHWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mgh2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Makhuwa-Meetto NT", - PODISBN: "978-1-5313-0412-6", - script: "Latin", - sourceDate: "2015-02-28", - }, - { - languageCode: "mgh", - translationId: "mgh2016", - languageName: "Makhuwa-Meetto", - languageNameInEnglish: "Makhuwa-Meetto", - dialect: null, - homeDomain: "ebible.org", - title: "Makua New Testament 2015", - description: "Makhuwa-Meetto: Makua New Testament 2015 New Testament", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 The Word for the World International", - UpdateDate: "2020-11-11", - publicationURL: "http://ebible.org/mgh2016/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MGHWFT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mgh2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Makhuwa-Meetto: Makua New Testament 2015 New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "mgq", - translationId: "mgq", - languageName: null, - languageNameInEnglish: "Malila", - dialect: null, - homeDomain: "ebible.org", - title: "ULufingo uLupwa k\u0289 ndongo \u0268ya Sh\u0268mal\u0268la", - description: - "Malila: ULufingo uLupwa k\u0289 ndongo \u0268ya Sh\u0268mal\u0268la (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/mgq/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7934, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MGQWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mgq2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Malila: ULufingo uLupwa k\u0289 ndongo \u0268ya Sh\u0268mal\u0268la (New Testament+)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "mgw", - translationId: "mgw", - languageName: "Matumbi", - languageNameInEnglish: "Matumbi", - dialect: null, - homeDomain: "ebible.org", - title: "Injili ya Yesu", - description: "Matumbi: Injili ya Yesu Mwaiandikilwe na Luka Portions", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://ebible.org/mgw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 2, - NTchapters: 52, - NTverses: 2151, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MGWPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mgw2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Matumbi: Injili ya Yesu Mwaiandikilwe na Luka Portions", - PODISBN: null, - script: "Latin", - sourceDate: "2020-04-10", - }, - { - languageCode: "mhl", - translationId: "mhl", - languageName: "Mauwake", - languageNameInEnglish: "Mauwake", - dialect: null, - homeDomain: "png.bible", - title: "YEESUS OPOR ELIWA", - description: "The New Testament in the Mauwake Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1998 The Bible Society of Papua New Guinea", - UpdateDate: "2016-08-24", - publicationURL: "http://png.bible/mhl/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7938, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MHLPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mhl1998eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Mauwake NT", - PODISBN: "978-1-5313-0413-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mib", - translationId: "mibNT", - languageName: "Mixtec, Atatl\u00e1huca", - languageNameInEnglish: "Mixtec, Atatl\u00e1huca", - dialect: null, - homeDomain: "ebible.org", - title: "Nuevo Testamento en mixteco", - description: "New Testament in Mixtec, Atatl\u00e1huca (MX:mib:Mixtec, Atatl\u00e1huca)", - Redistributable: true, - Copyright: "Copyright \u00a9 1973 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mibNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MIBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mib1973eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Atatl\u00e1huca Mixtec", - PODISBN: "978-1-5313-0414-0", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mic", - translationId: "micMIQNT", - languageName: "Mi'kmaq", - languageNameInEnglish: "Mi'kmaq", - dialect: null, - homeDomain: "ebible.org", - title: "Gelulg Glusuaqan: Gisiteget Agnutmugsi'gw", - description: "Mi'kmaq: Mi'kmaq New Testament New Testament only", - Redistributable: true, - Copyright: "Copyright \u00a9 2003 Canadian Bible Society", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/micMIQNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7913, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MICCBS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "micMIQ2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Mi'kmaq NT", - PODISBN: "978-1-5313-0415-7", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mie", - translationId: "mieNT", - languageName: "Mixtec, Ocotepec", - languageNameInEnglish: "Mixtec, Ocotepec", - dialect: null, - homeDomain: "ebible.org", - title: "Nuevo Testamento en mixteco de Ocotepec", - description: "New Testament in Mixtec, Ocotepec (MX:mie:Mixtec, Ocotepec)", - Redistributable: true, - Copyright: "Copyright \u00a9 1977 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mieNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MIETBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mie1977eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Ocotepec Mixtec", - PODISBN: "978-1-5313-0416-4", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mif", - translationId: "mif", - languageName: null, - languageNameInEnglish: "Mofu-Gudur", - dialect: null, - homeDomain: "ebible.org", - title: "Mej\u0259wey-mey Mawiya", - description: "Mofu-Gudur: Mej\u0259wey-mey Mawiya New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2007 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-19", - publicationURL: "http://ebible.org/mif/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7909, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MIFWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mif2007eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mofu-Gudur NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-20", - }, - { - languageCode: "mig", - translationId: "migNT", - languageName: "Mixtec, San Miguel el Grande", - languageNameInEnglish: "Mixtec, San Miguel el Grande", - dialect: null, - homeDomain: "ebible.org", - title: "Testamento jaa maa jitoho-yo Jesucristo", - description: - "New Testament in Mixtec, San Miguel el Grande (MX:mig:Mixtec, San Miguel el Grande)", - Redistributable: true, - Copyright: "Copyright \u00a9 1951 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/migNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MIGWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mig1951eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "San Miguel el Grande Mixtec NT", - PODISBN: "978-1-5313-0417-1", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mih", - translationId: "mihNT", - languageName: "Mixtec, Chayuco", - languageNameInEnglish: "Mixtec, Chayuco", - dialect: null, - homeDomain: "ebible.org", - title: "Tuhun Ndyoo sihin tyehen \u00f1i", - description: "New Testament in Mixtec, Chayuco (MX:mih:Mixtec, Chayuco)", - Redistributable: true, - Copyright: "Copyright \u00a9 1979 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mihNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MIHWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mih1979eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Chayuco Mixtec NT", - PODISBN: "978-1-5313-0418-8", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mil", - translationId: "milNT", - languageName: "Mixtec, Pe\u00f1oles", - languageNameInEnglish: "Mixtec, Pe\u00f1oles", - dialect: null, - homeDomain: "ebible.org", - title: "Tn\u00fahu n\u00ed c\u00e1h\u00e1\u207f y\u01ce ndi\u01d2x\u00ed xito c\u00f9u u\u00fa", - description: "New Testament in Mixtec, Pe\u00f1oles (MX:mil:Mixtec, Pe\u00f1oles)", - Redistributable: true, - Copyright: "Copyright \u00a9 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/milNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7911, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MILTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mil2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Pe\u00f1oles Mixtec NT", - PODISBN: "978-1-5313-0419-5", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mim", - translationId: "mim", - languageName: "Mixtec, Alacatlatzala", - languageNameInEnglish: "Mixtec, Alacatlatzala", - dialect: null, - homeDomain: "ebible.org", - title: "Alacatlatzala Mixtec New Testament", - description: "Mixtec, Alacatlatzala: Alacatlatzala Mixtec New Testament (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-11", - publicationURL: "http://ebible.org/mim/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7952, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MIMWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mim2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mixtec, Alacatlatzala: Alacatlatzala Mixtec New Testament (New Testament+)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "mio", - translationId: "mioNT", - languageName: "Mixtec, Pinotepa Nacional", - languageNameInEnglish: "Mixtec, Pinotepa Nacional", - dialect: null, - homeDomain: "ebible.org", - title: "Tutu chaa cha iyo cuenda ra hahnu Jesucristo (El Nuevo Testamento de nuestro se\u00f1or Jesucristo)", - description: - "New Testament in Mixtec, Pinotepa Nacional (MX:mio:Mixtec, Pinotepa Nacional)", - Redistributable: true, - Copyright: "Copyright \u00a9 1980 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mioNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7924, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MIOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mio1980eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Pinotepa Nacional Mixtec NT", - PODISBN: "978-1-5313-0420-1", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mir", - translationId: "mirNT", - languageName: "Mixe, Isthmus", - languageNameInEnglish: "Mixe, Isthmus", - dialect: null, - homeDomain: "ebible.org", - title: "El Nuevo Testamento en mixe de Guichicovi", - description: "New Testament in Mixe, Isthmus (MX:mir:Mixe, Isthmus)", - Redistributable: true, - Copyright: "Copyright \u00a9 1988 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mirNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7512, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MIRTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mir1988eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Isthmus Mixe NT", - PODISBN: "978-1-5313-0421-8", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mit", - translationId: "mitNT", - languageName: "Mixtec, Southern Puebla", - languageNameInEnglish: "Mixtec, Southern Puebla", - dialect: null, - homeDomain: "ebible.org", - title: "Ley saa ni nacoo Jesucristu", - description: "New Testament in Mixtec, Southern Puebla (MX:mit:Mixtec, Southern Puebla)", - Redistributable: true, - Copyright: "Copyright \u00a9 1978 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mitNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7787, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MITTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mit1978eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Southern Puebla Mixtec NT", - PODISBN: "978-1-5313-0422-5", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "miy", - translationId: "miy", - languageName: "Ayutla Mixtec", - languageNameInEnglish: "Ayutla Mixtec", - dialect: null, - homeDomain: "ebible.org", - title: "El Nuevo Testamento en el Mixteco de Ayutla", - description: "Mixtec, Ayutla: El Nuevo Testamento en el Mixteco de Ayutla New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/miy/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MIYWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "miy2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mixtec, Ayutla: El Nuevo Testamento en el Mixteco de Ayutla New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "miz", - translationId: "mizNT", - languageName: "Mixtec, Coatzospan", - languageNameInEnglish: "Mixtec, Coatzospan", - dialect: null, - homeDomain: "ebible.org", - title: "T\u016b\u02bc\u00fan xuva k\u014d vat\u0101 \u00f3 nt\u00e1ka\u02bcan \u00f1a \u00f1u\u00fa Coatzospan", - description: "New Testament in Mixtec, Coatzospan (MX:miz:Mixtec, Coatzospan)", - Redistributable: true, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mizNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MIZTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "miz2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Coatzospan Mixtec NT", - PODISBN: "978-1-5313-0423-2", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mjc", - translationId: "mjcNT", - languageName: "Mixtec, San Juan Colorado", - languageNameInEnglish: "Mixtec, San Juan Colorado", - dialect: null, - homeDomain: "ebible.org", - title: "Tuhun tsaa tsa nacoo\u0331 jutu ma\u00f1i yo Jesucristo tsi yo", - description: - "New Testament in Mixtec, San Juan Colorado (MX:mjc:Mixtec, San Juan Colorado)", - Redistributable: true, - Copyright: "Copyright \u00a9 1994 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mjcNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7923, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MJCWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mjc1994eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "San Juan Colorado Mixtec NT", - PODISBN: "978-1-5313-0424-9", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mkj", - translationId: "mkj", - languageName: "Mwoakilloa", - languageNameInEnglish: "Mokilese", - dialect: null, - homeDomain: "ebible.org", - title: "Mokilese Bible", - description: "Matthew and Mark in the Mokilese language of Micronesia", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Mokilese Bible Translation Committee", - UpdateDate: "2023-02-06", - publicationURL: "http://ebible.org/mkj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 3, - NTchapters: 68, - NTverses: 2895, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MKJMOK", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mkj2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mokilese Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-06", - }, - { - languageCode: "mkl", - translationId: "mkl", - languageName: "Monkole", - languageNameInEnglish: "Mokole", - dialect: null, - homeDomain: "ebible.org", - title: "Akabuu Tit\u0254\u0303i Idei Ilaa\u0254", - description: "Monkole New Testament", - Redistributable: true, - Copyright: "Copyright \u00a9 2006 SIM International", - UpdateDate: "2014-10-02", - publicationURL: "http://ebible.org/mkl/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7904, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MKLSIM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mkl2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Monkole NT", - PODISBN: "978-1-5313-0425-6", - script: "Latin", - sourceDate: "2014-10-03", - }, - { - languageCode: "mkn", - translationId: "mkn", - languageName: "Kupang Malay", - languageNameInEnglish: "Kupang Malay", - dialect: null, - homeDomain: "ebible.org", - title: "Kupang Malay Bible", - description: "The New Testament in Kupang Malay of West Timor, Indonesia", - Redistributable: true, - Copyright: "Copyright \u00a9 2007 Unit Bahasa dan Budaya", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/mkn/", - OTbooks: 4, - OTchapters: 68, - OTverses: 1709, - NTbooks: 27, - NTchapters: 260, - NTverses: 7662, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MKNUBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mkn2007eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kupang Malay Bible", - PODISBN: "978-1-5313-0426-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mks", - translationId: "mksNT", - languageName: "Mixtec, Silacayoapan", - languageNameInEnglish: "Mixtec, Silacayoapan", - dialect: null, - homeDomain: "ebible.org", - title: "Tu\u0331hun sa\u0331\u00e1 \u00f1a\u0331 na\u0331j\u00e1ndacoo Jesucristo nu\u0331 yo\u0331: El Nuevo Testamento en el mixteco de Silacayoapan", - description: "New Testament in Mixtec, Silacayoapan (MX:mks:Mixtec, Silacayoapan)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mksNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MKSTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mks2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Silacayoapan Mixtec NT", - PODISBN: "978-1-5313-0427-0", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mle", - translationId: "mle", - languageName: "Manambu", - languageNameInEnglish: "Manambu", - dialect: null, - homeDomain: "png.bible", - title: "Nupela Testamen long Manambu", - description: "The New Testament in the Manambu language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-07-12", - publicationURL: "http://png.bible/mle/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7329, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MLEWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mle2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Manabu NT", - PODISBN: "978-1-5313-0428-7", - script: "Latin", - sourceDate: "2021-05-06", - }, - { - languageCode: "mlh", - translationId: "mlh", - languageName: "Mape", - languageNameInEnglish: "Mape", - dialect: null, - homeDomain: "png.bible", - title: "Ma\u014bkekerisiere Bi\u014be Qura\u014b Jojofo Gariine", - description: "The New Testament in the Mape Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 The Bible Society of Papua New Guinea", - UpdateDate: "2016-08-24", - publicationURL: "http://png.bible/mlh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7938, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MLHPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mlh2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Mape NT", - PODISBN: "978-1-5313-0429-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mlp", - translationId: "mlp", - languageName: "Bargam", - languageNameInEnglish: "Bargam", - dialect: null, - homeDomain: "png.bible", - title: "God Ago Maror Muturta Agamukan", - description: "The New Testament in the Bargam Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-02-05", - publicationURL: "http://png.bible/mlp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7772, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MLPTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mlp2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Bargam NT", - PODISBN: "978-1-5313-0430-0", - script: "Latin", - sourceDate: "2013-02-05", - }, - { - languageCode: "mmn", - translationId: "mmn", - languageName: null, - languageNameInEnglish: "Mamanwa", - dialect: null, - homeDomain: "ebible.org", - title: "Ya mga panaba na Diyos", - description: "Mamanwa: Ya mga panaba na Diyos New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1982 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/mmn/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7927, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MMNWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mmn1982eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mamanwa NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "mmo", - translationId: "mmo", - languageName: "Mangga Buang", - languageNameInEnglish: "Buang, Mangga", - dialect: null, - homeDomain: "png.bible", - title: "Mangga Buang New Testament", - description: "The New Testament in the Buang, Mangga Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1981 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-19", - publicationURL: "http://png.bible/mmo/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MMOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mmo1981eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Mangga Buang NT", - PODISBN: "978-1-5313-0431-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mmx", - translationId: "mmx", - languageName: "Madak", - languageNameInEnglish: "Madak", - dialect: null, - homeDomain: "png.bible", - title: "Lenavolo Lovoang Kaala Maxat La Sam", - description: "The New Testament and Psalms in the Madak Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1995, 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-08-24", - publicationURL: "http://png.bible/mmx/", - OTbooks: 1, - OTchapters: 150, - OTverses: 2456, - NTbooks: 27, - NTchapters: 260, - NTverses: 7947, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MMXTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mmx2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Madak NT+Psalms", - PODISBN: "978-1-5313-0432-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mna", - translationId: "mna", - languageName: "Mbula", - languageNameInEnglish: "Mbula", - dialect: null, - homeDomain: "png.bible", - title: "Anutu Sua Kini Potomaxana", - description: - "Genesis, Exodus, Ruth, Psalms, Proverbs, Jonah, and The New Testament in the Mbula Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1996 The Bible Society of Papua New Guinea", - UpdateDate: "2017-08-31", - publicationURL: "http://png.bible/mna/", - OTbooks: 6, - OTchapters: 269, - OTverses: 5549, - NTbooks: 27, - NTchapters: 260, - NTverses: 7655, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MNAPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mna1996eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Mbula Bible", - PODISBN: "978-1-5313-0433-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mnv", - translationId: "mnv", - languageName: null, - languageNameInEnglish: "Rennell-Bellona", - dialect: null, - homeDomain: "ebible.org", - title: "Rennell-Bellona", - description: "Rennell-Bellona: Rennell-Bellona (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/mnv/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 4, - NTchapters: 89, - NTverses: 3779, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MNVWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mnv2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Rennell-Bellona Gospels", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "moa", - translationId: "moa", - languageName: null, - languageNameInEnglish: "Mwan", - dialect: null, - homeDomain: "ebible.org", - title: "Mwan NT (C\u00f4te d\u2019Ivoire)", - description: "Mwan: Mwan NT (C\u00f4te d\u2019Ivoire) New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-19", - publicationURL: "http://ebible.org/moa/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7946, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MOAWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "moa2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mwan NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-20", - }, - { - languageCode: "mop", - translationId: "mopNT", - languageName: "Maya, Mop\u00e1n", - languageNameInEnglish: "Maya, Mop\u00e1n", - dialect: null, - homeDomain: "ebible.org", - title: "Le'ec Ada' U T'an A Dios A Tumulbene", - description: "New Testament in Maya, Mop\u00e1n (BH:mop:Maya, Mop\u00e1n)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mopNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7923, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MOPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mop2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Mop\u00e1n Maya NT", - PODISBN: "978-1-5313-0434-8", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mox", - translationId: "mox", - languageName: "Molima", - languageNameInEnglish: "Molima", - dialect: null, - homeDomain: "png.bible", - title: "Molima New Testament", - description: "The New Testament in the Molima Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Folk&Spr\u00e5k and Swedish Mission Alliance", - UpdateDate: "2014-12-09", - publicationURL: "http://png.bible/mox/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7837, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MOXFNS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mox2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Molima NT", - PODISBN: "978-1-5313-0435-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "moz", - translationId: "moz", - languageName: null, - languageNameInEnglish: "Mukulu", - dialect: null, - homeDomain: "ebible.org", - title: "Mattup ki Taasuwa ere Aware", - description: "Mukulu: Mattup ki Taasuwa ere Aware (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-19", - publicationURL: "http://ebible.org/moz/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7922, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MOZWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "moz2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mukulu NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-20", - }, - { - languageCode: "mph", - translationId: "mph", - languageName: "Maung", - languageNameInEnglish: "Maung", - dialect: null, - homeDomain: "ebible.org", - title: "Ja Mark Animirrawung ta Nungmalal ta Ngaralk", - description: "The Gospel According to Mark in the Maung language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators Australia", - UpdateDate: "2021-11-24", - publicationURL: "http://ebible.org/mph/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 2, - NTchapters: 17, - NTverses: 604, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MPHWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mph2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Maung Mark", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-24", - }, - { - languageCode: "mpj", - translationId: "mpj", - languageName: "Martu Wangka", - languageNameInEnglish: "Martu Wangka", - dialect: null, - homeDomain: "ebible.org", - title: "Mamamili Wangka", - description: "Portions of the Holy Bible in the Martu Wangka language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1999 Bible Society of Australia", - UpdateDate: "2019-08-21", - publicationURL: "http://ebible.org/mpj/", - OTbooks: 1, - OTchapters: 50, - OTverses: 0, - NTbooks: 22, - NTchapters: 188, - NTverses: 5253, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MPJBSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mpj1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Martu Wangka Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2019-08-12", - }, - { - languageCode: "mpm", - translationId: "mpmNT", - languageName: "Mixtec, Yosond\u00faa", - languageNameInEnglish: "Mixtec, Yosond\u00faa", - dialect: null, - homeDomain: "ebible.org", - title: "Nuevo Testamento en mixteco de Yosond\u00faa", - description: "New Testament in Mixtec, Yosond\u00faa (MX:mpm:Mixtec, Yosond\u00faa)", - Redistributable: true, - Copyright: "Copyright \u00a9 1988 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mpmNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7901, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MPMTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mpm1988eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Yosond\u00faa Mixtec NT", - PODISBN: "978-1-5313-0436-2", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mpp", - translationId: "mpp", - languageName: "Migabac", - languageNameInEnglish: "Migabac", - dialect: null, - homeDomain: "png.bible", - title: "Migabac Bible Portions", - description: "Portions of the Bible in the Migabac language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2010-2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-02-20", - publicationURL: "http://png.bible/mpp/", - OTbooks: 1, - OTchapters: 4, - OTverses: 85, - NTbooks: 27, - NTchapters: 260, - NTverses: 7805, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MPPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mpp2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Migabac Bible", - PODISBN: "978-1-5313-0437-9", - script: "Latin", - sourceDate: "2019-05-31", - }, - { - languageCode: "mps", - translationId: "mps", - languageName: "Dadibi", - languageNameInEnglish: "Dadibi", - dialect: null, - homeDomain: "png.bible", - title: "Godigo dwagi yai po buku", - description: "The Holy Bible in the Dadibi Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1987, 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-08-22", - publicationURL: "http://png.bible/mps/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22447, - NTbooks: 27, - NTchapters: 260, - NTverses: 7867, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MPSTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mps2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Dadibi Bible", - PODISBN: "978-1-5313-0438-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mpt", - translationId: "mpt", - languageName: "Mian Weng", - languageNameInEnglish: "Mian", - dialect: null, - homeDomain: "png.bible", - title: "Gode Dowan Wengobe", - description: "The New Testament in the Mian Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1986 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-24", - publicationURL: "http://png.bible/mpt/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7737, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MPTTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mpt1986eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Mian NT", - PODISBN: "978-1-5313-0439-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mpx", - translationId: "mpx", - languageName: "Misima-Paneati", - languageNameInEnglish: "Misima-Paneati", - dialect: null, - homeDomain: "png.bible", - title: "Bateli Vavaluna", - description: - "The New Testament and portions of the Old Testament in the Misima-Paneati Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1947, 1997, 2011, 2016, 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-07-22", - publicationURL: "http://png.bible/mpx/", - OTbooks: 10, - OTchapters: 203, - OTverses: 4137, - NTbooks: 27, - NTchapters: 260, - NTverses: 7906, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MPXPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mpx2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Misima-Paneati Bible", - PODISBN: "978-1-5313-0440-9", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "mqb", - translationId: "mqbNT", - languageName: "Mbuko", - languageNameInEnglish: "Mbuko", - dialect: null, - homeDomain: "ebible.org", - title: "A\u0253an 'am wiya awan", - description: "New Testament in Mbuko (CM:mqb:Mbuko)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mqbNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7923, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MQBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mqb2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Mbuko NT", - PODISBN: "978-1-5313-0441-6", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mqj", - translationId: "mqjNT", - languageName: "Mamasa", - languageNameInEnglish: "Mamasa", - dialect: null, - homeDomain: "ebible.org", - title: "Buku Masero: Pa'dandi Bakaru", - description: "New Testament in Mamasa", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/mqjNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7887, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MQJWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mqj2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Mamasa NT", - PODISBN: "978-1-5313-0442-3", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "mrr", - translationId: "mrr", - languageName: null, - languageNameInEnglish: "Maria", - dialect: null, - homeDomain: "ebible.org", - title: "Hill Madia", - description: "Hill Madia standard translation", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/mrr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 26, - NTchapters: 259, - NTverses: 7569, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MRRWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mrr2019eb", - rodCode: 13730.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Hill Madia standard translation", - PODISBN: null, - script: "Devanagari", - sourceDate: "2020-11-19", - }, - { - languageCode: "msb", - translationId: "msb", - languageName: "Masbatenyo", - languageNameInEnglish: "Masbatenyo", - dialect: null, - homeDomain: "ebible.org", - title: "An Maayo na Barita Hali sa Dios", - description: "New Testament in Masbatenyo", - Redistributable: true, - Copyright: "Copyright \u00a9 1993 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/msb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7927, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MSBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "msb1993eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Masbatenyo NT", - PODISBN: "978-1-5313-0443-0", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "msc", - translationId: "msc", - languageName: "Sankaran Maninka", - languageNameInEnglish: "Sankaran Maninka", - dialect: null, - homeDomain: "ebible.org", - title: "Alla la Kitabu Seniman", - description: "Portions of the Holy Bible in the Sankaran Maninka language of Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2015 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://ebible.org/msc/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1526, - NTbooks: 3, - NTchapters: 35, - NTverses: 1405, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MSCPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "msc2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sankaran Maninka Bible Portions", - PODISBN: "978-1-5313-0834-6", - script: "Latin", - sourceDate: "2020-12-06", - }, - { - languageCode: "msk", - translationId: "msk", - languageName: "Mansaka", - languageNameInEnglish: "Mansaka", - dialect: null, - homeDomain: "ebible.org", - title: "Yang Bago na Togon Kanatu", - description: "New Testament in Mansaka", - Redistributable: true, - Copyright: "Copyright \u00a9 1975 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/msk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7797, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MSKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "msk1975eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Mansaka NT", - PODISBN: "978-1-5313-0444-7", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "msm", - translationId: "msmNT", - languageName: "Manobo, Agusan", - languageNameInEnglish: "Manobo, Agusan", - dialect: null, - homeDomain: "ebible.org", - title: "Kasuyatan to Diyus", - description: "New Testament in Agusan Manobo", - Redistributable: true, - Copyright: "Copyright \u00a9 1999 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/msmNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7842, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MSMWPS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "msm1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Agusan Manobo NT", - PODISBN: "978-1-5313-0445-4", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "msy", - translationId: "msy", - languageName: "Aruamu", - languageNameInEnglish: "Aruamu", - dialect: null, - homeDomain: "png.bible", - title: "God\u0268n Akar Aghuim; Akar D\u0268k\u0268r\u0268zir Gavgavir Igiam", - description: - "The New Testament in the Aruamu language of Madang Province, Papua New Guinea, 2004 Edition", - Redistributable: true, - Copyright: - "Copyright \u00a9 2004 Pioneer Bible Translators and the Bible Society of Papua New Guinea", - UpdateDate: "2021-03-04", - publicationURL: "http://png.bible/msy/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7730, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MSYPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "msy2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Aruamu NT", - PODISBN: "978-1-5313-0446-1", - script: "Latin", - sourceDate: "2019-12-29", - }, - { - languageCode: "msy", - translationId: "msy2020", - languageName: "Aruamu", - languageNameInEnglish: "Aruamu", - dialect: null, - homeDomain: "png.bible", - title: "God\u0268n Eghaghanim: Akar Gavgavir D\u0268k\u0268r\u0268zir Ghurim ko Igiam", - description: - "The Holy Bible in the Aruamu language of Madang Province, Papua New Guinea, 2020 Edition", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://png.bible/msy2020/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22197, - NTbooks: 27, - NTchapters: 260, - NTverses: 7729, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MSYPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "msy2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Aruamu Bible", - PODISBN: "978-1-5313-0446-1", - script: "Latin", - sourceDate: "2021-02-17", - }, - { - languageCode: "mge", - translationId: "mta", - languageName: null, - languageNameInEnglish: "Mango", - dialect: null, - homeDomain: "ebible.org", - title: "Ta l\u0259 Lub\u0259 Kunmind\u0268 k\u0268\u0301 Sig\u0268", - description: - "Mango: Ta l\u0259 Lub\u0259 Kunmind\u0268 k\u0268\u0301 Sig\u0268 (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/mta/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7948, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MTAWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mta2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Mango: Ta l\u0259 Lub\u0259 Kunmind\u0268 k\u0268\u0301 Sig\u0268 (New Testament)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "mti", - translationId: "mti", - languageName: "Maiwa", - languageNameInEnglish: "Maiwa", - dialect: null, - homeDomain: "png.bible", - title: "GAE MATAIWA", - description: "The New Testament in the Maiwa language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-08-30", - publicationURL: "http://png.bible/mti/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7933, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MTITBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mti2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Maiwa NT", - PODISBN: "978-1-5313-0447-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mto", - translationId: "mtoNT", - languageName: "Totontepec Mixe,", - languageNameInEnglish: "Mixe, Totontepec", - dialect: null, - homeDomain: "ebible.org", - title: "Ya\u0331\u02bca\u0331 tse\u02bce je\u0331 nam ko\u0331jtst\u00e1n juu\u02bc ve\u02bce je\u0331 Nte\u02bcyam\u02cd xyaktaajnjimdu je\u0331 nMa\u0331j Vints\u00e1\u0331namda Jesucristo ka\u0331jx", - description: "New Testament in Mixe, Totontepec (MX:mto:Mixe, Totontepec)", - Redistributable: true, - Copyright: "Copyright \u00a9 1989 Wycliffe Bible Translators, Inc.", - UpdateDate: "2018-11-16", - publicationURL: "http://ebible.org/mtoNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7951, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MTOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mto1989eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Totontepec Mixe NT", - PODISBN: "978-1-5313-0448-5", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "muh", - translationId: "muh", - languageName: null, - languageNameInEnglish: "M\u00fcnd\u00fc", - dialect: null, - homeDomain: "ebible.org", - title: "To Ng\u00fc M\u00fcr\u00fc ka Me bete Gina Ng\u00fc (S Sudan)", - description: - "M\u00fcnd\u00fc: To Ng\u00fc M\u00fcr\u00fc ka Me bete Gina Ng\u00fc (S Sudan) New Testament+", - Redistributable: false, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-19", - publicationURL: "http://ebible.org/muh/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1395, - NTbooks: 27, - NTchapters: 260, - NTverses: 7482, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MUHWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "muh2005eb", - rodCode: 941.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "M\u00fcnd\u00fc NT+Genesis", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-20", - }, - { - languageCode: "mur", - translationId: "mur", - languageName: null, - languageNameInEnglish: "Murle", - dialect: null, - homeDomain: "ebible.org", - title: "Z\u0186\u0186Z O JOOWO", - description: "Genesis and the NT in the Murle language of Sudan", - Redistributable: false, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-19", - publicationURL: "http://ebible.org/mur/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1483, - NTbooks: 27, - NTchapters: 260, - NTverses: 7828, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MURWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mur2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Murle Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-20", - }, - { - languageCode: "mux", - translationId: "mux", - languageName: "Bo-Ung (Mara-Gomu)", - languageNameInEnglish: "Bo-Ung", - dialect: "Mara-Gomu", - homeDomain: "png.bible", - title: "PULU YILI-NGA UNG KONALE", - description: - "The New Testament in the Mara-Gomu dialect of the Bo-Ung Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-08-30", - publicationURL: "http://png.bible/mux/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7709, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MUXTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mux2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Bo-Ung NT", - PODISBN: "978-1-5313-0449-2", - script: "Latin", - sourceDate: "2012-10-06", - }, - { - languageCode: "muy", - translationId: "muy", - languageName: "Muyang", - languageNameInEnglish: "Muyang", - dialect: null, - homeDomain: "ebible.org", - title: "Ma M\u0289weni Sulumani ge Melefit", - description: "New Testament in Muyang", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/muy/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7937, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MUYWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "muy2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Muyang NT", - PODISBN: "978-1-5313-0450-8", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "mva", - translationId: "mva", - languageName: "Manam", - languageNameInEnglish: "Manam", - dialect: null, - homeDomain: "png.bible", - title: "Testamen Oauoau", - description: "The New Testament in the Manam Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1996 Papua New Guinea Bible Translation Association", - UpdateDate: "2016-08-30", - publicationURL: "http://png.bible/mva/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MVAPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mva1996eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Manam NT", - PODISBN: "978-1-5313-0451-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mvn", - translationId: "mvn", - languageName: "Minaveha", - languageNameInEnglish: "Minaveha", - dialect: null, - homeDomain: "png.bible", - title: "Awaeha Vovouna Minaveha Movia", - description: "The New Testament in the Minaveha Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2018-04-23", - publicationURL: "http://png.bible/mvn/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7841, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MVNJLB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mvn2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Minaveha NT", - PODISBN: "978-1-5313-0452-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mwc", - translationId: "mwc", - languageName: "Are", - languageNameInEnglish: "Are", - dialect: null, - homeDomain: "png.bible", - title: "God Wonana Kaoaobaisiyena", - description: "Portions of the Holy Bible in the Are Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2011-2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-19", - publicationURL: "http://png.bible/mwc/", - OTbooks: 9, - OTchapters: 115, - OTverses: 1578, - NTbooks: 3, - NTchapters: 68, - NTverses: 2835, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MWCWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mwc2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Are Bible", - PODISBN: "978-1-5313-0453-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "mwe", - translationId: "mwe", - languageName: "Mwera", - languageNameInEnglish: "Mwera", - dialect: null, - homeDomain: "ebible.org", - title: "Malagano ga Ambi", - description: "Mwera: Malagano ga Ambi (Bible)", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://ebible.org/mwe/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MWEPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mwe2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mwera Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-04-10", - }, - { - languageCode: "mwf", - translationId: "mwf2018", - languageName: "Murrinpatha", - languageNameInEnglish: "Murrinh-Patha", - dialect: null, - homeDomain: "ebible.org", - title: "Murrinpatha Bible", - description: "The Holy Bible in the Murrinpatha language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 Bible Society Australia", - UpdateDate: "2020-10-08", - publicationURL: "http://ebible.org/mwf2018/", - OTbooks: 3, - OTchapters: 16, - OTverses: 268, - NTbooks: 9, - NTchapters: 129, - NTverses: 3918, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MWF2018", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mwf2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Murrinpatha NT", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "mwp", - translationId: "mwp", - languageName: "Kala Lagaw", - languageNameInEnglish: "Kala Lagaw Ya", - dialect: null, - homeDomain: "ebible.org", - title: "Minar Poelayzimayl", - description: "Bible portions in the Kala Lagaw language of Torres Strait, Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators", - UpdateDate: "2021-11-12", - publicationURL: "http://ebible.org/mwp/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1465, - NTbooks: 7, - NTchapters: 115, - NTverses: 4310, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MWPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mwp2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kala Lagaw Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2016-07-26", - }, - { - languageCode: "mxb", - translationId: "mxbNT", - languageName: "Mixtec, Tezoatl\u00e1n", - languageNameInEnglish: "Mixtec, Tezoatl\u00e1n", - dialect: null, - homeDomain: "ebible.org", - title: "Tuti y\u00f3'o k\u00fa\u00fa to\u0331'on Ndios, ta x\u00ed'o \u00f1a kuend\u00e1 sa'a\u0331 Jes\u00fas", - description: "New Testament in Mixtec, Tezoatl\u00e1n (MX:mxb:Mixtec, Tezoatl\u00e1n)", - Redistributable: true, - Copyright: "Copyright \u00a9 2006 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mxbNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MXBMVR", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mxb2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tezoatl\u00e1n Mixtec NT", - PODISBN: "978-1-5313-0454-6", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mxp", - translationId: "mxpNT", - languageName: "Mixe, Tlahuitoltepec", - languageNameInEnglish: "Mixe, Tlahuitoltepec", - dialect: null, - homeDomain: "ebible.org", - title: "Ja \u00f8gyajpxy ja \u00f8myadya\u0331\u02bca\u0331ky midi xukpa\u0331a\u0331jt\u0268mp ja n\u0268tso\u02bcok\u02bcajt\u0268n", - description: "New Testament in Mixe, Tlahuitoltepec (MX:mxp:Mixe, Tlahuitoltepec)", - Redistributable: true, - Copyright: "Copyright \u00a9 1987 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mxpNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7932, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MXPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mxp1987eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tlahuitoltepec Mixe NT", - PODISBN: "978-1-5313-0455-3", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mxq", - translationId: "mxqNT", - languageName: "Mixe, Juquila", - languageNameInEnglish: "Mixe, Juquila", - dialect: null, - homeDomain: "ebible.org", - title: "Ja jemby\u0289 kajxy'\u00e1typy\u0289 m\u0289d\u0289 Jesukrist\u0289ky\u0289jxm: El Nuevo Testamento de nuestro Se\u00f1or Jesucristo en el mixe de Juquila", - description: "New Testament in Mixe, Juquila (MX:mxq:Mixe, Juquila)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mxqNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MXQTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mxq2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Juquila Mixe NT", - PODISBN: "978-1-5313-0456-0", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mxt", - translationId: "mxtNT", - languageName: "Mixtec, Jamiltepec", - languageNameInEnglish: "Mixtec, Jamiltepec", - dialect: null, - homeDomain: "ebible.org", - title: "Tuhun cha sa\u00f1ah\u00e1 ra Jesucristo chi yo", - description: "New Testament in Mixtec, Jamiltepec (MX:mxt:Mixtec, Jamiltepec)", - Redistributable: true, - Copyright: "Copyright \u00a9 1983 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/mxtNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7918, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MXTTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mxt1983eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Jamiltepec Mixtec NT", - PODISBN: "978-1-5313-0457-7", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "mdm", - translationId: "mxv", - languageName: null, - languageNameInEnglish: "Mayogo", - dialect: null, - homeDomain: "ebible.org", - title: "Gandja na Mb\u0268a", - description: "Mayogo: Gandja na Mb\u0268a (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/mxv/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7925, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MXVWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mxv2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mayogo NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "mya", - translationId: "mya", - languageName: "Mynmar language", - languageNameInEnglish: "Burmese", - dialect: null, - homeDomain: "ebible.org", - title: "Common Language Bible", - description: "Burmese: Common Language Bible Bible without Deuterocanon", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2014-03-30", - publicationURL: "http://ebible.org/mya/", - OTbooks: 39, - OTchapters: 929, - OTverses: 21962, - NTbooks: 27, - NTchapters: 260, - NTverses: 7832, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MYAOJV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mya2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Padauk", - shortTitle: "Burmese Common Language Bible", - PODISBN: null, - script: "Burmese", - sourceDate: "2014-05-02", - }, - { - languageCode: "mya", - translationId: "myajvb", - languageName: "\u1017\u1019\u102c", - languageNameInEnglish: "Burmese", - dialect: null, - homeDomain: "ebible.org", - title: "\u1019\u103c\u1014\u103a\u1019\u102c\u1000\u103b\u1019\u103a\u1038\u1005\u102c", - description: "The Holy Bible in the Burmese language of Myanmar, Judson version of 1840", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2021-07-11", - publicationURL: "http://ebible.org/myajvb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MYAJVB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "myajvb1840eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Padauk", - shortTitle: "Judson Burmese Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2022-08-26", - }, - { - languageCode: "myk", - translationId: "myk", - languageName: "Mamara S\u00e9noufo", - languageNameInEnglish: "S\u00e9noufo, Mamara", - dialect: null, - homeDomain: "ebible.org", - title: "KARI\u019d\u0190\u0190G\u0190 \u019d\u0186M\u0190\u0190 NIVON\u0186", - description: "New Testament and Shorter Old Testament in Senoufo, Mamara", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/myk/", - OTbooks: 2, - OTchapters: 8, - OTverses: 133, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MYKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "myk2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Mamara S\u00e9noufo NT and portions of the OT", - PODISBN: "978-1-5313-0458-4", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "myu", - translationId: "myu", - languageName: "Munduruk\u00fa", - languageNameInEnglish: "Munduruk\u00fa", - dialect: null, - homeDomain: "ebible.org", - title: "Deus ekaw\u1ebdntup Kaw\u1ebdn iisuat ekaw\u1ebdn", - description: "New Testament in Munduruk\u00fa (BR:myu:Munduruk\u00fa)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/myu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7644, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MYUWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "myu2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Munduruk\u00fa NT", - PODISBN: "978-1-5313-0459-1", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "myw", - translationId: "myw", - languageName: "Muyuw", - languageNameInEnglish: "Muyuw", - dialect: null, - homeDomain: "png.bible", - title: "KALEIWAG KWEIVAW", - description: "The New Testament in the Muyuw Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1976, 1993 The Bible Society of Papua New Guinea", - UpdateDate: "2016-08-30", - publicationURL: "http://png.bible/myw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 6753, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MYWPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "myw1993eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Muyuw NT", - PODISBN: "978-1-5313-0461-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "myy", - translationId: "myy", - languageName: "Macuna", - languageNameInEnglish: "Macuna", - dialect: null, - homeDomain: "ebible.org", - title: "Dios Oca Tuti", - description: "New Testament in Macuna", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/myy/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7844, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MYYWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "myy2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "New Testament in Macuna", - PODISBN: "978-1-5313-0462-1", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "mza", - translationId: "mza", - languageName: "Mixtec, Santa Mar\u00eda Zacatepec", - languageNameInEnglish: "Mixtec, Santa Mar\u00eda Zacatepec", - dialect: null, - homeDomain: "ebible.org", - title: "Zacatepec Mixtec NT", - description: "Mixteco, Santa Mar\u00eda Zacatepec: Zacatepec Mixtec NT New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/mza/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7948, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MZAWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mza2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mixteco, Santa Mar\u00eda Zacatepec: Zacatepec Mixtec NT New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "mzz", - translationId: "mzz", - languageName: "Maiadomu", - languageNameInEnglish: "Maiadomu", - dialect: null, - homeDomain: "png.bible", - title: "Maiadomu Malika", - description: "The Gospel of Mark in the Maiadomu Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-08-30", - publicationURL: "http://png.bible/mzz/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 16, - NTverses: 652, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "MZZWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "mzz2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Maiadomu Mark", - PODISBN: "978-1-5313-0463-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "nab", - translationId: "nabNT", - languageName: "Nambiku\u00e1ra, Southern", - languageNameInEnglish: "Nambiku\u00e1ra, Southern", - dialect: null, - homeDomain: "ebible.org", - title: "Txa\u00b2w\u00e3\u00b9s\u0169\u0331\u00b3na\u00b2 W\u00e3n\u00b3txa\u00b2", - description: - "New Testament in Nambiku\u00e1ra, Southern (BR:nab:Nambiku\u00e1ra, Southern)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/nabNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7618, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NABWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nab2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Southern Nambiku\u00e1ra NT", - PODISBN: "978-1-5313-0464-5", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "naf", - translationId: "naf", - languageName: "Nabak", - languageNameInEnglish: "Nabak", - dialect: null, - homeDomain: "png.bible", - title: "Kawawa\u014bgalen T\u00e2t\u00e2 Alak\u014ba\u014b", - description: "The New Testament in the Nabak Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1988 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-08-30", - publicationURL: "http://png.bible/naf/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7699, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NAFTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "naf1988eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Nabak NT", - PODISBN: "978-1-5313-0466-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "nak", - translationId: "nak", - languageName: "Nakanai", - languageNameInEnglish: "Nakanai", - dialect: null, - homeDomain: "png.bible", - title: "Nakanai New Testament", - description: "The New Testament in the Nakanai Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1983 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-19", - publicationURL: "http://png.bible/nak/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7900, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NAKTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nak1983eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Nakanai NT", - PODISBN: "978-1-5313-0467-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "nas", - translationId: "nas", - languageName: "Naasioi", - languageNameInEnglish: "Naasioi", - dialect: "Kongara", - homeDomain: "png.bible", - title: "Kara Naroong-anta Nerakung Kongarana'", - description: "The New Testament in the Naasioi Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1994 The Bible Society of Papua New Guinea", - UpdateDate: "2016-08-30", - publicationURL: "http://png.bible/nas/", - OTbooks: 1, - OTchapters: 6, - OTverses: 138, - NTbooks: 27, - NTchapters: 260, - NTverses: 7886, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NASPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nas1994eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Naasioi NT", - PODISBN: "978-1-5313-0468-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "naw", - translationId: "naw", - languageName: null, - languageNameInEnglish: "Nawuri", - dialect: null, - homeDomain: "ebible.org", - title: "\u0196bwaar\u025b Kat\u0254w\u025b Kyula P\u028bpw\u025b", - description: - "Nawuri: \u0196bwaar\u025b Kat\u0254w\u025b Kyula P\u028bpw\u025b New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-19", - publicationURL: "http://ebible.org/naw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NAWWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "naw2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Nawuri NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-20", - }, - { - languageCode: "nay", - translationId: "nay", - languageName: "Ngarrindjeri", - languageNameInEnglish: "Narrinyeri", - dialect: null, - homeDomain: "ebible.org", - title: "Tungarar Jehobald YARILDEWALLIN", - description: "Extracts from the Holy Bible in the Narriyeri language of Australia", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2019-05-24", - publicationURL: "http://ebible.org/nay/", - OTbooks: 2, - OTchapters: 6, - OTverses: 121, - NTbooks: 2, - NTchapters: 8, - NTverses: 269, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NAYAFA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nay1864eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ngarrindjeri Scriptures", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "nbq", - translationId: "nbq", - languageName: "Nggem", - languageNameInEnglish: "Nggem", - dialect: null, - homeDomain: "ebible.org", - title: "Ala wene Nggem enane vaga dirup warek", - description: - "Portions of the New Testament in the Nggem language of the Papua Province of Indonesia", - Redistributable: true, - Copyright: - "Copyright \u00a9 2003, 2004, 2007, 2008, 2013 Tim Penterjemah Bahasa Nggem (The Nggem Translation Team)", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/nbq/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 13, - NTchapters: 123, - NTverses: 3716, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NBQWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nbq2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Nggem NT", - PODISBN: "978-1-5313-0469-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "nca", - translationId: "nca", - languageName: "Iyo", - languageNameInEnglish: "Iyo", - dialect: null, - homeDomain: "png.bible", - title: "Iyo New Testament", - description: "The New Testament in the Iyo Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-08-30", - publicationURL: "http://png.bible/nca/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NCAWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nca2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Iyo NT", - PODISBN: "978-1-5313-0470-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "nch", - translationId: "nchBl", - languageName: "Nahuatl, Huasteca Central", - languageNameInEnglish: "Nahuatl, Huasteca Central", - dialect: null, - homeDomain: "ebible.org", - title: "Icamanal toteco; Santa Biblia", - description: - "Bible without Deuterocanon in Nahuatl, Huasteca Central (MX:nch:Nahuatl, Huasteca Central )", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/nchBl/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22861, - NTbooks: 27, - NTchapters: 260, - NTverses: 7952, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NCHTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nch2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Huasteca Central Nahuatl Bible", - PODISBN: "978-1-5313-0471-3", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "ncj", - translationId: "ncjNT", - languageName: "Nahuatl, Northern Puebla", - languageNameInEnglish: "Nahuatl, Northern Puebla", - dialect: null, - homeDomain: "ebible.org", - title: "In yancuic mononotzalistli ica Totecohtzin Jesucristo", - description: "New Testament in Nahuatl, Northern Puebla (MX:ncj:Nahuatl, Northern Puebla)", - Redistributable: true, - Copyright: "Copyright \u00a9 1979 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/ncjNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7933, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NCJTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ncj1979eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Northern Puebla Nahuatl NT", - PODISBN: "978-1-5313-0472-0", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "ncl", - translationId: "nclNT", - languageName: "Nahuatl, Michoac\u00e1n", - languageNameInEnglish: "Nahuatl, Michoac\u00e1n", - dialect: null, - homeDomain: "ebible.org", - title: "Ilajtulisli Yancuic toTata Jesucristo", - description: "New Testament in Nahuatl, Michoac\u00e1n (MX:ncl:Nahuatl, Michoac\u00e1n)", - Redistributable: true, - Copyright: "Copyright \u00a9 1998 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/nclNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7935, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NCLTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ncl1998eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Michoac\u00e1n Nahuatl NT", - PODISBN: "978-1-5313-0473-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "ncq", - translationId: "ncq", - languageName: null, - languageNameInEnglish: "Northern Katang", - dialect: null, - homeDomain: "ebible.org", - title: "\u0e9b\u0eb1\u0ea3\u0e99\u0eb2\u0e8d \u0ec0\u0ea2\u0eb7\u0eb2\u0e87 \u0ec0\u0e88\u0ebb\u0eb2\u0ea3\u0eb2\u0e8a\u0eb5 \u0e9b\u0eb1\u0ea3\u0e84\u0eb1\u0e99 \u0e95\u0eb2\u0ec4\u0ea1 \u0e9b\u0eb1\u0ea3\u0e99\u0eb2\u0e8d \u0e81\u0eb2\u0e95\u0eb2\u0e87 (\u0e9e\u0eb2\u0eaa\u0eb2\u0e81\u0eb2\u0e95\u0eb2\u0e87)", - description: - "Northern Katang: \u0e9b\u0eb1\u0ea3\u0e99\u0eb2\u0e8d \u0ec0\u0ea2\u0eb7\u0eb2\u0e87 \u0ec0\u0e88\u0ebb\u0eb2\u0ea3\u0eb2\u0e8a\u0eb5", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-23", - publicationURL: "http://ebible.org/ncq/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7918, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NCQWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ncq2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Northern Katang Bible", - PODISBN: null, - script: "Lao", - sourceDate: "2020-11-24", - }, - { - languageCode: "ncu", - translationId: "ncuNT", - languageName: "Chumburung", - languageNameInEnglish: "Chumburung", - dialect: null, - homeDomain: "ebible.org", - title: "Abware\u0331se\u0331\u014b Wo\u0331re\u0331-\u0254", - description: "New Testament in Chumburung (GH:ncu:Chumburung)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/ncuNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7684, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NCUWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ncu2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Chumburung NT", - PODISBN: "978-1-5313-0474-4", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "ndg", - translationId: "ndg", - languageName: "Kindengereko", - languageNameInEnglish: "Ndengereko", - dialect: null, - homeDomain: "ebible.org", - title: "Ndengereko Bible", - description: "The Holy Bible in the Ndengereko language of Tanzania", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door43 World Mission Community", - UpdateDate: "2020-10-06", - publicationURL: "http://ebible.org/ndg/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7944, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NDGULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ndg2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ndengereko NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-10-06", - }, - { - languageCode: "ndh", - translationId: "ndh", - languageName: null, - languageNameInEnglish: "Ndali", - dialect: null, - homeDomain: "ebible.org", - title: "ULwitikano uLupya", - description: "Ndali: ULwitikano uLupya (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-19", - publicationURL: "http://ebible.org/ndh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7946, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NDHWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ndh2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ndali Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-20", - }, - { - languageCode: "ndj", - translationId: "ndj", - languageName: "Ndamba", - languageNameInEnglish: "Ndamba", - dialect: null, - homeDomain: "eBible.org", - title: "Lilaghanu lya shonu", - description: "The New Testament in the Ndamba language of Tanzania", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 The Word for the World and Pioneer Bible Translators", - UpdateDate: "2018-02-06", - publicationURL: "http://eBible.org/ndj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NDJTWF", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ndj2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ndamba New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2018-02-08", - }, - { - languageCode: "ndv", - translationId: "ndv", - languageName: null, - languageNameInEnglish: "Ndut", - dialect: null, - homeDomain: "ebible.org", - title: "S\u00e9r\u00e9el Nd\u00fat: Unni Koope", - description: "Ndut: S\u00e9r\u00e9el Nd\u00fat: Unni Koope (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-19", - publicationURL: "http://ebible.org/ndv/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 15, - NTchapters: 105, - NTverses: 3182, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NDVWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ndv2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ndut Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-20", - }, - { - languageCode: "ndz", - translationId: "ndz", - languageName: null, - languageNameInEnglish: "Ndogo", - dialect: null, - homeDomain: "ebible.org", - title: "Ng\u00fa b\u00e0 toko nambe\u00e8 m\u00ec Mb\u00ed\u1e5b\u00ec ta nd\u00e2 \ua78cdu\u00f9", - description: - "Ndogo: Ng\u00fa b\u00e0 toko nambe\u00e8 m\u00ec Mb\u00ed\u1e5b\u00ec ta nd\u00e2 \ua78cdu\u00f9 New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-19", - publicationURL: "http://ebible.org/ndz/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7938, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NDZWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ndz2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ndogo NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-20", - }, - { - languageCode: "new", - translationId: "new", - languageName: "Newar", - languageNameInEnglish: "Newar", - dialect: null, - homeDomain: "ebible.org", - title: "Newar", - description: "Newar: Newar (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019-2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-19", - publicationURL: "http://ebible.org/new/", - OTbooks: 4, - OTchapters: 271, - OTverses: 6099, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NEWWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "new2020eb", - rodCode: 2523.0, - textDirection: "ltr", - downloadable: true, - font: "Akshar Unicode", - shortTitle: "Newar Bible", - PODISBN: null, - script: "Devanagari", - sourceDate: "2020-11-20", - }, - { - languageCode: "nfa", - translationId: "nfa", - languageName: "Dhao", - languageNameInEnglish: "Dhao", - dialect: null, - homeDomain: "ebible.org", - title: "Dhao Alkitab", - description: "Genesis and the New Testament in the Dhao language of Indonesia", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Unit Bahasa dan Budaya", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/nfa/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1422, - NTbooks: 27, - NTchapters: 260, - NTverses: 7662, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NFAUBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nfa2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Dhao Bible", - PODISBN: "978-1-5313-0781-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ngp", - translationId: "ngp", - languageName: "Nguu", - languageNameInEnglish: "Nguu", - dialect: null, - homeDomain: "ebible.org", - title: "Ndagano mp'ya kwa wanth'u wose", - description: "The New Testament in the Nguu language of Tanzania", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 The Word for the World and Pioneer Bible Translators", - UpdateDate: "2018-02-06", - publicationURL: "http://ebible.org/ngp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NGPTWF", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ngp2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Nguu New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2018-02-07", - }, - { - languageCode: "ngu", - translationId: "nguNT", - languageName: "Nahuatl, Guerrero", - languageNameInEnglish: "Nahuatl, Guerrero", - dialect: null, - homeDomain: "ebible.org", - title: "In yencuic iyectlajtoltzin Dios itech ica toTeco Jesucristo", - description: "New Testament in Nahuatl, Guerrero (MX:ngu:Nahuatl, Guerrero)", - Redistributable: true, - Copyright: "Copyright \u00a9 1987 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/nguNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7933, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NGUTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ngu1987eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Guerrero Nahuatl NT", - PODISBN: "978-1-5313-0475-1", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "nhe", - translationId: "nheBl", - languageName: "Nahuatl, Huasteca Oriental", - languageNameInEnglish: "Nahuatl, Huasteca Oriental", - dialect: "Huasteca Oriental", - homeDomain: "ebible.org", - title: "Itlajtol toteco: Santa Biblia", - description: - "Bible without Deuterocanon in Nahuatl, Huasteca Oriental (MX:nheBI:Nahuatl, Huasteca Oriental)", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/nheBl/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22861, - NTbooks: 27, - NTchapters: 260, - NTverses: 7952, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NHETBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nhe2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Huasteca Oriental Nahuatl Bible 2005", - PODISBN: "978-1-5313-0476-8", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "nhe", - translationId: "nheNT", - languageName: "Nahuatl, Huasteca Oriental", - languageNameInEnglish: "Nahuatl, Huasteca Oriental", - dialect: "Huasteca Oriental", - homeDomain: "ebible.org", - title: "Ya ni nopa yancuic tlajtoli tlen toteco toca mocajtoc; El Nuevo Testamento de nuestro Se\u00f1or Jesucristo en el n\u00e1huatl de la Huasteca Oriental", - description: - "New Testament in Nahuatl, Huasteca Oriental (MX:nhe:Nahuatl, Huasteca Oriental)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/nheNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7952, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NHEWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nhe2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Huasteca Oriental Nahuatl NT 2009", - PODISBN: "978-1-5313-0477-5", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "nhg", - translationId: "nhgNT", - languageName: "Nahuatl, Tetelcingo", - languageNameInEnglish: "Nahuatl, Tetelcingo", - dialect: null, - homeDomain: "ebible.org", - title: "El Nuevo Testamento en nahuatl de Tetelcingo", - description: "New Testament in Nahuatl, Tetelcingo (MX:nhg:Nahuatl, Tetelcingo)", - Redistributable: true, - Copyright: "Copyright \u00a9 1980 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/nhgNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7927, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NHGWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nhg1980eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tetelcingo Nahuatl NT", - PODISBN: "978-1-5313-0478-2", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "nhi", - translationId: "nhiNT", - languageName: "Nahuatl, Zacatl\u00e1n-Ahuacatl\u00e1n-Tepetzintla", - languageNameInEnglish: "Nahuatl, Zacatl\u00e1n-Ahuacatl\u00e1n-Tepetzintla", - dialect: null, - homeDomain: "ebible.org", - title: "In Yancuic Tlahtolsintilil", - description: - "New Testament in Nahuatl, Zacatl\u00e1n-Ahuacatl\u00e1n-Tepetzintla (MX:nhi:Nahuatl, Zacatl\u00e1n-Ahuacatl\u00e1n-Tepetzintla)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/nhiNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NHIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nhi2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Zacatl\u00e1n-Ahuacatl\u00e1n-Tepetzintla Nahuatl NT", - PODISBN: "978-1-5313-0479-9", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "nho", - translationId: "nho", - languageName: "Takuu", - languageNameInEnglish: "Takuu", - dialect: null, - homeDomain: "png.bible", - title: "Na Taratara TeAtua i naa taratara Takuu", - description: - "The New Testament in the Takuu language of North Solomons Province, Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Translation Committee of Takuu, Mortlock Community", - UpdateDate: "2022-04-15", - publicationURL: "http://png.bible/nho/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7929, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NHOTCT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nho2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Takuu NT", - PODISBN: "978-1-5313-0772-1", - script: "Latin", - sourceDate: "2022-04-18", - }, - { - languageCode: "nhr", - translationId: "nhr", - languageName: "Naro", - languageNameInEnglish: "Naro", - dialect: null, - homeDomain: "ebible.org", - title: "Ka\u0331bas Qae-xg'ae sa", - description: "The New Testament in the Naro language of Botswana", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 The Bible Society of Botswana", - UpdateDate: "2016-08-30", - publicationURL: "http://ebible.org/nhr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7934, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NHRBSB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nhr2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Naro NT", - PODISBN: "978-1-5313-0480-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "nhu", - translationId: "nhuNT", - languageName: "Noone", - languageNameInEnglish: "Noone", - dialect: null, - homeDomain: "ebible.org", - title: "\u014awa' Nyo' Mo\u014bkan mo Monf\u025bm", - description: "New Testament in Noone (CM:nhu:Noone)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/nhuNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7951, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NHUWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nhu2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Noone NT", - PODISBN: "978-1-5313-0481-2", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "nhw", - translationId: "nhwBl", - languageName: "Nahuatl, Huasteca Occidental", - languageNameInEnglish: "Nahuatl, Huasteca Occidental", - dialect: null, - homeDomain: "ebible.org", - title: "Icamanal toteco; Santa B\u00edblia", - description: - "Bible without Deuterocanon in Nahuatl, Huasteca Occidental (MX:nhw:Nahuatl, Huasteca Occidental)", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/nhwBl/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22861, - NTbooks: 27, - NTchapters: 260, - NTverses: 7952, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NHWTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nhw2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Huasteca Occidental Nahuatl Bible", - PODISBN: "978-1-5313-0482-9", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "nhx", - translationId: "nhx", - languageName: "Nahuatl, Isthmus-Mecayapan", - languageNameInEnglish: "Nahuatl, Isthmus-Mecayapan", - dialect: null, - homeDomain: "ebible.org", - title: "It\u00e1jto\u0331l toTe\u0331ko ipan mela\ua78ct\u00e1jto\u0331l", - description: - "Nahuatl, Isthmus-Mecayapan: It\u00e1jto\u0331l toTe\u0331ko ipan mela\ua78ct\u00e1jto\u0331l New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/nhx/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NHXWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nhx2016eb", - rodCode: 6407.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Nahuatl, Isthmus-Mecayapan: It\u00e1jto\u0331l toTe\u0331ko ipan mela\ua78ct\u00e1jto\u0331l New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "nhy", - translationId: "nhyNT", - languageName: "Nahuatl, Northern Oaxaca", - languageNameInEnglish: "Nahuatl, Northern Oaxaca", - dialect: null, - homeDomain: "ebible.org", - title: "Itlajtol totajtzin Dios = El Nuevo Testamento", - description: "New Testament in Nahuatl, Northern Oaxaca (MX:nhy:Nahuatl, Northern Oaxaca)", - Redistributable: true, - Copyright: "Copyright \u00a9 2006 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/nhyNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7951, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NHYTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nhy2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Northern Oaxaca Nahuatl NT", - PODISBN: "978-1-5313-0483-6", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "nif", - translationId: "nif", - languageName: "Nek", - languageNameInEnglish: "Nek", - dialect: null, - homeDomain: "png.bible", - title: "Nek Bible", - description: "Matthew, Mark, Luk, and John in the Nek Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-08-30", - publicationURL: "http://png.bible/nif/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 4, - NTchapters: 89, - NTverses: 3714, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NIFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nif2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Nek NT", - PODISBN: "978-1-5313-0484-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "nii", - translationId: "nii", - languageName: "Nii", - languageNameInEnglish: "Nii", - dialect: "Central Wahgi", - homeDomain: "png.bible", - title: "Gos Nge Ek Ka Ei Sinim Kin Ngo\u0142um", - description: "The New Testament in the Nii Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1980 Wycliffe Bible Translators, Inc.", - UpdateDate: "2018-04-23", - publicationURL: "http://png.bible/nii/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7795, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NIITBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nii1980eb", - rodCode: 3209.0, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Nii NT", - PODISBN: "978-1-5313-0485-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "nin", - translationId: "ninNT", - languageName: "Ninzo", - languageNameInEnglish: "Ninzo", - dialect: null, - homeDomain: "ebible.org", - title: "Ungbamvu Ku Abachi Azhi Ahe\u0332he\u0332 Ka", - description: "New Testament in Ninzo (NI:nin:Ninzo)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-08-09", - publicationURL: "http://ebible.org/ninNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NINWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nin2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ninzo NT", - PODISBN: "978-1-5313-0486-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "niy", - translationId: "niy", - languageName: "Ndr\u01d4na", - languageNameInEnglish: "Ngiti", - dialect: null, - homeDomain: "ebible.org", - title: "Ungb\u00f2ta-\u0186w\u0289\u0301t\u00e1 T\u0254\u0301 Bh\u01d4k\u00f9", - description: - "Ndr\u01d4na: Ungb\u00f2ta-\u0186w\u0289\u0301t\u00e1 T\u0254\u0301 Bh\u01d4k\u00f9 New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-19", - publicationURL: "http://ebible.org/niy/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NIYWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "niy2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ndr\u01d4na NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-20", - }, - { - languageCode: "nko", - translationId: "nkoNT", - languageName: "Nkonya", - languageNameInEnglish: "Nkonya", - dialect: null, - homeDomain: "ebible.org", - title: "Bulu ntam p\u0254pw\u025b; Nkonya", - description: "New Testament in Nkonya (GH:nko:Nkonya)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/nkoNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7878, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NKOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nko2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Nkonya NT", - PODISBN: "978-1-5313-0487-4", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "nld", - translationId: "nld", - languageName: "Nederlands", - languageNameInEnglish: "Dutch", - dialect: null, - homeDomain: "ebible.org", - title: "De Heilige Schrift 1917", - description: "The Holy Bible in Dutch, 1917", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2023-01-23", - publicationURL: "http://ebible.org/nld/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NLD", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nld1917eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Dutch Bible 1917", - PODISBN: null, - script: "Latin", - sourceDate: "2023-01-23", - }, - { - languageCode: "nld", - translationId: "nld1939", - languageName: "Nederlandse taal", - languageNameInEnglish: "Dutch", - dialect: null, - homeDomain: "ebible.org", - title: "De Heilige Schrift, Petrus Canisiusvertaling, 1939", - description: - "The Holy Bible with Deuterocanon in the Dutch language, Petrus Canisiusvertaling, 1939", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2019-05-16", - publicationURL: "http://ebible.org/nld1939/", - OTbooks: 38, - OTchapters: 917, - OTverses: 22787, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 8, - DCchapters: 151, - DCverses: 4592, - FCBHID: "NLDCAN", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nld1939eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Dutch Bible 1939", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "nlg", - translationId: "nlg", - languageName: "Gela", - languageNameInEnglish: "Gela", - dialect: null, - homeDomain: "ebible.org", - title: "Na Rongorongo Uto nina Jesus Christ", - description: "Portions of the Holy Bible in the Gela language of the Solomon Islands", - Redistributable: true, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-09-20", - publicationURL: "http://ebible.org/nlg/", - OTbooks: 9, - OTchapters: 308, - OTverses: 6685, - NTbooks: 27, - NTchapters: 260, - NTverses: 7932, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NLGWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nlg2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Gela Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "nmw", - translationId: "nmws", - languageName: "Saisai", - languageNameInEnglish: "Rifao", - dialect: "Saisai", - homeDomain: "png.bible", - title: "Metiu ge Efeso", - description: - "Matthew and Ephesians in the Saisai dialect of the Rifao language, formerly called the Nimowa language, of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-12-14", - publicationURL: "http://png.bible/nmws/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 2, - NTchapters: 34, - NTverses: 1221, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NMWSWB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nmws2016eb", - rodCode: 14994.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Saisai Matthew and Ephesians", - PODISBN: "978-1-5313-0841-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "nna", - translationId: "nna", - languageName: "Nyangumarta", - languageNameInEnglish: "Nyangumarta", - dialect: null, - homeDomain: "ebible.org", - title: "Nyangumarta Bible", - description: "Portions of the Holy Bible in the Nyangumarta language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1980-2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-11-12", - publicationURL: "http://ebible.org/nna/", - OTbooks: 8, - OTchapters: 70, - OTverses: 1447, - NTbooks: 19, - NTchapters: 64, - NTverses: 709, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NNAWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nna2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Nyangumarta Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-04-07", - }, - { - languageCode: "nnq", - translationId: "nnq", - languageName: "Ngindo", - languageNameInEnglish: "Ngindo", - dialect: null, - homeDomain: "ebible.org", - title: "Ngindo New Testament 2015", - description: "The New Testament in the Ngindo language of Tanzania, 2015", - Redistributable: true, - Copyright: "Copyright \u00a9 2015 The Word for the World", - UpdateDate: "2018-02-06", - publicationURL: "http://ebible.org/nnq/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NNQTWF", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nnq2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ngindo New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2018-02-07", - }, - { - languageCode: "nnw", - translationId: "nnw", - languageName: "Nuni, Southern", - languageNameInEnglish: "Nuni, Southern", - dialect: null, - homeDomain: "ebible.org", - title: "Y\u0269\u0269 s\u028bywa\u0301\u014b\u028b\u0301 sag\u0269", - description: - "Nuni, Southern: Y\u0269\u0269 s\u028bywa\u0301\u014b\u028b\u0301 sag\u0269 New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1999 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/nnw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7893, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NNWWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nnw1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Southern Nuni NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "noa", - translationId: "noaE", - languageName: "Woun Meu", - languageNameInEnglish: "Woun Meu", - dialect: "alternate spelling", - homeDomain: "ebible.org", - title: "\u1ebcwandam Iek", - description: "New Testament in Woun Meu", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/noaE/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7884, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NOAWBE", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "noaE2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Woun Meu NT", - PODISBN: "978-1-5313-0488-1", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "noa", - translationId: "noaH", - languageName: "Woun Meu", - languageNameInEnglish: "Woun Meu", - dialect: "standard spelling", - homeDomain: "ebible.org", - title: "H\u1ebdwandam Hiek", - description: "New Testament in Woun Meu", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/noaH/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7884, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NOAWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "noaH2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Woun Meu NT", - PODISBN: "978-1-5313-0489-8", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "nod", - translationId: "nod", - languageName: null, - languageNameInEnglish: "Thai, Northern", - dialect: null, - homeDomain: "ebible.org", - title: "\u0e1e\u0e23\u0e30\u0e04\u0e23\u0e34\u0e2a\u0e15\u0e18\u0e23\u0e23\u0e21\u0e04\u0e31\u0e21\u0e20\u0e35\u0e23 \u0e20\u0e32\u0e04\u0e1e\u0e31\u0e19\u0e18\u0e2a\u0e31\u0e0d\u0e0d\u0e32\u0e43\u0e2b\u0e21", - description: - "Thai, Northern: \u0e1e\u0e23\u0e30\u0e04\u0e23\u0e34\u0e2a\u0e15\u0e18\u0e23\u0e23\u0e21\u0e04\u0e31\u0e21\u0e20\u0e35\u0e23 \u0e20\u0e32\u0e04\u0e1e\u0e31\u0e19\u0e18\u0e2a\u0e31\u0e0d\u0e0d\u0e32\u0e43\u0e2b\u0e21 New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/nod/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7937, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NODWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nod2017eb", - rodCode: 101.0, - textDirection: "ltr", - downloadable: true, - font: "Noto Serif Thai", - shortTitle: - "Thai, Northern: \u0e1e\u0e23\u0e30\u0e04\u0e23\u0e34\u0e2a\u0e15\u0e18\u0e23\u0e23\u0e21\u0e04\u0e31\u0e21\u0e20\u0e35\u0e23 \u0e20\u0e32\u0e04\u0e1e\u0e31\u0e19\u0e18\u0e2a\u0e31\u0e0d\u0e0d\u0e32\u0e43\u0e2b\u0e21 New Testament", - PODISBN: null, - script: "Thai", - sourceDate: "2020-12-01", - }, - { - languageCode: "nop", - translationId: "nop", - languageName: "Numa\u014bga\u014b", - languageNameInEnglish: "Numanggang", - dialect: null, - homeDomain: "png.bible", - title: "Bepa\u014b'Wala\u014b Folofolok Kobuli", - description: - "Genesis, Exodus, Psalms, and the New Testament in the Numanggang Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-08-30", - publicationURL: "http://png.bible/nop/", - OTbooks: 2, - OTchapters: 200, - OTverses: 3966, - NTbooks: 27, - NTchapters: 260, - NTverses: 7884, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NOPNTT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nop2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Numanggang Bible", - PODISBN: "978-1-5313-0490-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "not", - translationId: "notNT", - languageName: "Nomatsiguenga", - languageNameInEnglish: "Nomatsiguenga", - dialect: null, - homeDomain: "ebible.org", - title: "Irinibare Tosorintsi Ocomant\u00ebgot\u00ebri Antigomi Jesoquirisito", - description: "New Testament in Nomatsiguenga (PE:not:Nomatsiguenga)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/notNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7846, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NOTWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "not2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Nomatsiguenga NT", - PODISBN: "978-1-5313-0491-1", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "nou", - translationId: "nou", - languageName: "Ewage-Notu", - languageNameInEnglish: "Ewage-Notu", - dialect: null, - homeDomain: "png.bible", - title: "BINGA EWAMEI IESU KERISO DA JAWO DA", - description: "The New Testament in the Ewage-Notu Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1987 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-19", - publicationURL: "http://png.bible/nou/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7761, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NOUTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nou1987eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Ewage-Notu NT", - PODISBN: "978-1-5313-0492-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "npi", - translationId: "npi2010", - languageName: "\u0928\u0947\u092a\u093e\u0932\u0940", - languageNameInEnglish: "Nepali", - dialect: null, - homeDomain: "eBible.org", - title: "The Holy Bible, Easy Reading Version, in Nepali", - description: "The Holy Bible, Easy Reading Version, in Nepali", - Redistributable: false, - Copyright: "Copyright \u00a9 1999-2010 World Bible Translation Center", - UpdateDate: "2013-11-06", - publicationURL: "http://eBible.org/npi2010/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22951, - NTbooks: 27, - NTchapters: 260, - NTverses: 7905, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NEPWTC", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "npi2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Akshar Unicode", - shortTitle: "Nepali Easy Reading Version", - PODISBN: null, - script: "Nepali", - sourceDate: "2020-10-09", - }, - { - languageCode: "npi", - translationId: "npiulb", - languageName: "\u0928\u0947\u092a\u093e\u0932\u0940", - languageNameInEnglish: "Nepali", - dialect: null, - homeDomain: "ebible.org", - title: "\u092a\u0935\u093f\u0924\u094d\u0930 \u092c\u093e\u0907\u092c\u0932", - description: "The Holy Bible in the Nepali language, Unlocked Literal Bible translation.", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Door43 World Missions Community", - UpdateDate: "2020-06-10", - publicationURL: "http://ebible.org/npiulb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NPIULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "npiulb2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Akshar Unicode", - shortTitle: "Nepali Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2019-07-26", - }, - { - languageCode: "npl", - translationId: "nplNT", - languageName: "Nahuatl, Southeastern Puebla", - languageNameInEnglish: "Nahuatl, Southeastern Puebla", - dialect: null, - homeDomain: "ebible.org", - title: "Itlajtol Totajtsi Dios", - description: - "New Testament in Nahuatl, Southeastern Puebla (MX:npl:Nahuatl, Southeastern Puebla)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/nplNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NPLWYI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "npl2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Southeastern Puebla Nahuatl NT", - PODISBN: "978-1-5313-0493-5", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "nsn", - translationId: "nsn", - languageName: "Nehan", - languageNameInEnglish: "Nehan", - dialect: null, - homeDomain: "png.bible", - title: "Nehan New Testament", - description: - "The New Testament in the Nehan Language of the Autonomous Region of Bougainville, Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-19", - publicationURL: "http://png.bible/nsn/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7894, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NSNWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nsn2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Nehan NT", - PODISBN: "978-1-5313-0494-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "nss", - translationId: "nss", - languageName: "Nali", - languageNameInEnglish: "Nali", - dialect: null, - homeDomain: "png.bible", - title: "Nongan Hiyan", - description: "Portions of the Holy Bible in the Nali Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2008, 2012, 2020 PNG Bible Translation Association", - UpdateDate: "2022-07-22", - publicationURL: "http://png.bible/nss/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1529, - NTbooks: 6, - NTchapters: 100, - NTverses: 3967, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NSSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nss2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Nali Bible", - PODISBN: "978-1-5313-0495-9", - script: "Latin", - sourceDate: "2022-06-03", - }, - { - languageCode: "nsu", - translationId: "nsu", - languageName: "Nahuatl", - languageNameInEnglish: "Nahuatl", - dialect: null, - homeDomain: "ebible.org", - title: "Itlajtol Totajtzin Dios", - description: "Nahuatl, Sierra Negra: Itlajtol Totajtzin Dios New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/nsu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7943, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NSUWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nsu2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sierra Negra Nahuatl NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "ntj", - translationId: "ntj", - languageName: "Ngaanyatjarra", - languageNameInEnglish: "Ngaanyatjarra", - dialect: null, - homeDomain: "ebible.org", - title: "Mama Kuurrku Wangka", - description: - "The New Testament and Old Testament portions in the Ngaanyatjarra language of Central Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2007 Bible Society of Australia", - UpdateDate: "2021-11-12", - publicationURL: "http://ebible.org/ntj/", - OTbooks: 23, - OTchapters: 242, - OTverses: 3802, - NTbooks: 27, - NTchapters: 260, - NTverses: 7776, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NTJBSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ntj2007eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ngaanyatjarra Shorter Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2019-05-15", - }, - { - languageCode: "ntp", - translationId: "ntpNT", - languageName: "Tepehuan, Northern", - languageNameInEnglish: "Tepehuan, Northern", - dialect: null, - homeDomain: "ebible.org", - title: "Diuusi \u00f1iooquid\u028c utuducami oodamic\u028cd\u028c", - description: "New Testament in Tepehuan, Northern (MX:ntp:Tepehuan, Northern)", - Redistributable: true, - Copyright: "Copyright \u00a9 1981 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/ntpNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7763, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NTPTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ntp1981eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Northern Tepehuan NT", - PODISBN: "978-1-5313-0496-6", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "ntr", - translationId: "ntr", - languageName: "Delo", - languageNameInEnglish: "Delo", - dialect: null, - homeDomain: "ebible.org", - title: "WURUBUR\u0190 NOMBIA KPAAKPAA N\u0186\u0186KEBAKESEE W\u0186LE", - description: - "Delo: WURUBUR\u0190 NOMBIA KPAAKPAA N\u0186\u0186KEBAKESEE W\u0186LE New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/ntr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7931, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NTRWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ntr2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Delo: WURUBUR\u0190 NOMBIA KPAAKPAA N\u0186\u0186KEBAKESEE W\u0186LE New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "ntu", - translationId: "ntu", - languageName: "Natqgu", - languageNameInEnglish: "Nat\u00fcgu", - dialect: null, - homeDomain: "ebible.org", - title: "Nzryrngrkxtr Kc Ate Rut x Sam", - description: - "The New Testament plus Ruth and Psalms is the Nat\u00fcgu language of the Solomon Islands", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-11-17", - publicationURL: "http://ebible.org/ntu/", - OTbooks: 2, - OTchapters: 154, - OTverses: 2377, - NTbooks: 27, - NTchapters: 260, - NTverses: 7651, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NATWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ntu2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Natqgu NT+Ruth and Psalms", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "nuj", - translationId: "nuj", - languageName: null, - languageNameInEnglish: "Nyole", - dialect: null, - homeDomain: "ebible.org", - title: "Endagaano Epyaha mu Lunyole", - description: "Nyole: Endagaano Epyaha mu Lunyole (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/nuj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NUJWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nuj2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Nyole: Endagaano Epyaha mu Lunyole (Bible)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "nuq", - translationId: "nuq", - languageName: "Nukumanu", - languageNameInEnglish: "Nukumanu", - dialect: null, - homeDomain: "png.bible", - title: "Nukumanu", - description: "Nukumanu: Nukumanu (Old Testament)", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-08-19", - publicationURL: "http://png.bible/nuq/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7910, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NUQWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nuq2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Nukumanu OT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "nuy", - translationId: "nuy", - languageName: "Wubuy", - languageNameInEnglish: "Nunggubuyu", - dialect: null, - homeDomain: "ebible.org", - title: "Ana-Ma\u1e49ngulg Ana-Wubiba -- Anu-gadhuwa Ana-lhaawu", - description: - "The New Testament and Old Testament portions in the Wubuy language of Northern Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Bible Society of Australia", - UpdateDate: "2021-11-12", - publicationURL: "http://ebible.org/nuy/", - OTbooks: 3, - OTchapters: 19, - OTverses: 419, - NTbooks: 27, - NTchapters: 260, - NTverses: 7847, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NUYBSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nuy2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Wubuy Shorter Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2016-07-26", - }, - { - languageCode: "nvm", - translationId: "nvm", - languageName: "Namiai (Barai)", - languageNameInEnglish: "Namiae", - dialect: null, - homeDomain: "png.bible", - title: "Godon Vuak Ma Ijin", - description: "The New Testament in the Namiai Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-08-30", - publicationURL: "http://png.bible/nvm/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7257, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NVMWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nvm2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Namiai NT", - PODISBN: "978-1-5313-0497-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "nwb", - translationId: "nwb", - languageName: "Nyaboa", - languageNameInEnglish: "Nyabwa", - dialect: null, - homeDomain: "ebible.org", - title: "-YBH\u0190YBH\u0190TITELRE", - description: "Nyabwa: -YBH\u0190YBH\u0190TITELRE New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1991 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/nwb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7745, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NWBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nwb1991eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Nyabwa NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "nwi", - translationId: "nwi", - languageName: "Southwest Tanna", - languageNameInEnglish: "Southwest Tanna", - dialect: null, - homeDomain: "ebible.org", - title: "N\u0259kw\u0259kw\u0259 im\u0259rhak\u0259 kape kughen: n\u0268rpenien vi", - description: "The New Testament in the Southwest Tanna Language of Vanuatu", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/nwi/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7867, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NWIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nwi2011eb", - rodCode: 17201.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Southwest Tanna NT", - PODISBN: "978-1-5313-0498-0", - script: "Latin", - sourceDate: "2015-11-28", - }, - { - languageCode: "nxl", - translationId: "nxl", - languageName: null, - languageNameInEnglish: "Nuaulu, South", - dialect: null, - homeDomain: "ebible.org", - title: "Anahatana ne Anamanaya tau Sou Naunue", - description: "Nuaulu, South: Anahatana ne Anamanaya tau Sou Naunue (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/nxl/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1453, - NTbooks: 6, - NTchapters: 58, - NTverses: 2154, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NXLWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nxl2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "South Nuaulu Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "nya", - translationId: "nya", - languageName: "Chichewa", - languageNameInEnglish: "Chichewa", - dialect: null, - homeDomain: "ebible.org", - title: "Biblica\u00ae Tsekulani Mawu a Mulungu mu Chichewa Chalero", - description: - "Chichewa: Biblica\u00ae Tsekulani Mawu a Mulungu mu Chichewa Chalero (Bible) of Malawi", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Biblica, Inc.", - UpdateDate: "2021-11-15", - publicationURL: "http://ebible.org/nya/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NYABIB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nya2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Chichewa Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-05-11", - }, - { - languageCode: "nyf", - translationId: "nyf", - languageName: "Giryama", - languageNameInEnglish: "Giryama", - dialect: null, - homeDomain: "ebible.org", - title: "Kilagane Kisha (Kenya)", - description: "Kigiryama: Kilagane Kisha (Kenya) New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/nyf/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NYFWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nyf2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kigiryama: Kilagane Kisha (Kenya) New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "nys", - translationId: "nys", - languageName: "Nyoongar", - languageNameInEnglish: "Nyunga", - dialect: null, - homeDomain: "ebible.org", - title: "Nyoongar Bible", - description: "Portions of the Holy Bible in the Nyunga language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 Bible Society of Australia", - UpdateDate: "2022-10-23", - publicationURL: "http://ebible.org/nys/", - OTbooks: 1, - OTchapters: 4, - OTverses: 27, - NTbooks: 2, - NTchapters: 45, - NTverses: 1547, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NYSBSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nys2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Nyunga Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2022-10-23", - }, - { - languageCode: "nyu", - translationId: "nyu", - languageName: "Nyungwe", - languageNameInEnglish: "Nyungwe", - dialect: null, - homeDomain: "ebible.org", - title: "Nyungwe", - description: "Portions of the Holy Bible in the Nyungwe Language of Mozambique", - Redistributable: false, - Copyright: "Copyright \u00a9 1897, 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2023-02-02", - publicationURL: "http://ebible.org/nyu/", - OTbooks: 2, - OTchapters: 90, - OTverses: 2746, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NYUWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nyu2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Nyungwe NT+", - PODISBN: "978-1-5313-0499-7", - script: "Latin", - sourceDate: "2023-02-02", - }, - { - languageCode: "nyy", - translationId: "nyy", - languageName: null, - languageNameInEnglish: "Nyakyusa-Ngonde", - dialect: null, - homeDomain: "ebible.org", - title: "\u0244lwit\u0268kano \u0244l\u0289pya", - description: "Nyakyusa-Ngonde: \u0244lwit\u0268kano \u0244l\u0289pya (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/nyy/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7937, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "NYYWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "nyy2019eb", - rodCode: 1058.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Nyakyusa-Ngonde Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "obo", - translationId: "oboNT", - languageName: "Manobo, Obo", - languageNameInEnglish: "Manobo, Obo", - dialect: null, - homeDomain: "ebible.org", - title: "Moppiyon Dinoggan, Moka-atag ki Disas Krays", - description: "New Testament in Manobo, Obo (RP:obo:Manobo, Obo)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/oboNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7933, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "OBOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "obo2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Obo Manobo NT", - PODISBN: "978-1-5313-0500-0", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "okv", - translationId: "okv", - languageName: "Orokaiva", - languageNameInEnglish: "Orokaiva", - dialect: "Etija", - homeDomain: "png.bible", - title: "God Ta Duru Javotoho", - description: - "The New Testament in the Etija dialect of the Orokaiva Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1988 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-24", - publicationURL: "http://png.bible/okv/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7791, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "OKVTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "okv1988eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Orokaiva Etija NT", - PODISBN: "978-1-5313-0501-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "okv", - translationId: "okvh", - languageName: "Orokaiva Ehija", - languageNameInEnglish: "Orokaiva", - dialect: "Ehija", - homeDomain: "png.bible", - title: "God Ta Duru Javotoho", - description: - "The New Testament in the Ehija dialect of the Orokaiva language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1988 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-01-22", - publicationURL: "http://png.bible/okvh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7787, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "OKVHWB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "okvh1988eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Orokaiva Ehija NT", - PODISBN: "978-1-5313-0502-4", - script: "Latin", - sourceDate: "2021-05-07", - }, - { - languageCode: "omw", - translationId: "omw", - languageName: "Omwunra-Toqura (South Tairora)", - languageNameInEnglish: "Tairora, South", - dialect: "Omwunra-Toqura", - homeDomain: "png.bible", - title: "QARAAKYA QUA TIMWATORA", - description: - "The New Testament in the Omwunra-Toqura (South Tairora) Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2000 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-08-30", - publicationURL: "http://png.bible/omw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7877, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "OMWSTA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "omw2000eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "South Tairora NT", - PODISBN: "978-1-5313-0503-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "omw", - translationId: "omw-a", - languageName: "Omwunra Toqura", - languageNameInEnglish: "South Tairora", - dialect: "Aatasara", - homeDomain: "png.bible", - title: "Aatasara Ioni + Maaki", - description: - "John and Mark in the Aatasara dialect of the South Tairora language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-02-27", - publicationURL: "http://png.bible/omw-a/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 2, - NTchapters: 37, - NTverses: 1546, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "OMWAAT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "omwA2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "South Tairora Aatasara John & Mark", - PODISBN: "978-1-5313-0504-8", - script: "Latin", - sourceDate: "2012-02-27", - }, - { - languageCode: "omw", - translationId: "omw-v", - languageName: "Veqaura", - languageNameInEnglish: "Omwunra-Toqura or South Tairora", - dialect: "Veqaura (Meauna)", - homeDomain: "png.bible", - title: "Veqaura Baibel", - description: - "Portions of the New Testament in the Veqaura (Meauna) dialect of the Omwunra-Toqura (South Tairora) language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-03-19", - publicationURL: "http://png.bible/omw-v/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 4, - NTchapters: 20, - NTverses: 349, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "OMWVEQ", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "omwV2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "South Tairora Veqaura NT", - PODISBN: "978-1-5313-0505-5", - script: "Latin", - sourceDate: "2012-03-20", - }, - { - languageCode: "ong", - translationId: "ong", - languageName: "Olo", - languageNameInEnglish: "Olo", - dialect: null, - homeDomain: "png.bible", - title: "Il Teingipe Ma Ili Topwepe Lapiri Lirouku", - description: "The New Testament in the Olo Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1997 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-08-30", - publicationURL: "http://png.bible/ong/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7890, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ONGTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ong1997eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Olo NT", - PODISBN: "978-1-5313-0506-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ons", - translationId: "ons", - languageName: "Ono", - languageNameInEnglish: "Ono", - dialect: null, - homeDomain: "png.bible", - title: "Waom Yesu Wane Sigi Maep Don", - description: "The New Testament in the Ono Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1991 The Bible Society of Papua New Guinea", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/ons/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7942, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ONSPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ons1991eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Ono NT", - PODISBN: "978-1-5313-0510-9", - script: "Latin", - sourceDate: "2015-03-05", - }, - { - languageCode: "ood", - translationId: "oodNT", - languageName: "Tohono O'odham", - languageNameInEnglish: "Tohono O'odham", - dialect: null, - homeDomain: "ebible.org", - title: "Jiosh Wechij O'ohana", - description: "New Testament in Tohono O'odham (US:ood:Tohono O'odham)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/oodNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7563, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "OODWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ood2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tohono O'odham NT", - PODISBN: "978-1-5313-0511-6", - script: "Latin", - sourceDate: "2014-05-15", - }, - { - languageCode: "opm", - translationId: "opm", - languageName: "Oksapmin", - languageNameInEnglish: "Oksapmin", - dialect: null, - homeDomain: "png.bible", - title: "Got orhe meng brak ban", - description: "The New Testament in the Oksapmin Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1992 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-08-30", - publicationURL: "http://png.bible/opm/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7693, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "OPMTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "opm1992eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Oksapmin NT", - PODISBN: "978-1-5313-0512-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ory", - translationId: "ory", - languageName: "\u0b13\u0b21\u0b3c\u0b3f\u0b06\u200e", - languageNameInEnglish: "Oriya", - dialect: null, - homeDomain: "ebible.org", - title: "\u0b13\u0b21\u0b3f\u0b06 \u0b2c\u0b3e\u0b07\u0b2c\u0b47\u0b32", - description: - "The Indian Revised Version Holy Bible in the Oriya language of India (BCS 2017)", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Bridge Connectivity Solutions", - UpdateDate: "2020-04-09", - publicationURL: "http://ebible.org/ory/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ORYIRV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ory2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "FreeSerif", - shortTitle: "Oriya Indian Revised Version Bible", - PODISBN: null, - script: "Oriya", - sourceDate: "2020-04-10", - }, - { - languageCode: "ote", - translationId: "oteNT", - languageName: "Otomi, Mezquital", - languageNameInEnglish: "Otomi, Mezquital", - dialect: null, - homeDomain: "ebible.org", - title: "Ra 'Ra'yo Testamento", - description: "New Testament in Otomi, Mezquital (MX:ote:Otomi, Mezquital)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/oteNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7951, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "OTETBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ote2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Mezquital Otomi NT", - PODISBN: "978-1-5313-0513-0", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "otm", - translationId: "otmNT", - languageName: "Otomi, Eastern Highland", - languageNameInEnglish: "Otomi, Eastern Highland", - dialect: null, - homeDomain: "ebible.org", - title: "Ra \u02bcda\u02bcyonhogui nangue ma Hmuh\u0289 ra Jesucristo", - description: "New Testament in Otomi, Eastern Highland (MX:otm:Otomi, Eastern Highland)", - Redistributable: true, - Copyright: "Copyright \u00a9 1974 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/otmNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7872, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "OTMWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "otm1974eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Eastern Highland Otomi NT", - PODISBN: "978-1-5313-0514-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "otn", - translationId: "otnNT", - languageName: "Otomi, Tenango", - languageNameInEnglish: "Otomi, Tenango", - dialect: null, - homeDomain: "ebible.org", - title: "Ja ua ra\u0331 \u02bcda\u02bcyo cohi bi gomi\u0331 Oja\u0331 y\u00f8 ja\u0331\u02bci\u0331", - description: "New Testament in Otomi, Tenango (MX:otn:Otomi, Tenango)", - Redistributable: true, - Copyright: "Copyright \u00a9 1975 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/otnNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7939, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "OTNWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "otn1975eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tenango Otomi NT", - PODISBN: "978-1-5313-0515-4", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "otq", - translationId: "otqNT", - languageName: "Otomi, Quer\u00e9taro", - languageNameInEnglish: "Otomi, Quer\u00e9taro", - dialect: null, - homeDomain: "ebible.org", - title: "\u00c0r 'ra'yo nkohi J\u00f6 har \u00f1h\u00f6\u00f1h\u00f6 maxei nto\u0331ngwi \u00e1r mahwifi har ha\u0331i m'onda ne har \u00f1h\u00f6mfo\u0331", - description: "New Testament in Otomi, Quer\u00e9taro (MX:otq:Otomi, Quer\u00e9taro)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/otqNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "OTQTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "otq2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Quer\u00e9taro Otomi NT", - PODISBN: "978-1-5313-0516-1", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "ots", - translationId: "otsNT", - languageName: "Otomi, Estado de M\u00e9xico", - languageNameInEnglish: "Otomi, Estado de M\u00e9xico", - dialect: null, - homeDomain: "ebible.org", - title: "El Nuevo Testamento en otom\u00ed de San Felipe Santiago, Edo. de M\u00e9xico", - description: - "New Testament in Otomi, Estado de M\u00e9xico (MX:ots:Otomi, Estado de M\u00e9xico)", - Redistributable: true, - Copyright: "Copyright \u00a9 1975 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/otsNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7921, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "OTSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ots1975eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Estado de M\u00e9xico Otomi NT", - PODISBN: "978-1-5313-0517-8", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "pab", - translationId: "pabNT", - languageName: "Parec\u00eds", - languageNameInEnglish: "Parec\u00eds", - dialect: null, - homeDomain: "ebible.org", - title: "Waitare Wenati Aho", - description: "New Testament in Parec\u00eds (BR:pab:Parec\u00eds)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/pabNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PABTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pab2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Parec\u00eds NT", - PODISBN: "978-1-5313-0518-5", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "pac", - translationId: "pac", - languageName: null, - languageNameInEnglish: "Pacoh", - dialect: null, - homeDomain: "ebible.org", - title: "Parnai Yang Arbang-pil\u014f\u0301ng: T\u00e1m Uraq Tamme Cang Cad\u00f4", - description: - "Pacoh: Parnai Yang Arbang-pil\u014f\u0301ng: T\u00e1m Uraq Tamme Cang Cad\u00f4 (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/pac/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PACWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pac2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Pacoh Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "pad", - translationId: "padNT", - languageName: "Paumar\u00ed", - languageNameInEnglish: "Paumar\u00ed", - dialect: null, - homeDomain: "ebible.org", - title: "Deus Athi Kapapirani Hida", - description: "New Testament in Paumar\u00ed (BR:pad:Paumar\u00ed)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/padNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7781, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PADWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pad2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Paumar\u00ed NT", - PODISBN: "978-1-5313-0519-2", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "pah", - translationId: "pahNT", - languageName: "Tenharim", - languageNameInEnglish: "Tenharim", - dialect: null, - homeDomain: "ebible.org", - title: "Tupana\u02bcga nhi\u02bcig\u0303a", - description: "New Testament in Tenharim (BR:pah:Tenharim)", - Redistributable: true, - Copyright: "Copyright \u00a9 1996 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/pahNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7716, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PAHTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pah1996eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tenharim NT", - PODISBN: "978-1-5313-0520-8", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "pan", - translationId: "pan", - languageName: "\u0a2a\u0a70\u0a1c\u0a3e\u0a2c\u0a40", - languageNameInEnglish: "Panjabi, Eastern", - dialect: null, - homeDomain: "ebible.org", - title: "\u0a07\u0a70\u0a21\u0a3f\u0a05\u0a28 \u0a30\u0a3f\u0a35\u0a3e\u0a07\u0a5b\u0a21 \u0a35\u0a30\u0a5b\u0a28 (IRV) - \u0a2a\u0a70\u0a1c\u0a3e\u0a2c\u0a40", - description: - "The Indian Revised Version Holy Bible in the Eastern Punjabi language of India (BCS 2017)", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Bridge Connectivity Solutions", - UpdateDate: "2020-02-11", - publicationURL: "http://ebible.org/pan/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PANIRV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pan2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "FreeSerif", - shortTitle: "Punjabi Indian Revised Version Bible", - PODISBN: null, - script: "Gurmukhi", - sourceDate: "2020-01-25", - }, - { - languageCode: "pao", - translationId: "paoNT", - languageName: "Paiute, Northern", - languageNameInEnglish: "Paiute, Northern", - dialect: null, - homeDomain: "ebible.org", - title: "Te Naa Besa Unnepu", - description: "New Testament in Paiute, Northern (US:pao:Paiute, Northern)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/paoNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7040, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PAONAB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pao2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Northern Paiute NT", - PODISBN: "978-1-5313-0521-5", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "pbb", - translationId: "pbb", - languageName: null, - languageNameInEnglish: "P\u00e1ez", - dialect: null, - homeDomain: "ebible.org", - title: "Dyus Yuwe U\ua78csesa", - description: "P\u00e1ez: Dyus Yuwe U\ua78csesa New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/pbb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7923, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PBBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pbb2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "P\u00e1ez NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "pcm", - translationId: "pcm", - languageName: "Nigerian Pidgin", - languageNameInEnglish: "Nigerian Pidgin", - dialect: null, - homeDomain: "ebible.org", - title: "Holy Bible Nigerian Pidgin English", - description: "Pidgin, Nigerian: Holy Bible Nigerian Pidgin English (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/pcm/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23113, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PCMWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pcm2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Nigerian Pidgin English Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "pdc", - translationId: "pdc", - languageName: "Pennsilfaanisch Deitsch", - languageNameInEnglish: "Pennsilfaanisch Deitsch", - dialect: null, - homeDomain: "ebible.org", - title: "Di Heilich Shrift", - description: "German, Pennsylvania: Di Heilich Shrift Bible", - Redistributable: false, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/pdc/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PDCWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pdc2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Pennsylvania German Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "pes", - translationId: "pesOPV", - languageName: "\u0641\u0627\u0631\u0633\u06cc", - languageNameInEnglish: "Persian", - dialect: null, - homeDomain: "ebible.org", - title: "\u062a\u0631\u062c\u0645\u0647 \u0642\u062f\u06cc\u0645", - description: "The Old Persian Version of the Holy Bible in the Persian language of Iran", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2015-04-21", - publicationURL: "http://ebible.org/pesOPV/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23139, - NTbooks: 27, - NTchapters: 260, - NTverses: 7951, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PESPBS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pesOPV1895eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "XB Niloofar", - shortTitle: "Old Persion Version Bible", - PODISBN: "978-1-5313-0523-9", - script: "Arabic", - sourceDate: "2020-10-09", - }, - { - languageCode: "pib", - translationId: "pibNT", - languageName: "Yine", - languageNameInEnglish: "Yine", - dialect: null, - homeDomain: "ebible.org", - title: "Gerotu Tokanchi Gipiratkaluru", - description: "New Testament in Yine", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/pibNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PIBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pibNT2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yine NT", - PODISBN: "978-1-5313-0524-6", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "pio", - translationId: "pioNT", - languageName: "Piapoco", - languageNameInEnglish: "Piapoco", - dialect: null, - homeDomain: "ebible.org", - title: "El Nuevo Testamento de nuestro Se\u00f1or Jesucristo en el idioma piapoco", - description: "New Testament in Piapoco", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/pioNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7874, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PIOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pio2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Piapoco NT", - PODISBN: "978-1-5313-0525-3", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "pir", - translationId: "pirNT", - languageName: "Piratapuyo", - languageNameInEnglish: "Piratapuyo", - dialect: null, - homeDomain: "ebible.org", - title: "Coh\u00e3cj\u0289\u0303 Yere Yahuducuri Tju", - description: "New Testament in Piratapuyo (CO:pir:Piratapuyo)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/pirNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7753, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PIRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pir2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Piratapuyo NT", - PODISBN: "978-1-5313-0526-0", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "piu", - translationId: "piu2006", - languageName: "Luritja", - languageNameInEnglish: "Pintupi-Luritja", - dialect: "Luritja", - homeDomain: "ebible.org", - title: "Luritja Bible", - description: - "The New Testament and selected portions of the Old Testament in the Luritja language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2006 Bible Society of Australia", - UpdateDate: "2020-01-06", - publicationURL: "http://ebible.org/piu2006/", - OTbooks: 29, - OTchapters: 296, - OTverses: 455, - NTbooks: 27, - NTchapters: 260, - NTverses: 7041, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PIUBSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "piu2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Luritja Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-01-07", - }, - { - languageCode: "pjt", - translationId: "pjt", - languageName: "Pitjantjatjara", - languageNameInEnglish: "Pitjantjatjara", - dialect: null, - homeDomain: "ebible.org", - title: "Tjukurpa Palya", - description: "Portions of the Holy Bible in the Pitjantjatjara language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Bible Society of Australia", - UpdateDate: "2020-04-23", - publicationURL: "http://ebible.org/pjt/", - OTbooks: 17, - OTchapters: 229, - OTverses: 3473, - NTbooks: 27, - NTchapters: 260, - NTverses: 7507, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PJTBSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pjt2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Pitjantjatjara Shorter Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2019-06-14", - }, - { - languageCode: "pls", - translationId: "plsNT", - languageName: "San Marcos Tlalcoyalco Popoloca", - languageNameInEnglish: "Popoloca, San Marcos Tlalcoyalco", - dialect: null, - homeDomain: "ebible.org", - title: "Tti jian joajn\u00e9 Jesucristo", - description: "New Testament in Popoloca, San Marcos Tlalcoyalco", - Redistributable: true, - Copyright: "Copyright \u00a9 1982 Wycliffe Bible Translators, Inc.", - UpdateDate: "2018-11-16", - publicationURL: "http://ebible.org/plsNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7947, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PLSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pls1982eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "San Marcos Tlalcoyalco Popoloca NT", - PODISBN: "978-1-5313-0527-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "plu", - translationId: "plu", - languageName: "Palik\u00far", - languageNameInEnglish: "Palik\u00far", - dialect: null, - homeDomain: "ebible.org", - title: "Uhokri Gannasan", - description: "New Testament in Palik\u00far", - Redistributable: true, - Copyright: "Copyright \u00a9 1982 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/plu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7945, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PLUWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "plu1982eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Palik\u00far NT", - PODISBN: "978-1-5313-0528-4", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "plw", - translationId: "plw", - languageName: "Brooke's Point Palawano", - languageNameInEnglish: "Brooke's Point Palawano", - dialect: null, - homeDomain: "ebible.org", - title: "Bagung Pinegsulutan et Empu\ua78c", - description: "Brooke's Point Palawano: Bagung Pinegsulutan et Empu\ua78c New Testament+", - Redistributable: false, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/plw/", - OTbooks: 2, - OTchapters: 14, - OTverses: 333, - NTbooks: 27, - NTchapters: 260, - NTverses: 7943, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PLWWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "plw2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Brooke's Point Palawano: Bagung Pinegsulutan et Empu\ua78c New Testament+", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "pma", - translationId: "pma", - languageName: "Paama", - languageNameInEnglish: "Paama", - dialect: null, - homeDomain: "ebible.org", - title: "Paama Bible", - description: "Portions of the Holy Bible in the Paama Language of Vanuatu", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/pma/", - OTbooks: 27, - OTchapters: 259, - OTverses: 3085, - NTbooks: 27, - NTchapters: 260, - NTverses: 7916, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PMAWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pma2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Paama Bible", - PODISBN: "978-1-5313-0529-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "pmy", - translationId: "pmy", - languageName: null, - languageNameInEnglish: "Malay, Papuan", - dialect: null, - homeDomain: "ebible.org", - title: "Melayu Papua", - description: "Malay, Papuan: Melayu Papua (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/pmy/", - OTbooks: 3, - OTchapters: 58, - OTverses: 1657, - NTbooks: 5, - NTchapters: 42, - NTverses: 1499, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PMYWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pmy2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Malay, Papuan: Melayu Papua (Bible)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "poe", - translationId: "poeNT", - languageName: "Popoloca, San Juan Atzingo", - languageNameInEnglish: "Popoloca, San Juan Atzingo", - dialect: null, - homeDomain: "ebible.org", - title: "T\u00ed Nuevo Testamento cu\u00e8nte Inch\u00e9ni Jesucristo C\u02bc\u00f3na Nqu\u00ecva", - description: "New Testament in Popoloca, San Juan Atzingo", - Redistributable: true, - Copyright: "Copyright \u00a9 1982 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/poeNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "POETBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "poe1982eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "San Juan Atzingo Popoloca NT", - PODISBN: "978-1-5313-0530-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "poh", - translationId: "pohNT", - languageName: "Poqomchi'", - languageNameInEnglish: "Poqomchi'", - dialect: "Occidental", - homeDomain: "ebible.org", - title: "Re\ua78c Lok\ua78c Laj Hu\u0331j Wilic wi\u0331\ua78c Ribiral i Jesus", - description: "New Testament in Poqomchi' Occidental", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/pohNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "POHBSG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "poh2012eb", - rodCode: 4744.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Poqomchi' Occidental NT", - PODISBN: "978-1-5313-0531-4", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "poi", - translationId: "poiNT", - languageName: "Popoluca, Highland", - languageNameInEnglish: "Popoluca, Highland", - dialect: null, - homeDomain: "ebible.org", - title: "J\u00e9m jomip\u0268c trato j\u00e9m iwatnew\u0268\u0268p t\u00e1nomi Jesucristo", - description: "New Testament in Popoluca, Highland", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/poiNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "POIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "poi2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Highland Popoluca NT", - PODISBN: "978-1-5313-0532-1", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "pol", - translationId: "polsz", - languageName: "Polski", - languageNameInEnglish: "Polski", - dialect: null, - homeDomain: "ebible.org", - title: "Biblica\u00ae S\u0142owo \u017bycia, otwarty dost\u0119p", - description: - "Polish: Biblica\u00ae S\u0142owo \u017bycia, otwarty dost\u0119p (New Testament)", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Biblica, Inc.", - UpdateDate: "2021-11-18", - publicationURL: "http://ebible.org/polsz/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7915, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "POLBIB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "polsz2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Polish S\u0142owo \u017bycia, otwarty dost\u0119p NT", - PODISBN: null, - script: "Latin", - sourceDate: "2021-06-16", - }, - { - languageCode: "pol", - translationId: "polubg", - languageName: "Polskie", - languageNameInEnglish: "Polish", - dialect: null, - homeDomain: "ebible.org", - title: "\u015awi\u0119ta Biblia", - description: "The Holy Bible in Polish, Updated Gdansk Version", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 Fundacja Wrota Nadziei", - UpdateDate: "2018-10-23", - publicationURL: "http://ebible.org/polubg/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "POLUBG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "polubg2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Polish Updated Gdansk Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "pon", - translationId: "pon", - languageName: "Pohnpeian", - languageNameInEnglish: "Pohnpeian", - dialect: null, - homeDomain: "ebible.org", - title: "Kadede Kap Pjam Akan", - description: - "The New Testament and Psalms in the Pohnpeian language of the Federated States of Micronesia (old translation, using old alphabet)", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2014-11-10", - publicationURL: "http://ebible.org/pon/", - OTbooks: 1, - OTchapters: 150, - OTverses: 2460, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PONPJA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pon1922eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Pohnpeian NT & Psalms, old alphabet", - PODISBN: "978-1-5313-0533-8", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "pon", - translationId: "pon2006", - languageName: "Pohnpeian", - languageNameInEnglish: "Pohnpeian", - dialect: null, - homeDomain: "ebible.org", - title: "Pohnpeian Bible", - description: - "The Holy Bible in the Pohnpeian language of the Federated States of Micronesia", - Redistributable: true, - Copyright: "Copyright \u00a9 2006 Bible Society of the South Pacific", - UpdateDate: "2022-10-27", - publicationURL: "http://ebible.org/pon2006/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22266, - NTbooks: 27, - NTchapters: 260, - NTverses: 7941, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PONSSPON", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pon2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Pohnpeian Bible 2006", - PODISBN: "978-1-5313-0536-9", - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "pon", - translationId: "pon2006a", - languageName: "Pohnpeian", - languageNameInEnglish: "Pohnpeian", - dialect: null, - homeDomain: "ebible.org", - title: "Pohnpeian Bible with Apocrypha", - description: - "The Holy Bible in the Pohnpeian language of the Federated States of Micronesia", - Redistributable: true, - Copyright: "Copyright \u00a9 2006 Bible Society of the South Pacific", - UpdateDate: "2017-09-08", - publicationURL: "http://ebible.org/pon2006a/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22266, - NTbooks: 27, - NTchapters: 260, - NTverses: 7941, - DCbooks: 6, - DCchapters: 44, - DCverses: 1901, - FCBHID: "PONSSP", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ponA2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Pohnpeian Bible with Apocrypha 2006", - PODISBN: "978-1-5313-0537-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "pon", - translationId: "pon-pdn", - languageName: "Pohnpeian", - languageNameInEnglish: "Pohnpeian", - dialect: null, - homeDomain: "ebible.org", - title: "Kadede Kap Psam Akan", - description: - "The New Testament and Psalms in the Pohnpeian language of the Federated States of Micronesia (old translation, but with new alphabet)", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-10-19", - publicationURL: "http://ebible.org/pon-pdn/", - OTbooks: 1, - OTchapters: 150, - OTverses: 2460, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PONPSA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pon-pdneb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Pohnpeian NT & Psalms, new alphabet", - PODISBN: "978-1-5313-0826-1", - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "por", - translationId: "porblt", - languageName: "Portugu\u00eas", - languageNameInEnglish: "Portugu\u00eas", - dialect: "Brasil", - homeDomain: "ebible.org", - title: "Biblia Livre Para Todos", - description: - "The New Testament in Portuguese, translated from the English Free Bible Version with input from Hebrew and Greek", - Redistributable: true, - Copyright: "Copyright \u00a9 2022 Free Bible Ministry, Inc.", - UpdateDate: "2022-03-08", - publicationURL: "http://ebible.org/porblt/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PORBLT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "porblt2022eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Portuguese Free Bible for All", - PODISBN: null, - script: "Latin", - sourceDate: "2022-03-09", - }, - { - languageCode: "por", - translationId: "porbr2018", - languageName: "Portugu\u00eas", - languageNameInEnglish: "Portuguese", - dialect: "Brasil", - homeDomain: "ebible.org", - title: "B\u00edblia Livre", - description: - "The Holy Bible in Brazilian Portuguese, updated from from the 1819 translation by Jo\u00e3o Ferreira de Almeida, Textus Receptus edition", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 Diego Santos, Mario S\u00e9rgio, e Marco Teles", - UpdateDate: "2022-03-08", - publicationURL: "http://ebible.org/porbr2018/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PORBLJ", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "porbr2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Portuguese B\u00edblia Livre", - PODISBN: null, - script: "Latin", - sourceDate: "2018-02-24", - }, - { - languageCode: "por", - translationId: "porbrbsl", - languageName: "Portugu\u00eas", - languageNameInEnglish: "Portuguese", - dialect: "Brasil", - homeDomain: "ebible.org", - title: "B\u00edblia Sagrada livre para o mundo", - description: - "The Holy Bible in Portuguese, Brazilian dialect, B\u00edblia Sagrada livre paro o mundo translation", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-06-28", - publicationURL: "http://ebible.org/porbrbsl/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PORBSL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "porbrbsl2022eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Portuguese Free Bible for the World", - PODISBN: null, - script: "Latin", - sourceDate: "2022-09-14", - }, - { - languageCode: "por", - translationId: "portft", - languageName: "portugues", - languageNameInEnglish: "Portuguese", - dialect: "Brasil", - homeDomain: "ebible.org", - title: "A B\u00edblia Sagrada, Tradu\u00e7\u00e3o para Tradutores", - description: "The Holy Bible: a Translation for Translators in Brazilian Portuguese", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 Ellis W. Deibler, Jr.", - UpdateDate: "2018-09-11", - publicationURL: "http://ebible.org/portft/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7899, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PORTFT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "portft2018eb", - rodCode: 47.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Portuguese Translation for Translators", - PODISBN: null, - script: "Latin", - sourceDate: "2022-06-09", - }, - { - languageCode: "por", - translationId: "por-WBTC", - languageName: "Portugu\u00eas", - languageNameInEnglish: "Portuguese", - dialect: "Brazillian", - homeDomain: "ebible.org", - title: "Novo Testamento: Vers\u00e3o F\u00e1cil de Ler", - description: "Easy reading version of the New Testament in Portuguese", - Redistributable: false, - Copyright: "Copyright \u00a9 1999 World Bible Translation Center", - UpdateDate: "2017-09-09", - publicationURL: "http://ebible.org/por-WBTC/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7935, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PORBTC", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "porWBTC1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Portuguese Easy Reading Version", - PODISBN: "978-1-5313-0809-4", - script: "Latin", - sourceDate: "2017-09-09", - }, - { - languageCode: "poy", - translationId: "poy", - languageName: "Pogolo", - languageNameInEnglish: "Pogolo", - dialect: null, - homeDomain: "ebible.org", - title: "Lipatanu Lya Syayi Kwa Wantu Woseri", - description: "The New Testament in Pogoro", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 The Word for the World and Pioneer Bible Translators", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/poy/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "POYPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "poy2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Pogolo NT", - PODISBN: "978-1-5313-0538-3", - script: "Latin", - sourceDate: "2019-12-30", - }, - { - languageCode: "ppo", - translationId: "ppo", - languageName: "Folopa", - languageNameInEnglish: "Folopa", - dialect: null, - homeDomain: "png.bible", - title: "Yesu Kerison\u00e9 So Whi\u0327 Tao Sere Kisi Fo Wisi", - description: "The New Testament in the Folopa Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-09-20", - publicationURL: "http://png.bible/ppo/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7696, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PPOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ppo2005eb", - rodCode: 3101.0, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Folopa NT", - PODISBN: "978-1-5313-0539-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "pps", - translationId: "pps", - languageName: "Popoloca, San Lu\u00eds Temalacayuca", - languageNameInEnglish: "Popoloca, San Lu\u00eds Temalacayuca", - dialect: null, - homeDomain: "ebible.org", - title: "Chijnie ndo Jesucristo", - description: "Popoloca, San Lu\u00eds Temalacayuca: Chijnie ndo Jesucristo New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/pps/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PPSWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pps2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "San Lu\u00eds Temalacayuca Popoloca NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "prf", - translationId: "prfNT", - languageName: "Paranan", - languageNameInEnglish: "Paranan", - dialect: null, - homeDomain: "ebible.org", - title: "En Maganda A Bareta Biblia", - description: "New Testament in Paranan (RP:prf:Paranan)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-05-05", - publicationURL: "http://ebible.org/prfNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7942, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PRFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "prfNT2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Paranan NT", - PODISBN: "978-1-5313-0540-6", - script: "Latin", - sourceDate: "2014-05-15", - }, - { - languageCode: "pri", - translationId: "priNT", - languageName: "Paic\u00ee", - languageNameInEnglish: "Paic\u00ee", - dialect: null, - homeDomain: "ebible.org", - title: "Tii Pwic\u00eeri: \u00c2mu Aamwari naa na c\u00ee", - description: "New Testament in Paic\u00ee (NC:pri:Paic\u00ee)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/priNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7654, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PRIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "priNT2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Paic\u00ee NT", - PODISBN: "978-1-5313-0541-3", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "prq", - translationId: "prq", - languageName: null, - languageNameInEnglish: "Ash\u00e9ninka Peren\u00e9", - dialect: null, - homeDomain: "ebible.org", - title: "Ash\u00e9ninka Peren\u00e9", - description: "Ash\u00e9ninka Peren\u00e9: Ash\u00e9ninka Peren\u00e9 (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-11", - publicationURL: "http://ebible.org/prq/", - OTbooks: 22, - OTchapters: 670, - OTverses: 3486, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PRQWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "prq2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ash\u00e9ninka Peren\u00e9: Ash\u00e9ninka Peren\u00e9 (New Testament+)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "ptp", - translationId: "ptp", - languageName: "Patep", - languageNameInEnglish: "Patep", - dialect: null, - homeDomain: "png.bible", - title: "Yesu Xolac", - description: "The New Testament in the Patep Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1986 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-09-14", - publicationURL: "http://png.bible/ptp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7925, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PTPTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ptp1986eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Patep NT", - PODISBN: "978-1-5313-0542-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ptu", - translationId: "ptu", - languageName: "Bambam", - languageNameInEnglish: "Bambam", - dialect: null, - homeDomain: "ebible.org", - title: "Suha' Maseho: Kadadiam anna Pa'dandiam Bakahu", - description: "The New Testament and Genesis in the Bambam language of Indonesia", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Lembaga Alkitab Indonesia", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/ptu/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1473, - NTbooks: 27, - NTchapters: 260, - NTverses: 7876, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PTULAI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ptu2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Bambam Bible", - PODISBN: "978-1-5313-0543-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "pwg", - translationId: "pwg", - languageName: "Gapapaiwa", - languageNameInEnglish: "Gapapaiwa", - dialect: null, - homeDomain: "png.bible", - title: "Gapapaiwa New Testament", - description: "The New Testament in the Gapapaiwa Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2009-2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-11-07", - publicationURL: "http://png.bible/pwg/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1529, - NTbooks: 27, - NTchapters: 260, - NTverses: 7940, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "PWGGTT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "pwg2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Basic", - shortTitle: "Gapapaiwa NT", - PODISBN: "978-1-5313-0544-4", - script: "Latin", - sourceDate: "2022-11-07", - }, - { - languageCode: "qub", - translationId: "qub", - languageName: "Huallaga Hu\u00e1nuco Quechua", - languageNameInEnglish: "Quechua, Huallaga Hu\u00e1nuco", - dialect: null, - homeDomain: "ebible.org", - title: "Tayta Diosninchi Isquirbichishan", - description: "New Testament in Quechua, Huallaga Hu\u00e1nuco", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/qub/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22938, - NTbooks: 27, - NTchapters: 260, - NTverses: 7933, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QUBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qub2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Huallaga Hu\u00e1nuco Quechua NT", - PODISBN: "978-1-5313-0545-1", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "quc", - translationId: "qucNNT", - languageName: "K'iche'", - languageNameInEnglish: "K'iche'", - dialect: "Cantel", - homeDomain: "ebible.org", - title: "Ru Loq\ua78c Pixab\ua78c Ri Dios", - description: "New Testament in K'iche' Cantel; quc (GT:quc:K'iche'), new spelling", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-27", - publicationURL: "http://ebible.org/qucNNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QUCNEW", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qucN2011eb", - rodCode: 4782.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "K'iche' Cantel NT, new spelling", - PODISBN: "978-1-5313-0546-8", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "quc", - translationId: "qucTNT", - languageName: "K'iche'", - languageNameInEnglish: "K'iche'", - dialect: null, - homeDomain: "ebible.org", - title: "Ru Lok\ua78c Pixab Ri Dios", - description: "New Testament in K'iche' Cantel; quc (GT:quc:K'iche'), traditional spelling", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-27", - publicationURL: "http://ebible.org/qucTNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QUCTRA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qucT2011eb", - rodCode: 4782.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "K'iche' Cantel NT, traditional spelling", - PODISBN: "978-1-5313-0547-5", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "quf", - translationId: "qufNT", - languageName: "Quechua, Lambayeque", - languageNameInEnglish: "Quechua, Lambayeque", - dialect: null, - homeDomain: "ebible.org", - title: "Mushuq Testamento", - description: "New Testament in Quechua, Lambayeque (PE:quf:Quechua, Lambayeque)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/qufNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7843, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QUFLLB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "quf2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Lambayeque Quechua NT", - PODISBN: "978-1-5313-0548-2", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "quh", - translationId: "quhNT", - languageName: "Quechua, South Bolivian", - languageNameInEnglish: "Quechua, South Bolivian", - dialect: null, - homeDomain: "ebible.org", - title: "Dios Parlapawanchej", - description: "New Testament in Quechua, South Bolivian (BL:quh:Quechua, South Bolivian)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/quhNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7909, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QUHSBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "quhNT2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "South Bolivian Quechua NT", - PODISBN: "978-1-5313-0549-9", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "qul", - translationId: "qulNT", - languageName: "Quechua, North Bolivian", - languageNameInEnglish: "Quechua, North Bolivian", - dialect: null, - homeDomain: "ebible.org", - title: "Mosoj Testamento", - description: "New Testament in Quechua, North Bolivian (BL:qul:Quechua, North Bolivian)", - Redistributable: true, - Copyright: "Copyright \u00a9 1985 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/qulNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QULSBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qul1985eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "North Bolivian Quechua NT", - PODISBN: "978-1-5313-0550-5", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "qup", - translationId: "qupNT", - languageName: "Quechua, Southern Pastaza", - languageNameInEnglish: "Quechua, Southern Pastaza", - dialect: null, - homeDomain: "ebible.org", - title: "Yaya Diospa mushu killkachishkan shimi", - description: - "New Testament in Quechua, Southern Pastaza (PE:qup:Quechua, Southern Pastaza)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/qupNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7728, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QUPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qup2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Southern Pastaza Quechua NT", - PODISBN: "978-1-5313-0551-2", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "qva", - translationId: "qva", - languageName: null, - languageNameInEnglish: "Quechua, Ambo-Pasco", - dialect: null, - homeDomain: "ebible.org", - title: "Mushog Testamento", - description: "Quechua, Ambo-Pasco: Mushog Testamento New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/qva/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7878, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QVAWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qva2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ambo-Pascq Quechua NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "qvc", - translationId: "qvcNT", - languageName: "Quechua, Cajamarca", - languageNameInEnglish: "Quechua, Cajamarca", - dialect: null, - homeDomain: "ebible.org", - title: "Mushuq Tistamintu", - description: "New Testament in Quechua, Cajamarca (PE:qvc:Quechua, Cajamarca)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/qvcNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7810, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QVCTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qvc2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Cajamarca Quechua NT", - PODISBN: "978-1-5313-0552-9", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "qve", - translationId: "qveNT", - languageName: "Quechua, Eastern Apur\u00edmac", - languageNameInEnglish: "Quechua, Eastern Apur\u00edmac", - dialect: null, - homeDomain: "ebible.org", - title: "Mosoq Testamento", - description: - "New Testament in Quechua, Eastern Apur\u00edmac (PE:qve:Quechua, Eastern Apur\u00edmac)", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/qveNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QVETBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qve2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Eastern Apur\u00edmac Quechua NT", - PODISBN: "978-1-5313-0553-6", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "qvh", - translationId: "qvhNT", - languageName: "Quechua, Huamal\u00edes-Dos de Mayo Hu\u00e1nuco", - languageNameInEnglish: "Quechua, Huamal\u00edes-Dos de Mayo Hu\u00e1nuco", - dialect: null, - homeDomain: "ebible.org", - title: "Mushog Testamento", - description: - "New Testament in Quechua, Huamal\u00edes-Dos de Mayo Hu\u00e1nuco (PE:qvh:Quechua, Huamal\u00edes-Dos de Mayo Hu\u00e1nuco)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/qvhNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7455, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QVHWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qvh2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Huamal\u00edes-Dos de Mayo Hu\u00e1nuco Quechua NT", - PODISBN: "978-1-5313-0554-3", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "qvm", - translationId: "qvmNT", - languageName: "Quechua, Margos-Yarowilca-Lauricocha", - languageNameInEnglish: "Quechua, Margos-Yarowilca-Lauricocha", - dialect: null, - homeDomain: "ebible.org", - title: "Mushog Testamento", - description: - "New Testament in Quechua, Margos-Yarowilca-Lauricocha (PE:qvm:Quechua, Margos-Yarowilca-Lauricocha)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/qvmNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7455, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QVMTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qvm2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Margos-Yarowilca-Lauricocha Quechua NT", - PODISBN: "978-1-5313-0555-0", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "qvn", - translationId: "qvnNT", - languageName: "Quechua, North Jun\u00edn", - languageNameInEnglish: "Quechua, North Jun\u00edn", - dialect: null, - homeDomain: "ebible.org", - title: "Tayta Diospa Guepacag Testamentun", - description: - "New Testament in Quechua, North Jun\u00edn (PE:qvn:Quechua, North Jun\u00edn)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/qvnNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QVNLLB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qvn2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "North Jun\u00edn Quechua NT", - PODISBN: "978-1-5313-0556-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "qvo", - translationId: "qvo", - languageName: null, - languageNameInEnglish: "Quechua, Napo Lowland", - dialect: null, - homeDomain: "ebible.org", - title: "Quichua, Napo Bible", - description: "Napo Quechua - Unicode", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/qvo/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 16, - NTverses: 664, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QVOWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qvo2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Napo Quichua Mark", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "qvs", - translationId: "qvsNT", - languageName: "Quechua, San Mart\u00edn", - languageNameInEnglish: "Quechua, San Mart\u00edn", - dialect: null, - homeDomain: "ebible.org", - title: "Tata Diospa Mushuk Rimanan", - description: "New Testament in Quechua, San Mart\u00edn (PE:qvs:Quechua, San Mart\u00edn)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/qvsNT/", - OTbooks: 1, - OTchapters: 27, - OTverses: 348, - NTbooks: 27, - NTchapters: 260, - NTverses: 7883, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QVSTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qvs2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "San Mart\u00edn Quechua NT", - PODISBN: "978-1-5313-0557-4", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "qvw", - translationId: "qvwNT", - languageName: "Quechua, Huaylla Wanca", - languageNameInEnglish: "Quechua, Huaylla Wanca", - dialect: null, - homeDomain: "ebible.org", - title: "Mu\u015bh\u00fc limalicuy", - description: "New Testament in Quechua, Huaylla Wanca (PE:qvw:Quechua, Huaylla Wanca)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/qvwNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7643, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QVWWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qvw2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Huaylla Wanca Quechua NT", - PODISBN: "978-1-5313-0558-1", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "qvz", - translationId: "qvzNT", - languageName: "Quichua, Northern Pastaza", - languageNameInEnglish: "Quichua, Northern Pastaza", - dialect: null, - homeDomain: "ebible.org", - title: "Diospa shimi", - description: - "New Testament in Quichua, Northern Pastaza (EC:qvz:Quichua, Northern Pastaza)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/qvzNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7813, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QVZWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qvz2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Northern Pastaza Quichua NT", - PODISBN: "978-1-5313-0559-8", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "qwh", - translationId: "qwhNT", - languageName: "Quechua, Huaylas Ancash", - languageNameInEnglish: "Quechua, Huaylas Ancash", - dialect: null, - homeDomain: "ebible.org", - title: "Teyta Diospa Mushoq Testamentun", - description: "New Testament in Quechua, Huaylas Ancash (PE:qwh:Quechua, Huaylas Ancash)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/qwhNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7885, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QWHLLB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qwh2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Huaylas Ancash Quechua NT", - PODISBN: "978-1-5313-0560-4", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "qxh", - translationId: "qxhNT", - languageName: "Quechua, Panao Hu\u00e1nuco", - languageNameInEnglish: "Quechua, Panao Hu\u00e1nuco", - dialect: null, - homeDomain: "ebible.org", - title: "Mushug Testamento", - description: - "New Testament in Quechua, Panao Hu\u00e1nuco (PE:qxh:Quechua, Panao Hu\u00e1nuco)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/qxhNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7797, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QXHWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qxh2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Panao Hu\u00e1nuco Quechua NT", - PODISBN: "978-1-5313-0561-1", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "qxl", - translationId: "qxl", - languageName: "Salasakaguna", - languageNameInEnglish: "Salasakaguna", - dialect: null, - homeDomain: "ebible.org", - title: "Diosbuj Shimi - Mushuj Testamento", - description: "Quichua, Salasaca Highland: Diosbuj Shimi - Mushuj Testamento New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/qxl/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7884, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QXLWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qxl2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Salasaca Highland Quichua NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "qxn", - translationId: "qxnNT", - languageName: "Quechua, Northern Conchucos Ancash", - languageNameInEnglish: "Quechua, Northern Conchucos Ancash", - dialect: null, - homeDomain: "ebible.org", - title: "Se\u00f1or Jesucristopa alli willacuynin", - description: - "New Testament in Quechua, Northern Conchucos Ancash (PE:qxn:Quechua, Northern Conchucos Ancash)", - Redistributable: true, - Copyright: "Copyright \u00a9 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/qxnNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7947, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QXNWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qxn2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Northern Conchucos Ancash Quechua NT", - PODISBN: "978-1-5313-0562-8", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "qxo", - translationId: "qxoNT", - languageName: "Quechua, Southern Conchucos Ancash", - languageNameInEnglish: "Quechua, Southern Conchucos Ancash", - dialect: null, - homeDomain: "ebible.org", - title: "Mushog Testamento", - description: - "New Testament in Quechua, Southern Conchucos Ancash (PE:qxo:Quechua, Southern Conchucos Ancash)", - Redistributable: true, - Copyright: "Copyright \u00a9 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/qxoNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7485, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "QXOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "qxo2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Southern Conchucos Ancash Quechua NT", - PODISBN: "978-1-5313-0563-5", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "rai", - translationId: "rai", - languageName: "Ramoaaina", - languageNameInEnglish: "Ramoaaina", - dialect: null, - homeDomain: "png.bible", - title: "BUK TAABU MATAKIN", - description: "The New Testament in the Ramoaaina Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2006 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-09-20", - publicationURL: "http://png.bible/rai/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7898, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RAITBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "rai2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Ramoaaina NT", - PODISBN: "978-1-5313-0564-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ram", - translationId: "ram", - languageName: null, - languageNameInEnglish: "Canela", - dialect: null, - homeDomain: "ebible.org", - title: "PAHP\u00c3M JARKWA CUPAHTI J\u00d5 K\u00c0HH\u00d4C", - description: "Canela: PAHP\u00c3M JARKWA CUPAHTI J\u00d5 K\u00c0HH\u00d4C (Portions)", - Redistributable: false, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/ram/", - OTbooks: 21, - OTchapters: 155, - OTverses: 839, - NTbooks: 27, - NTchapters: 232, - NTverses: 5589, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RAMWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ram2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Canela Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "reg", - translationId: "reg", - languageName: "Kikara", - languageNameInEnglish: "Kara", - dialect: null, - homeDomain: "ebible.org", - title: "Kara Bible", - description: "The New Testament in the Kara language of Tanzania", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door43 World Missions Community", - UpdateDate: "2020-10-06", - publicationURL: "http://ebible.org/reg/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "REGULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "reg2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kara NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-10-07", - }, - { - languageCode: "rgu", - translationId: "rgu", - languageName: "Rote Rikou", - languageNameInEnglish: "Rikou", - dialect: null, - homeDomain: "alkitab.pw", - title: "Rote Rikou Alkitab", - description: "Genesis and the New Testament in the Rote Rikou language of Indonesia", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Unit Bahasa dan Budaya", - UpdateDate: "2016-06-28", - publicationURL: "http://alkitab.pw/rgu/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1420, - NTbooks: 26, - NTchapters: 239, - NTverses: 6815, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RGUUBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "rgu2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Rote Rikou Bible", - PODISBN: "978-1-5313-0782-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "rkb", - translationId: "rkbNT", - languageName: "Rikbaktsa", - languageNameInEnglish: "Rikbaktsa", - dialect: null, - homeDomain: "ebible.org", - title: "Deus Harere Aibaky Sesus mymyspirikpoko naha", - description: "New Testament in Rikbaktsa (BR:rkb:Rikbaktsa)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/rkbNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7766, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RKBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "rkb2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Rikbaktsa NT", - PODISBN: "978-1-5313-0565-9", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "rmb", - translationId: "rmb", - languageName: "Rembarrnga", - languageNameInEnglish: "Rembarunga", - dialect: null, - homeDomain: "ebible.org", - title: "Rembarrnga Christmas Story", - description: "Part of Luke 2 in the Rembarrnga language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2021 Wycliffe Bible Translators", - UpdateDate: "2021-11-24", - publicationURL: "http://ebible.org/rmb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 1, - NTverses: 5, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RMBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "rmb2021eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Rembarrnga Christmas Story", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-24", - }, - { - languageCode: "rmc", - translationId: "rmc", - languageName: "Romanes", - languageNameInEnglish: "Romanes", - dialect: null, - homeDomain: "ebible.org", - title: "Le Devleskero Lav Andre Roma\u0148i \u010chib 2019", - description: - "Romani, Carpathian: Le Devleskero Lav Andre Roma\u0148i \u010chib 2019 (New Testament+)", - Redistributable: true, - Copyright: - "Copyright \u00a9 2019 The Word for the World International and The Word for the World Slovakia", - UpdateDate: "2019-12-29", - publicationURL: "http://ebible.org/rmc/", - OTbooks: 17, - OTchapters: 413, - OTverses: 11988, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RMCTHE", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "rmc2019eb", - rodCode: 16015.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Romani New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2019-12-29", - }, - { - languageCode: "rmy", - translationId: "rmyArli", - languageName: "Arli", - languageNameInEnglish: "Romani, Vlax", - dialect: "Arli", - homeDomain: "ebible.org", - title: "Luka", - description: "The Gospel According to Luke in the Arli dialect of the Vlax Romani language", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 anonymous", - UpdateDate: "2023-02-06", - publicationURL: "http://ebible.org/rmyArli/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 24, - NTverses: 1149, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RMYARL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "rmyArli2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Arli Luke", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-06", - }, - { - languageCode: "rmy", - translationId: "rmyChergash", - languageName: "Chergash", - languageNameInEnglish: "Romani, Vlax", - dialect: "Chergash", - homeDomain: "ebible.org", - title: "Luka", - description: - "The Gospel According to Luke in the Chergash dialect of the Vlax Romani language", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 Pioneers", - UpdateDate: "2023-02-06", - publicationURL: "http://ebible.org/rmyChergash/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 24, - NTverses: 1151, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RMYCHE", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "rmyChergash2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Chergash Luke", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-06", - }, - { - languageCode: "rmy", - translationId: "rmyGurbet", - languageName: "Gurbet", - languageNameInEnglish: "Romani, Vlax", - dialect: "Gurbet", - homeDomain: "ebible.org", - title: "La\u010dho lafi taro Luka", - description: "The Gospel According to Luke in the Gurbet dialect of Vlax Romani", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 Pioneers", - UpdateDate: "2023-02-06", - publicationURL: "http://ebible.org/rmyGurbet/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 24, - NTverses: 1151, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RMYGUR", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "rmyGurbet2018eb", - rodCode: 22990.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Gurbet Luke", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-06", - }, - { - languageCode: "rol", - translationId: "rol", - languageName: null, - languageNameInEnglish: "Romblomanon", - dialect: null, - homeDomain: "ebible.org", - title: "Bag-o nga Kasugtanan", - description: "Romblomanon: Bag-o nga Kasugtanan (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/rol/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ROLWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "rol2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Romblomanon NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "ron", - translationId: "ron1924", - languageName: null, - languageNameInEnglish: "Romanian", - dialect: "Cyrillic script", - homeDomain: "ebible.org", - title: "\u0411\u0438\u0431\u043b\u0438\u044f \u0414\u0443\u043c\u0438\u0442\u0440\u0443 \u041a\u043e\u0440\u043d\u0438\u043b\u0435\u0441\u043a\u0443 1924 (\u0411\u0414\u041a)", - description: "Romanian Bible by Dumitru Cornilescu 1924 in Cyrillic Script", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-01-13", - publicationURL: "http://ebible.org/ron1924/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 259, - NTverses: 7900, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RON924", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ron1924eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Romanian Bible (Cyrillic)", - PODISBN: null, - script: "Latin", - sourceDate: "2021-07-07", - }, - { - languageCode: "ron", - translationId: "ronBayash", - languageName: "Bayash", - languageNameInEnglish: "Romanian", - dialect: "Bayash", - homeDomain: "ebible.org", - title: "Sfanta Biblie", - description: "Portions of the Holy Bible in the Bayash dialect of the Romanian language", - Redistributable: true, - Copyright: "Copyright \u00a9 ", - UpdateDate: "2022-06-22", - publicationURL: "http://ebible.org/ronBayash/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 24, - NTverses: 1151, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RONBAYASH", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ronBayash2023eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Bayash Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2022-06-22", - }, - { - languageCode: "ron", - translationId: "ronlsb", - languageName: "Rom\u00e2n\u0103", - languageNameInEnglish: "Romanian", - dialect: null, - homeDomain: "ebible.org", - title: "Liber Sfanta Biblie", - description: - "The New Testament in the Romanian Language, using Latin script, Free Holy Bible translation", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-07-12", - publicationURL: "http://ebible.org/ronlsb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RONLSB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ronlsb2022eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Romanian Free Holy Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2022-04-13", - }, - { - languageCode: "ron", - translationId: "ronludari", - languageName: "Ludari", - languageNameInEnglish: "Romanian", - dialect: "Ludari", - homeDomain: "ebible.org", - title: "Luka", - description: - "The Gospel According to Luke in the Ludari Dialect of the Romanian Language, as spoken in Croatia", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Pioneer", - UpdateDate: "2022-12-28", - publicationURL: "http://ebible.org/ronludari/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 24, - NTverses: 1141, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RONLUD", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ronludari12019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ludari Luke", - PODISBN: null, - script: "Latin", - sourceDate: "2022-12-28", - }, - { - languageCode: "roo", - translationId: "roo", - languageName: "Rotokas", - languageNameInEnglish: "Rotokas", - dialect: null, - homeDomain: "png.bible", - title: "AIREPA VAE REO OVOI", - description: "The New Testament in the Rotokas Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1982 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-09-20", - publicationURL: "http://png.bible/roo/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7893, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ROOTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "roo1982eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Rotokas NT", - PODISBN: "978-1-5313-0566-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "rop", - translationId: "rop", - languageName: "Kriol", - languageNameInEnglish: "Kriol", - dialect: null, - homeDomain: "ebible.org", - title: "Holi Baibul", - description: "The Holy Bible in the Kriol language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1990, 2005, 2006, 2015, 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-12-10", - publicationURL: "http://ebible.org/rop/", - OTbooks: 39, - OTchapters: 929, - OTverses: 21647, - NTbooks: 27, - NTchapters: 260, - NTverses: 7661, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ROPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "rop2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kriol Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2022-05-06", - }, - { - languageCode: "row", - translationId: "row", - languageName: "Rote Dela", - languageNameInEnglish: "Dela-Oenale", - dialect: null, - homeDomain: "ebible.org", - title: "Rote Dela Alkitab", - description: "Genesis and the New Testament in the Rote Dela language of Indonesia", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Unit Bahasa dan Budaya", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/row/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1422, - NTbooks: 27, - NTchapters: 260, - NTverses: 7662, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ROWUBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "row2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Rote Dela Bible", - PODISBN: "978-1-5313-0783-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "rro", - translationId: "rro", - languageName: "Waima", - languageNameInEnglish: "Waima", - dialect: null, - homeDomain: "png.bible", - title: "'Abi'uai Apa'uana Mahamahana", - description: "The New Testament in the Waima Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-09-20", - publicationURL: "http://png.bible/rro/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RROPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "rro2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Waima NT", - PODISBN: "978-1-5313-0567-3", - script: "Latin", - sourceDate: "2011-08-11", - }, - { - languageCode: "rub", - translationId: "rub", - languageName: "Gungu", - languageNameInEnglish: "Gungu", - dialect: null, - homeDomain: "ebible.org", - title: "Ndagaanu Gihyaka", - description: "Gungu: Ndagaanu Gihyaka New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2017 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/rub/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7931, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RUBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "rub2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Gungu: Ndagaanu Gihyaka New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "ruf", - translationId: "ruf", - languageName: "Luguru", - languageNameInEnglish: "Luguru", - dialect: null, - homeDomain: "ebible.org", - title: "Laghano Lya Sambi Kwe Iwanu Wose", - description: "The New Testament in Lughuru", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 PBT_TWFTW", - UpdateDate: "2019-12-29", - publicationURL: "http://ebible.org/ruf/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RUFPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ruf2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Luguru NT", - PODISBN: "978-1-5313-0568-0", - script: "Latin", - sourceDate: "2019-12-29", - }, - { - languageCode: "rug", - translationId: "rug", - languageName: "Roviana", - languageNameInEnglish: "Roviana", - dialect: null, - homeDomain: "ebible.org", - title: "Buka Hope", - description: "The Holy Bible in the Roviana language of the Solomon Islands", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-11-06", - publicationURL: "http://ebible.org/rug/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22416, - NTbooks: 27, - NTchapters: 260, - NTverses: 7925, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RUGWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "rug2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Roviana Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "rus", - translationId: "russyn", - languageName: "\u0440\u0443\u0441\u0441\u043a\u0438\u0439", - languageNameInEnglish: "Russian", - dialect: null, - homeDomain: "ebible.org", - title: "\u0421\u0438\u043d\u043e\u0434\u0430\u043b\u044c\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u0432\u043e\u0434", - description: "Synodal Translation of the Holy Bible in Russian", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-11-25", - publicationURL: "http://ebible.org/russyn/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23214, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RUSSYN", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "russyn1876eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Russian Synodal Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2022-11-25", - }, - { - languageCode: "rwo", - translationId: "rwo-karo", - languageName: "Karo (Rawa)", - languageNameInEnglish: "Rawa", - dialect: "Karo", - homeDomain: "png.bible", - title: "Anutlo Sumange Mande Keda", - description: - "The New Testament in the Karo Dialect of the Rawa Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-09-22", - publicationURL: "http://png.bible/rwo-karo/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7630, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RWOKAR", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "rwoK2001eb", - rodCode: 15946.0, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Rawa Karo NT", - PODISBN: "978-1-5313-0570-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "rwo", - translationId: "rwo-rawa", - languageName: "Rawa (Rawa)", - languageNameInEnglish: "Rawa", - dialect: "Rawa", - homeDomain: "png.bible", - title: "ANUTRO MANDE KETA", - description: - "The New Testament in the Rawa Dialect of the Rawa Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1992 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-09-22", - publicationURL: "http://png.bible/rwo-rawa/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7630, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "RWORAW", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "rwo-rawaeb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Rawa NT", - PODISBN: "978-1-5313-0827-8", - script: "Latin", - sourceDate: "2011-08-11", - }, - { - languageCode: "sab", - translationId: "sabNT", - languageName: "Buglere", - languageNameInEnglish: "Buglere", - dialect: null, - homeDomain: "ebible.org", - title: "Chube gerua jagere Jesucristo giti degaba kwian ulita alin: El Nuevo Testamento de nuestro Se\u00f1or Jesucristo en el idioma buglere", - description: "New Testament in Buglere (PM:sab:Buglere)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/sabNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7542, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SABWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sab2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Buglere NT", - PODISBN: "978-1-5313-0572-7", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "san", - translationId: "sanasm", - languageName: "Sanskrit", - languageNameInEnglish: "Sanskrit", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Assamese Script", - description: "New Testament in Sanskrit Language; printed in Assamese Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sanasm/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANASM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sananb2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sanskrit New Testament in Assamese Script", - PODISBN: null, - script: "Bengali", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sanben", - languageName: "Sanskrit", - languageNameInEnglish: "Sanskrit", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Bengali Script", - description: "Sanskrit: Sanskrit Bible (NT) in Bengali Script (New Testament)", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sanben/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANBEN", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sanben2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Mukti", - shortTitle: "Sanskrit NT in Bengali Script", - PODISBN: null, - script: "Bengali", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sanbur", - languageName: "Sanskrit", - languageNameInEnglish: "Sanskrit", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Burmese Script (\u101e\u1010\u103b\u101d\u1031\u1012\u1038\u104a)", - description: "New Testament in Sanskrit Language; printed in Burmese Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sanbur/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANBUR", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sanbur2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Padauk", - shortTitle: "Sanskrit Language NT in Burmese Script", - PODISBN: null, - script: "Code for uncoded script", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sancol", - languageName: "Sanskrit", - languageNameInEnglish: "Sanskrit", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Cologne Script", - description: "New Testament in Sanskrit Language; printed in Cologne Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sancol/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANCOL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sancol2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "New Testament in Sanskrit Language; printed in Cologne Script", - PODISBN: null, - script: "Latin", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sandev", - languageName: "Sanskrit", - languageNameInEnglish: "Sanskrit", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Devanagari Script (\u0938\u0924\u094d\u092f\u0935\u0947\u0926\u0903\u0964)", - description: "New Testament in Sanskrit Language; printed in Devanagari Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sandev/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANDEV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sandev2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sanskrit NT in Devanagari Script", - PODISBN: null, - script: "Devanagari", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sanguj", - languageName: "Sanskrit", - languageNameInEnglish: "Sanskrit", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Gujarati Script", - description: "New Testament in Sanskrit Language; printed in Gujarati Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sanguj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANGUJ", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sanguj2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "FreeSerif", - shortTitle: "Sanskrit NT in Gujarati Script", - PODISBN: null, - script: "Gujarati", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sanhk", - languageName: "Sanskrit", - languageNameInEnglish: "Sanskrit", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Harvard-Kyoto Script", - description: "New Testament in Sanskrit Language; printed in Harvard-Kyoto Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sanhk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANHKS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sanhk2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sanskrit NT in Harvard-Kyoto Script", - PODISBN: null, - script: "Latin", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sanias", - languageName: "Sanskrit", - languageNameInEnglish: "Sanskrit", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in IAST Script (satyaveda\u1e25|)", - description: "New Testament in Sanskrit Language; printed in IAST Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sanias/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANIAS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sanias2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "New Testament in Sanskrit Language; printed in IAST Script", - PODISBN: null, - script: "Latin", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "saniso", - languageName: "Sanskrit", - languageNameInEnglish: "Sanskrit", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in ISO Script (satyav\u0113da\u1e25|)", - description: "New Testament in Sanskrit Language; printed in ISO Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/saniso/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANISO", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "saniso2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sanskrit NT in ISO Script", - PODISBN: null, - script: "Latin", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sanitr", - languageName: "Sanskrit", - languageNameInEnglish: "Sanskrit", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in ITRANS Script", - description: "New Testament in Sanskrit Language; printed in ITRANS Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sanitr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANITR", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sanitr2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sanskrit NT in ITRANS Script", - PODISBN: null, - script: "Latin", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sankan", - languageName: "Sa\u1e43sk\u1e5btam", - languageNameInEnglish: "Sa\u1e43sk\u1e5btam", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Kannada Script", - description: "New Testament in Sanskrit Language; printed in Kannada Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sankan/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANKAN", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sankan2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sanskrit NT in Kannada Script", - PODISBN: null, - script: "Kannada", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sankhm", - languageName: "Sa\u1e43sk\u1e5btam", - languageNameInEnglish: "Sa\u1e43sk\u1e5btam", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Khmer Script", - description: "New Testament in Sanskrit Language; printed in Khmer Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sankhm/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANKHM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sankhm2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sanskrit NT in Khmer Script", - PODISBN: null, - script: "Code for uncoded script", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sanmal", - languageName: "Sa\u1e43sk\u1e5btam", - languageNameInEnglish: "Sa\u1e43sk\u1e5btam", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Malayalam Script (\u0d38\u0d24\u0d4d\u0d2f\u0d35\u0d47\u0d26\u0d03\u0964)", - description: "New Testament in Sanskrit Language; printed in Malayalam Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sanmal/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANMAL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sanmal2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Manjari", - shortTitle: "Sanskrit NT in Malayalam Script", - PODISBN: null, - script: "Malayalam", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sanori", - languageName: "Sa\u1e43sk\u1e5btam", - languageNameInEnglish: "Sa\u1e43sk\u1e5btam", - dialect: null, - homeDomain: "ebible.org", - title: "0 Sanskrit Bible (NT) in Oriya Script (\u0b38\u0b24\u0b4d\u0b5f\u0b71\u0b47\u0b26\u0b03\u0964)", - description: "New Testament in Sanskrit Language; printed in Oriya Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sanori/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANORI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sanori2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "FreeSerif", - shortTitle: "Sanskrit NT in Oriya Script", - PODISBN: null, - script: "Oriya", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sanpun", - languageName: "Sa\u1e43sk\u1e5btam", - languageNameInEnglish: "Sa\u1e43sk\u1e5btam", - dialect: null, - homeDomain: "ebible.org", - title: "0 Sanskrit Bible (NT) in Punjabi Script (\u0a38\u0a24\u0a4d\u0a2f\u0a35\u0a47\u0a26\u0a03\u0964)", - description: "New Testament in Sanskrit Language; printed in Punjabi Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sanpun/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANPUN", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sanpun2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "FreeSerif", - shortTitle: "Sanskrit NT in Punjabi Script", - PODISBN: null, - script: "Code for uncoded script", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sansin", - languageName: "Sa\u1e43sk\u1e5btam", - languageNameInEnglish: "Sa\u1e43sk\u1e5btam", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Sinhala Script (\u0dc3\u0dad\u0dca\u200d\u0dba\u0dc0\u0dda\u0daf\u0d83\u0964)", - description: "New Testament in Sanskrit Language; printed in Sinhala Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sansin/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANSIN", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sansin2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sanskrit NT in Sinhala Script", - PODISBN: null, - script: "Code for uncoded script", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "santam", - languageName: "Sa\u1e43sk\u1e5btam", - languageNameInEnglish: "Sa\u1e43sk\u1e5btam", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Tamil Script", - description: "New Testament in Sanskrit Language; printed in Tamil Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/santam/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANTAM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "santam2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "FreeSerif", - shortTitle: "Sanskrit NT in Tamil Script", - PODISBN: null, - script: "Tamil", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "santel", - languageName: "Sa\u1e43sk\u1e5btam", - languageNameInEnglish: "Sa\u1e43sk\u1e5btam", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Telugu Script (\u0c38\u0c24\u0c4d\u0c2f\u0c35\u0c47\u0c26\u0c03\u0964)", - description: "New Testament in Sanskrit Language; printed in Telugu Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/santel/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANTEL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "santel2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sanskrit NT in Telugu Script", - PODISBN: null, - script: "Telugu", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "santha", - languageName: "Sa\u1e43sk\u1e5btam", - languageNameInEnglish: "Sa\u1e43sk\u1e5btam", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Thai Script (\u0e2a\u0e15\u0e3a\u0e22\u0e40\u0e27\u0e17:\u0e2f)", - description: "New Testament in Sanskrit Language; printed in Thai Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/santha/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANTHA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "santha2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Noto Serif Thai", - shortTitle: "Sanskrit NT in Thai Script", - PODISBN: null, - script: "Thai", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "santib", - languageName: "Sa\u1e43sk\u1e5btam", - languageNameInEnglish: "Sa\u1e43sk\u1e5btam", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Tibetan Script (\u0f66\u0f4f\u0fb1\u0f5d\u0f7a\u0f51\u0f7f\u0f0d)", - description: "New Testament in Sanskrit Language; printed in Tibetan Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/santib/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANTIB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "santib2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sanskrit NT in Tibetan Script", - PODISBN: null, - script: "Tibetan", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sanurd", - languageName: "Sa\u1e43sk\u1e5btam", - languageNameInEnglish: "Sa\u1e43sk\u1e5btam", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Urdu Script (\u0633\u064e\u062a\u0652\u06cc\u064e\u0648\u06cc\u062f\u064e\u062d\u06d4)", - description: "New Testament in Sanskrit Language; printed in Urdu Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sanurd/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANURD", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sanurd2018eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "Akshar Unicode", - shortTitle: "Sanskrit NT in Urdu Script", - PODISBN: null, - script: "Arabic", - sourceDate: "2019-12-30", - }, - { - languageCode: "san", - translationId: "sanvel", - languageName: "Sa\u1e43sk\u1e5btam", - languageNameInEnglish: "Sa\u1e43sk\u1e5btam", - dialect: null, - homeDomain: "ebible.org", - title: "Sanskrit Bible (NT) in Velthuis Script (satyaveda.h|)", - description: "New Testament in Sanskrit Language; printed in Velthuis Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 SanskritBible.in", - UpdateDate: "2020-01-01", - publicationURL: "http://ebible.org/sanvel/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SANVEL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sanvel2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sanskrit NT in Velthuis Script", - PODISBN: null, - script: "Latin", - sourceDate: "2019-12-30", - }, - { - languageCode: "sav", - translationId: "sav", - languageName: null, - languageNameInEnglish: "Saafi-Saafi", - dialect: null, - homeDomain: "ebible.org", - title: "Saafi-Saafi", - description: "Saafi-Saafi: Saafi-Saafi (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/sav/", - OTbooks: 1, - OTchapters: 4, - OTverses: 48, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SAVWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sav2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Saafi-Saafi John", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "sbe", - translationId: "sbe", - languageName: "Saliba", - languageNameInEnglish: "Saliba", - dialect: null, - homeDomain: "png.bible", - title: "Yaubada wasana: Buka Hauhauna tupwana", - description: - "The Message about God: The New Testament in the Saliba language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2007, 2013, 2017, 2021 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-07-22", - publicationURL: "http://png.bible/sbe/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 24, - NTchapters: 217, - NTverses: 6287, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SBEWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sbe2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Saliba NT", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "sbk", - translationId: "sbk", - languageName: "Kisafwa", - languageNameInEnglish: "Safwa", - dialect: null, - homeDomain: "ebible.org", - title: "Biblia Takatifu", - description: "The New Testament in the Safwa language of Tanzania", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door43 Worldwide Mission Community", - UpdateDate: "2020-11-06", - publicationURL: "http://ebible.org/sbk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SBKULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sbk2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Safwa NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-06", - }, - { - languageCode: "sbl", - translationId: "sbl", - languageName: "Botolan Sambal", - languageNameInEnglish: "Botolan Sambal", - dialect: null, - homeDomain: "ebible.org", - title: "Hay halit\u00e1 nin Diyos hay kawkanta boy kawkahalita-an (The New Testament Psalms and Proverbs)", - description: - "Sambal, Botolan: Hay halit\u00e1 nin Diyos hay kawkanta boy kawkahalita-an (The New Testament Psalms and Proverbs) New Testament+", - Redistributable: false, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/sbl/", - OTbooks: 2, - OTchapters: 181, - OTverses: 3366, - NTbooks: 27, - NTchapters: 260, - NTverses: 7903, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SBLWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sbl2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Sambal, Botolan: Hay halit\u00e1 nin Diyos hay kawkanta boy kawkahalita-an (The New Testament Psalms and Proverbs) New Testament+", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "sbs", - translationId: "sbs", - languageName: "Chikuahane", - languageNameInEnglish: "Kuhane", - dialect: null, - homeDomain: "ebible.org", - title: "Kuhane Bible", - description: "The New Testament in the Kuhane language of Botswana and Namibia", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door 43 International Mission Community", - UpdateDate: "2020-08-17", - publicationURL: "http://ebible.org/sbs/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7931, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SBSDOO", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sbs2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kuhane NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-08-17", - }, - { - languageCode: "seh", - translationId: "seh", - languageName: "Sena", - languageNameInEnglish: "Sena", - dialect: null, - homeDomain: "ebible.org", - title: "Sena do Novo Testamento", - description: "The New Testament in the Sena Language of Mozambique", - Redistributable: true, - Copyright: "Copyright \u00a9 1983 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-06-30", - publicationURL: "http://ebible.org/seh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 5, - NTchapters: 47, - NTverses: 1962, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SEHWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "seh1983eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sena NT", - PODISBN: "978-1-5313-0576-5", - script: "Latin", - sourceDate: "2011-10-02", - }, - { - languageCode: "ses", - translationId: "ses", - languageName: "Songhai de Gao", - languageNameInEnglish: "Songhai de Gao", - dialect: null, - homeDomain: "ebible.org", - title: "Songhai de Gao", - description: "Songhay, Koyraboro Senni: Songhai de Gao (Bible)", - Redistributable: false, - Copyright: - "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc. and BFP Velberter Mission", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/ses/", - OTbooks: 13, - OTchapters: 346, - OTverses: 10527, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SESWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ses2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Songhai de Gao Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "set", - translationId: "set", - languageName: null, - languageNameInEnglish: "Sentani", - dialect: null, - homeDomain: "ebible.org", - title: "Allahle a neme heteungekoke homofae", - description: "The Sentani New Testament (Indonesia) for DBL", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/set/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7836, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SETWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "set2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sentani NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "sey", - translationId: "seyNT", - languageName: "Secoya", - languageNameInEnglish: "Secoya", - dialect: null, - homeDomain: "ebible.org", - title: "Maija'qu\u00eb Huaj\u00eb Ca N\u00ebose'e", - description: "New Testament in Secoya (EC:sey:Secoya)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/seyNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7914, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SEYWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sey2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Secoya NT", - PODISBN: "978-1-5313-0577-2", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "sgb", - translationId: "sgb", - languageName: "Mag-antsi Ayta", - languageNameInEnglish: "Ayta, Mag-antsi", - dialect: null, - homeDomain: "ebible.org", - title: "Ya habi ni apo namalyari: Bayon tsipan - Ayta Mag-antsi", - description: "New Testament in Ayta, Mag-antsi", - Redistributable: true, - Copyright: "Copyright \u00a9 2006 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/sgb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7941, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SGBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sgb2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Mag-antsi Ayta NT", - PODISBN: "978-1-5313-0578-9", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "sgz", - translationId: "sgz", - languageName: "Sursurunga", - languageNameInEnglish: "Sursurunga", - dialect: null, - homeDomain: "png.bible", - title: "Hutngin kamkabat si K\u00e1l\u00e1u", - description: "The New Testament in the Sursurunga Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-09-09", - publicationURL: "http://png.bible/sgz/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7806, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SGZWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sgz2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Sursurunga NT", - PODISBN: "978-1-5313-0579-6", - script: "Latin", - sourceDate: "2017-09-09", - }, - { - languageCode: "shj", - translationId: "shj", - languageName: "Shatt", - languageNameInEnglish: "Shatt", - dialect: null, - homeDomain: "ebible.org", - title: "Sorunu Kal\u00e4g na Ik\u00e4 Caning", - description: "Caning Bible Translation", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://ebible.org/shj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 24, - NTverses: 1149, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SHJPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "shj2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Caning Bible Translation", - PODISBN: null, - script: "Latin", - sourceDate: "2019-12-30", - }, - { - languageCode: "shp", - translationId: "shpNTpo", - languageName: "Shipibo-Conibo", - languageNameInEnglish: "Shipibo-Conibo", - dialect: null, - homeDomain: "ebible.org", - title: "Diossen joi jat\u00edxonbi onanti joi", - description: - "New Testament and Shorter Old Testament in Shipibo-Conibo (PE:shp:Shipibo-Conibo)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/shpNTpo/", - OTbooks: 6, - OTchapters: 68, - OTverses: 1850, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SHPTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "shp2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Shipibo-Conibo Bible", - PODISBN: "978-1-5313-0580-2", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "sig", - translationId: "sig", - languageName: null, - languageNameInEnglish: "Paasaal", - dialect: null, - homeDomain: "ebible.org", - title: "W\u0269\u0269s\u0269 Ny\u028b\u028bfal\u0269\u0269 Te\u014b", - description: "New Testament in Sisaala-Paasaal (Ghana)", - Redistributable: false, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/sig/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7902, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SIGWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sig2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Paasaal NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "sil", - translationId: "sil", - languageName: null, - languageNameInEnglish: "Sisaala, Tumulung", - dialect: null, - homeDomain: "ebible.org", - title: "Yesu Kiristito Wu-Z\u0254\u014b\u014b\u0254\u0254 (Ghana)", - description: "Sisaala-Tumulun\u014b NT Ghana", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/sil/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7912, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SILWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sil2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sisaala-Tumulun\u014b NT Ghana", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "sim", - translationId: "sim", - languageName: "Mende", - languageNameInEnglish: "Mende", - dialect: null, - homeDomain: "png.bible", - title: "Mashi Avui Wasilakahi", - description: "The New Testament in the Mende Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 The Bible Society of Papua New Guinea", - UpdateDate: "2012-01-20", - publicationURL: "http://png.bible/sim/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7797, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SIMPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sim2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Mende NT", - PODISBN: "978-1-5313-0581-9", - script: "Latin", - sourceDate: "2014-05-15", - }, - { - languageCode: "sja", - translationId: "sjaNT", - languageName: "Epena", - languageNameInEnglish: "Epena", - dialect: null, - homeDomain: "ebible.org", - title: "Tachi ak'\u00f5re pedee", - description: "New Testament in Epena (CO:sja:Epena)", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-23", - publicationURL: "http://ebible.org/sjaNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SJAWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sja2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Epena NT", - PODISBN: "978-1-5313-0582-6", - script: "Latin", - sourceDate: "2014-04-24", - }, - { - languageCode: "sll", - translationId: "sll", - languageName: "Salt-Yui", - languageNameInEnglish: "Salt-Yui", - dialect: null, - homeDomain: "png.bible", - title: "Salt-Yui New Testament", - description: "The New Testament in the Salt-Yui Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1978 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-20", - publicationURL: "http://png.bible/sll/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7876, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SLLTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sll1978eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Salt-Yui NT", - PODISBN: "978-1-5313-0583-3", - script: "Latin", - sourceDate: "2011-08-13", - }, - { - languageCode: "slm", - translationId: "slm", - languageName: null, - languageNameInEnglish: "Sama, Pangutaran", - dialect: null, - homeDomain: "ebible.org", - title: "Kitab Injil", - description: "Sama, Pangutaran: Kitab Injil (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 1994 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/slm/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7909, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SLMWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "slm1994eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Pangutaran Sama NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "slu", - translationId: "slu", - languageName: null, - languageNameInEnglish: "Selaru", - dialect: null, - homeDomain: "ebible.org", - title: "Maslyarw", - description: "Selaru: Maslyarw (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/slu/", - OTbooks: 2, - OTchapters: 54, - OTverses: 1552, - NTbooks: 16, - NTchapters: 106, - NTverses: 3281, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SLUWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "slu2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Selaru NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "smk", - translationId: "smkNT", - languageName: "Bolinao", - languageNameInEnglish: "Bolinao", - dialect: null, - homeDomain: "ebible.org", - title: "Si Biblia", - description: "New Testament in Bolinao (RP:smk:Bolinao)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/smkNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7901, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SMKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "smk2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Bolinao NT", - PODISBN: "978-1-5313-0584-0", - script: "Latin", - sourceDate: "2014-04-23", - }, - { - languageCode: "sml", - translationId: "sml", - languageName: "Central Sama", - languageNameInEnglish: "Central Sama", - dialect: null, - homeDomain: "ebible.org", - title: "Central Sinama 2008 NT", - description: "Central Sama: New Testament & Old Testament portions", - Redistributable: false, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/sml/", - OTbooks: 8, - OTchapters: 189, - OTverses: 4796, - NTbooks: 27, - NTchapters: 260, - NTverses: 7903, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SMLWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sml2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Central Sama: New Testament & Old Testament portions", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "snc", - translationId: "snc", - languageName: "Sinaugoro", - languageNameInEnglish: "Sinaugoro", - dialect: null, - homeDomain: "png.bible", - title: "GINITA\u1e20O VARI\u1e20UNA", - description: "The New Testament in the Sinaugoro Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1995 The Bible Society of Papua New Guinea", - UpdateDate: "2012-01-20", - publicationURL: "http://png.bible/snc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7950, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SNCPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "snc1995eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Sinaugoro NT", - PODISBN: "978-1-5313-0586-4", - script: "Latin", - sourceDate: "2009-10-22", - }, - { - languageCode: "snf", - translationId: "snf", - languageName: null, - languageNameInEnglish: "Noon", - dialect: null, - homeDomain: "ebible.org", - title: "Hewhewii win\u00e9w\u00ed'wii Kooh Kifiiliimunkii ki'askii", - description: - "Noon: Hewhewii win\u00e9w\u00ed'wii Kooh Kifiiliimunkii ki'askii New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/snf/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7937, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SNFWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "snf2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Noon: Hewhewii win\u00e9w\u00ed'wii Kooh Kifiiliimunkii ki'askii New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-06", - }, - { - languageCode: "snn", - translationId: "snnNT", - languageName: "Siona", - languageNameInEnglish: "Siona", - dialect: null, - homeDomain: "ebible.org", - title: "Riusu cocabera: mai \u00ebjagu\u00eb Jesucristo ba'iyete toyani jo'case'e'\u00eb", - description: "New Testament in Siona (CO:snn:Siona)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/snnNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7902, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SNNWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "snn2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Siona NT", - PODISBN: "978-1-5313-0587-1", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "snp", - translationId: "snp", - languageName: "Siane", - languageNameInEnglish: "Siane", - dialect: "Komongu", - homeDomain: "png.bible", - title: "Gotiki olu kutifi ledami ka kofawa", - description: - "The New Testament in the Komongu dialect of the Siane Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1991 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-24", - publicationURL: "http://png.bible/snp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7854, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SNPKOM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "snpK1991eb", - rodCode: 20080.0, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Siane Komongu NT", - PODISBN: "978-1-5313-0588-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "snp", - translationId: "snp-lambau", - languageName: "Siane-Lambau", - languageNameInEnglish: "Siane", - dialect: "Lambau", - homeDomain: "png.bible", - title: "Goti Ukuwala Hala", - description: - "The New Testament in the Lambau Dialect of the Siane Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1997 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-19", - publicationURL: "http://png.bible/snp-lambau/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7854, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SNPLAM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "snpL1997eb", - rodCode: 16669.0, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Siane Lambau NT", - PODISBN: "978-1-5313-0589-5", - script: "Latin", - sourceDate: "2011-08-15", - }, - { - languageCode: "snw", - translationId: "snw", - languageName: null, - languageNameInEnglish: "Selee", - dialect: null, - homeDomain: "ebible.org", - title: "Yaa Kanya Ninii F\u0254le S\u025bl\u025b\u025b", - description: "Selee: Yaa Kanya Ninii F\u0254le S\u025bl\u025b\u025b New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/snw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7922, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SNWWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "snw2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Selee NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "snx", - translationId: "snx", - languageName: "Songumsam", - languageNameInEnglish: "Sam", - dialect: null, - homeDomain: "png.bible", - title: "Xotei ido Sam Mak ana Inggrengalox", - description: "Mark in the Sam language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-08-18", - publicationURL: "http://png.bible/snx/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 16, - NTverses: 663, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SNXWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "snx2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sam Mark", - PODISBN: null, - script: "Latin", - sourceDate: "2020-02-07", - }, - { - languageCode: "sny", - translationId: "sny", - languageName: "Saniyo-Hiyewe", - languageNameInEnglish: "Saniyo-Hiyewe", - dialect: null, - homeDomain: "png.bible", - title: "Owane Sitewi lo Peri Te\ua78ce Naneiyei He\ua78ci", - description: "The New Testament in the Saniyo-Hiyewe Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/sny/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7850, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SNYTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sny2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Saniyo-Hiyewe NT", - PODISBN: "978-1-5313-0590-1", - script: "Latin", - sourceDate: "2012-10-24", - }, - { - languageCode: "som", - translationId: "som", - languageName: "Somali", - languageNameInEnglish: "Somali", - dialect: null, - homeDomain: "ebible.org", - title: "Kitaabka Quduuska Ah", - description: "The Holy Bible in the Somali language of Somalia, Adan Jim'ale Version", - Redistributable: true, - Copyright: "Copyright \u00a9 1979, 2008 Society for International Ministries -- Kenya", - UpdateDate: "2017-08-31", - publicationURL: "http://ebible.org/som/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SOMSIM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "som2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Somali Bible", - PODISBN: "978-1-5313-0591-8", - script: "Latin", - sourceDate: "2017-09-01", - }, - { - languageCode: "soq", - translationId: "soq", - languageName: "Kanasi", - languageNameInEnglish: "Kanasi", - dialect: null, - homeDomain: "png.bible", - title: "Ina Sanaa Gagalowa", - description: "The New Testament in the Kanasi Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1996 Wycliffe Bible Translators", - UpdateDate: "2012-01-20", - publicationURL: "http://png.bible/soq/", - OTbooks: 28, - OTchapters: 228, - OTverses: 2847, - NTbooks: 27, - NTchapters: 260, - NTverses: 7713, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SOQWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "soq1996eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Kanasi NT", - PODISBN: "978-1-5313-0592-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "sor", - translationId: "sor", - languageName: null, - languageNameInEnglish: "Somrai", - dialect: null, - homeDomain: "ebible.org", - title: "Magtubu d\u0259n\u0259\u0302 M\u00e3r\u0330\u0129", - description: "Somrai: Magtubu d\u0259n\u0259\u0302 M\u00e3r\u0330\u0129 (New Testament+)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/sor/", - OTbooks: 2, - OTchapters: 8, - OTverses: 133, - NTbooks: 3, - NTchapters: 27, - NTverses: 931, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SORWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sor2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Somrai Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-03", - }, - { - languageCode: "soy", - translationId: "soy", - languageName: "Sola", - languageNameInEnglish: "Miyobe", - dialect: null, - homeDomain: "ebible.org", - title: "Nkomine Fal Rit\u025bl\u025b\u0301", - description: "Sola New Testament", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 UEEB/SIM au Benin", - UpdateDate: "2014-10-02", - publicationURL: "http://ebible.org/soy/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7946, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SOYSIM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "soy2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sola NT", - PODISBN: "978-1-5313-0593-2", - script: "Latin", - sourceDate: "2014-10-03", - }, - { - languageCode: "spa", - translationId: "spabes", - languageName: "Espa\u00f1ol", - languageNameInEnglish: "Spanish", - dialect: "Latin America/Mexico", - homeDomain: "ebible.org", - title: "La Biblia en Espa\u00f1ol Sencillo", - description: "The Holy Bible in Simple Spanish", - Redistributable: true, - Copyright: "Copyright \u00a9 2018, 2019 AudioBiblia.org /Irma Flores", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/spabes/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23144, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SPNBES", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "spaBES2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "La Biblia en Espa\u00f1ol Sencillo", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "spa", - translationId: "spablm", - languageName: "Espa\u00f1ol", - languageNameInEnglish: "Spanish", - dialect: "Espa\u00f1a", - homeDomain: "ebible.org", - title: "Santa Biblia libre para el mundo", - description: "The Holy Bible in Spanish, Santa Biblia libre para el mundo translation", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/spablm/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 15, - DCchapters: 213, - DCverses: 6955, - FCBHID: "SPABLM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "spablm2022eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Spanish Free Bible for the World", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "spa", - translationId: "spaLBLA", - languageName: "Espa\u00f1ol", - languageNameInEnglish: "Spanish", - dialect: null, - homeDomain: "ebible.org", - title: "La Biblia de las Am\u00e9ricas", - description: "The Holy Bible in Spanish, La Biblia de las Americas translation", - Redistributable: false, - Copyright: "Copyright \u00a9 1986, 1995, 1997 The Lockman Foundation", - UpdateDate: "2014-07-31", - publicationURL: "http://ebible.org/spaLBLA/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SPNBLA", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "spaLBLA1997eb", - rodCode: 52.0, - textDirection: "ltr", - downloadable: false, - font: "Gentium Plus", - shortTitle: "Spanish LBLA", - PODISBN: "978-1-5313-0810-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "spa", - translationId: "spanblh", - languageName: "Espa\u00f1ol", - languageNameInEnglish: "Spanish", - dialect: null, - homeDomain: "ebible.org", - title: "Nueva Biblia Latinoamericana de Hoy", - description: "The Holy Bible, Nueva Biblia Latinoamericana de Hoy Spanish translation", - Redistributable: false, - Copyright: "Copyright \u00a9 2005 The Lockman Foundation", - UpdateDate: "2014-10-09", - publicationURL: "http://ebible.org/spanblh/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SPNNBL", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "spanblh2005eb", - rodCode: 52.0, - textDirection: "ltr", - downloadable: false, - font: "Gentium Plus", - shortTitle: "Spanish NBLH", - PODISBN: "978-1-5313-0811-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "spa", - translationId: "spapddpt", - languageName: "Espa\u00f1ol", - languageNameInEnglish: "Spanish", - dialect: "South America", - homeDomain: "ebible.org", - title: "Palabra de Dios para ti", - description: "The Holy Bible in Spanish, Palabra de Dios para ti translation", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Asociacion Biblica Latinoamericana", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/spapddpt/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7936, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SPAPDT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "spapddpt2022eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Spanish Bible (God's Word for You)", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "spa", - translationId: "spaRV1909", - languageName: "Espa\u00f1ol", - languageNameInEnglish: "Spanish", - dialect: "Castellano 1909", - homeDomain: "ebible.org", - title: "Santa Biblia \u2014 Reina Valera 1909", - description: "The Holy Bible in Spanish, Reina Valera translation of 1909", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2013-12-13", - publicationURL: "http://ebible.org/spaRV1909/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SPNR09", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "spaRV1909eb", - rodCode: 4558.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Reina Valera 1909", - PODISBN: "978-1-5313-0594-9", - script: "Latin", - sourceDate: "2015-08-10", - }, - { - languageCode: "spa", - translationId: "sparvg", - languageName: "Espa\u00f1ol", - languageNameInEnglish: "Spanish", - dialect: null, - homeDomain: "ebible.org", - title: "Santa Biblia Reina Valera G\u00f3mez", - description: "The Holy Bible in Spanish, Reina Valera G\u00f3mez translation", - Redistributable: true, - Copyright: "Copyright \u00a9 2004, 2010 Dr. Humberto G\u00f3mez Caballero", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/sparvg/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SPARVG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sparvg2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "RVG Spanish Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "spa", - translationId: "spavbl", - languageName: "Espa\u00f1ol", - languageNameInEnglish: "Spanish", - dialect: null, - homeDomain: "ebible.org", - title: "Versi\u00f3n Biblia Libre", - description: "The Holy Bible in Spanish, Free Bible Version", - Redistributable: true, - Copyright: "Copyright \u00a9 2018-2020 Jonathan Gallagher y Shelly Barrios de Avila", - UpdateDate: "2023-02-03", - publicationURL: "http://ebible.org/spavbl/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SPNVBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "spavbl2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Spanish Free Bible Version", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-03", - }, - { - languageCode: "spl", - translationId: "spl", - languageName: "Selepet", - languageNameInEnglish: "Selepet", - dialect: null, - homeDomain: "png.bible", - title: "Yeshu\u00e2t Den Pat \u00c2lep\u014be", - description: "The New Testament in the Selepet Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1986 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/spl/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7083, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SPLPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "spl1986eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Selepet NT", - PODISBN: "978-1-5313-0595-6", - script: "Latin", - sourceDate: "2011-08-15", - }, - { - languageCode: "spm", - translationId: "spm", - languageName: "Akukem", - languageNameInEnglish: "Akukem", - dialect: null, - homeDomain: "png.bible", - title: "Mak Os\u0268risira Akaman Aghuu\u014b ko Iesus\u0268m Mb\u0268sevisir Gumasi", - description: "Published Mark & Acts", - Redistributable: true, - Copyright: - "Copyright \u00a9 2006, 2010 Bible Society of Papua New Guinea and Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://png.bible/spm/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 2, - NTchapters: 44, - NTverses: 1622, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SPMPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "spm2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Published Mark & Acts", - PODISBN: null, - script: "Latin", - sourceDate: "2018-02-07", - }, - { - languageCode: "spp", - translationId: "spp", - languageName: "Supyire S\u00e9noufo", - languageNameInEnglish: "S\u00e9noufo, Supyire", - dialect: null, - homeDomain: "ebible.org", - title: "KILE JWUMPE SEM\u0190\u014aI JWUMPE NINTANMPE", - description: "New Testament in Senoufo, Supyire Farakala; spp", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/spp/", - OTbooks: 2, - OTchapters: 54, - OTverses: 1589, - NTbooks: 27, - NTchapters: 260, - NTverses: 7905, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SPPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "spp2008eb", - rodCode: 3056.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Supyire S\u00e9noufo NT", - PODISBN: "978-1-5313-0596-3", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "sps", - translationId: "sps", - languageName: "Saposa", - languageNameInEnglish: "Saposa", - dialect: null, - homeDomain: "png.bible", - title: "U VURUNGAN ROF FOUN TEN GOV NANE JISAS KRAIS", - description: - "Genesis, Joshua, and The New Testament in the Saposa Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-02-08", - publicationURL: "http://png.bible/sps/", - OTbooks: 2, - OTchapters: 12, - OTverses: 269, - NTbooks: 27, - NTchapters: 260, - NTverses: 7919, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SPSTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sps2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Saposa NT", - PODISBN: "978-1-5313-0597-0", - script: "Latin", - sourceDate: "2013-02-14", - }, - { - languageCode: "spy", - translationId: "spyNT", - languageName: "Sabaot", - languageNameInEnglish: "Sabaot", - dialect: null, - homeDomain: "ebible.org", - title: "Biibilya Ny\u0113\u0113 Tiliil", - description: "New Testament in Sabaot (KE:spy:Sabaot)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/spyNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7844, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SPYWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "spy2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Sabaot NT", - PODISBN: "978-1-5313-0598-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "sri", - translationId: "sri", - languageName: "Siriano", - languageNameInEnglish: "Siriano", - dialect: null, - homeDomain: "ebible.org", - title: "Mar\u0129p\u0289ya Kerere Wereri Turi", - description: "New Testament in Siriano", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/sri/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7840, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SRIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sri2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Siriano NT", - PODISBN: "978-1-5313-0599-4", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "srm", - translationId: "srmNT", - languageName: "Saramaccan", - languageNameInEnglish: "Saramaccan", - dialect: null, - homeDomain: "ebible.org", - title: "Gadu Buku", - description: "New Testament in Saramaccan (NS:srm:Saramaccan)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/srmNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7759, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SRMWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "srm2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Saramaccan NT", - PODISBN: "978-1-5313-0600-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "srn", - translationId: "srnNT", - languageName: "Sranan", - languageNameInEnglish: "Sranan", - dialect: null, - homeDomain: "ebible.org", - title: "Nyun Testamenti", - description: "New Testament in Sranan (NS:srn:Sranan)", - Redistributable: true, - Copyright: "Copyright \u00a9 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/srnNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7941, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SRNBSS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "srn2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sranan NT", - PODISBN: "978-1-5313-0601-4", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "srp", - translationId: "srp1865", - languageName: "srpski jezik", - languageNameInEnglish: "Serbian", - dialect: null, - homeDomain: "ebible.org", - title: "Sveta Biblija", - description: - "The Holy Bible in Serbian (Latin alphabet), translated by Vuk Karad\u017ei\u0107 and \u0110ura Dani\u010di\u0107", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2018-11-11", - publicationURL: "http://ebible.org/srp1865/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23147, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SRP865", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "srp1865eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Serbian Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "srq", - translationId: "srqNT", - languageName: "Sirion\u00f3", - languageNameInEnglish: "Sirion\u00f3", - dialect: null, - homeDomain: "ebible.org", - title: "Mbia Che\u1ebd", - description: "New Testament in Sirion\u00f3 (BL:srq:Sirion\u00f3)", - Redistributable: true, - Copyright: "Copyright \u00a9 1977 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/srqNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7884, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SRIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "srqNT1977eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sirion\u00f3 NT", - PODISBN: "978-1-5313-0602-1", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "ssd", - translationId: "ssd", - languageName: "Siroi", - languageNameInEnglish: "Siroi", - dialect: null, - homeDomain: "png.bible", - title: "KUATE TUKU PASA", - description: - "Portions of the Old Testament and The New Testament in the Siroi Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1975, 1999 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-02-07", - publicationURL: "http://png.bible/ssd/", - OTbooks: 6, - OTchapters: 114, - OTverses: 3101, - NTbooks: 27, - NTchapters: 260, - NTverses: 7818, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SSDWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ssd1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Siroi Bible", - PODISBN: "978-1-5313-0603-8", - script: "Latin", - sourceDate: "2013-02-08", - }, - { - languageCode: "ssg", - translationId: "ssg", - languageName: "Seimat", - languageNameInEnglish: "Seimat", - dialect: null, - homeDomain: "png.bible", - title: "KAKAI HAEU", - description: - "The New Testament in the Seimat language, The Ninigo Islands, Manus Province, Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-10-14", - publicationURL: "http://png.bible/ssg/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7938, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SSGWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ssg2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Seimat NT", - PODISBN: "978-1-5313-0604-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ssx", - translationId: "ssx", - languageName: "Sembeleke", - languageNameInEnglish: "Sembeleke", - dialect: null, - homeDomain: "png.bible", - title: "Sembeleke", - description: "The New Testament and Genesis in the Sembeleke Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1991 The Bible Society of Papua New Guinea", - UpdateDate: "2013-10-15", - publicationURL: "http://png.bible/ssx/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1515, - NTbooks: 27, - NTchapters: 260, - NTverses: 7903, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SSXPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ssx1991eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Sembeleke Bible", - PODISBN: "978-1-5313-0606-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "stb", - translationId: "stb", - languageName: null, - languageNameInEnglish: "Subanen, Northern", - dialect: null, - homeDomain: "ebible.org", - title: "Sug Begu Ne Kalegenan", - description: "New Testament in Northern Subanen", - Redistributable: false, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/stb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7900, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "STBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "stb2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Northern Subanen NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "stp", - translationId: "stpNT", - languageName: "Tepehuan, Southeastern", - languageNameInEnglish: "Tepehuan, Southeastern", - dialect: null, - homeDomain: "ebible.org", - title: "Gu \u00f1io'ki'\u00f1 gu Dios na bhaan tu a'ga guch xoi'kam", - description: "New Testament in Tepehuan, Southeastern (MX:stp:Tepehuan, Southeastern)", - Redistributable: true, - Copyright: "Copyright \u00a9 2007 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-05-05", - publicationURL: "http://ebible.org/stpNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7923, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "STPTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "stpNT2007eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Southeastern Tepehuan NT", - PODISBN: "978-1-5313-0607-6", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "sua", - translationId: "sua", - languageName: "Sulka", - languageNameInEnglish: "Sulka", - dialect: null, - homeDomain: "png.bible", - title: "E Nut Ka Meer Mang Ka Mokpom To A Gunngar", - description: "The New Testament in the Sulka Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1997 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-24", - publicationURL: "http://png.bible/sua/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7599, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SUKTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sua1997eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sulka NT", - PODISBN: "978-1-5313-0608-3", - script: "Latin", - sourceDate: "2014-05-16", - }, - { - languageCode: "suc", - translationId: "suc", - languageName: "Subanon, Western", - languageNameInEnglish: "Subanon, Western", - dialect: null, - homeDomain: "ebible.org", - title: "Kitab Bogu Pasad talu' nog Mikpongon", - description: "Subanon, Western: Kitab Bogu Pasad talu' nog Mikpongon New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1996 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/suc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7936, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SUCWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "suc1996eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Western Subanon NT", - PODISBN: null, - script: "Arabic", - sourceDate: "2020-12-02", - }, - { - languageCode: "sue", - translationId: "sue", - languageName: "Suena", - languageNameInEnglish: "Suena", - dialect: null, - homeDomain: "png.bible", - title: "TUA YESU KRISTORA OZIGA EWANANA", - description: "The New Testament in the Suena Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1978, 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/sue/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7900, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SUEWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sue2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Suena NT", - PODISBN: "978-1-5313-0609-0", - script: "Latin", - sourceDate: "2011-07-08", - }, - { - languageCode: "sus", - translationId: "sus", - languageName: "Susu", - languageNameInEnglish: "Susu", - dialect: null, - homeDomain: "ebible.org", - title: "Soso Kitaabuie: Tawureta, Yabura, Inyila", - description: - "The Holy Bible in the Susu language of Guinea (Soso Kitaabuie: Tawureta, Yabura, Inyila Bible)", - Redistributable: true, - Copyright: - "Copyright \u00a9 2015 Mission Evang\u00e9lique Reform\u00e9e N\u00e9erlandaise et les Traducteurs Pionniers de la Bible", - UpdateDate: "2020-11-11", - publicationURL: "http://ebible.org/sus/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23209, - NTbooks: 27, - NTchapters: 260, - NTverses: 7944, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SUSPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "suslat2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Susu Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "sus", - translationId: "susa", - languageName: "Susu", - languageNameInEnglish: "Susu", - dialect: null, - homeDomain: "ebible.org", - title: "\u0633\u064c\u0633\u064c \u0643\u0650\u062a\u064e\u0627\u0628\u064f\u064a\u064a\u064d\u061b \u062a\u064e\u0648\u064f\u0631\u064d\u062a\u064e\u060c \u064a\u064e\u0628\u064f\u0631\u064e\u060c \u0639\u0650\u0646\u064a\u0650\u0644\u064e", - description: "The Holy Bible in the Susu language of Guinea, using Arabic script", - Redistributable: true, - Copyright: - "Copyright \u00a9 2015 Mission Evang\u00e9lique Reform\u00e9e N\u00e9erlandaise et les Traducteurs Pionniers de la Bible", - UpdateDate: "2020-11-11", - publicationURL: "http://ebible.org/susa/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23209, - NTbooks: 27, - NTchapters: 260, - NTverses: 7944, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SUSAPB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "susarb2015eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "FreeSerif", - shortTitle: "Susu Bible (Arabic script)", - PODISBN: null, - script: "Arabic", - sourceDate: "2020-11-12", - }, - { - languageCode: "suz", - translationId: "suzBl", - languageName: "Sunwar", - languageNameInEnglish: "Sunwar", - dialect: null, - homeDomain: "ebible.org", - title: "\u092a\u0930\u092e\u092a\u094d\u0930\u092d\u0941 \u092f\u093e\u0935\u0947 \u0906 \u0932\u094b\u0935\u093c", - description: "Bible in Sunwar (NP:suz:Sunwar)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/suzBl/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SUZWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "suz2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Annapurna SIL", - shortTitle: "Sunwar Bible", - PODISBN: "978-1-5313-0611-3", - script: "Devanagari", - sourceDate: "2014-05-01", - }, - { - languageCode: "swe", - translationId: "swe", - languageName: "Swedish", - languageNameInEnglish: "Swedish", - dialect: null, - homeDomain: "ebible.org", - title: "Svenska K\u00e4rnbibeln - en expanderad \u00f6vers\u00e4ttning", - description: - "Swedish: Svenska K\u00e4rnbibeln - en expanderad \u00f6vers\u00e4ttning (New Testament)", - Redistributable: true, - Copyright: "Copyright \u00a9 2017-2020 Svenska K\u00e4rnbibeln", - UpdateDate: "2021-02-16", - publicationURL: "http://ebible.org/swe/", - OTbooks: 5, - OTchapters: 202, - OTverses: 4038, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SWESVK", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "swe2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Swedish NT+", - PODISBN: null, - script: "Latin", - sourceDate: "2021-02-17", - }, - { - languageCode: "swh", - translationId: "swh1850", - languageName: "Kiswahili", - languageNameInEnglish: "Swahili", - dialect: "Kimvita", - homeDomain: "ebible.org", - title: "Biblia Takatifu", - description: - "Portions of the New Testament in the Swahili Language of Kenya, Mozambique, Somalia, and Tanzania, translation by Dr. Johann Ludvig Krapf completed in 1850", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2014-08-25", - publicationURL: "http://ebible.org/swh1850/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 26, - NTchapters: 256, - NTverses: 7853, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SWASWA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "swh1850eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Swahili Bible", - PODISBN: "978-1-5313-0612-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "swh", - translationId: "swhonen", - languageName: "Kiswahili", - languageNameInEnglish: "Kiswahili", - dialect: null, - homeDomain: "ebible.org", - title: "Biblica\u00ae Toleo Wazi Neno: Bibilia Takatifu\u2122", - description: "Swahili: Biblica\u00ae Toleo Wazi Neno: Bibilia Takatifu\u2122 (Bible)", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 Biblica, Inc.", - UpdateDate: "2021-04-12", - publicationURL: "http://ebible.org/swhonen/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SWHBIB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "swhonen2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kiswahili Contemporary Version", - PODISBN: null, - script: "Latin", - sourceDate: "2021-04-13", - }, - { - languageCode: "swh", - translationId: "swhulb", - languageName: "Kiswahili", - languageNameInEnglish: "Swahili", - dialect: null, - homeDomain: "ebible.org", - title: "Biblia Takatifu", - description: "The Holy Bible in the Swahili language, Unlocked Literal Bible version", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Door43 World Missions Community", - UpdateDate: "2021-03-16", - publicationURL: "http://ebible.org/swhulb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23143, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SWHULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "swhulb2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Swahili Unlocked Literal Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-06-11", - }, - { - languageCode: "swp", - translationId: "swp", - languageName: "Suau", - languageNameInEnglish: "Suau", - dialect: null, - homeDomain: "png.bible", - title: "RIBA HARIHARIUNA", - description: - "The New Testament and portions of the Old Testament in the Suau language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1998 The Bible Society of Papua New Guinea", - UpdateDate: "2013-08-19", - publicationURL: "http://png.bible/swp/", - OTbooks: 4, - OTchapters: 158, - OTverses: 3546, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SWPPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "swp1998eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Suau Bible", - PODISBN: "978-1-5313-0613-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "sxb", - translationId: "sxbNT", - languageName: "Suba", - languageNameInEnglish: "Suba", - dialect: null, - homeDomain: "ebible.org", - title: "Endagano Empia", - description: "New Testament in Suba (KE:sxb:Suba)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/sxbNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7942, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SXBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "sxb2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Suba NT", - PODISBN: "978-1-5313-0614-4", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "syb", - translationId: "syb", - languageName: "Central Subanen", - languageNameInEnglish: "Central Subanen", - dialect: null, - homeDomain: "ebible.org", - title: "Kig Begu Pasad: Ki talu' nug megbebaya' (Bagong Tipan: Maayong balita alang kanimo)", - description: - "Subanen, Central: Kig Begu Pasad: Ki talu' nug megbebaya' (Bagong Tipan: Maayong balita alang kanimo) New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1993 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-16", - publicationURL: "http://ebible.org/syb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7936, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SYBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "syb1993eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Subanen, Central: Kig Begu Pasad: Ki talu' nug megbebaya' (Bagong Tipan: Maayong balita alang kanimo) New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-14", - }, - { - languageCode: "syl", - translationId: "syl", - languageName: null, - languageNameInEnglish: "Sylheti", - dialect: null, - homeDomain: "ebible.org", - title: "Sylheti New Testament (Bengali)", - description: "Sylheti: Sylheti New Testament (Bengali) New Testament+", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Ahle Kitab Society", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/syl/", - OTbooks: 3, - OTchapters: 48, - OTverses: 1309, - NTbooks: 27, - NTchapters: 260, - NTverses: 7909, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SYLWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "syl2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Mukti", - shortTitle: "Sylheti NT", - PODISBN: null, - script: "Bengali", - sourceDate: "2020-12-01", - }, - { - languageCode: "syl", - translationId: "syll", - languageName: null, - languageNameInEnglish: "Sylheti", - dialect: null, - homeDomain: "ebible.org", - title: "Sylheti New Testament (Latin)", - description: "Sylheti: Sylheti New Testament (Latin) New Testament+", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Ahle Kitab Society", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/syll/", - OTbooks: 3, - OTchapters: 48, - OTverses: 1309, - NTbooks: 27, - NTchapters: 260, - NTverses: 7908, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SYLLWB", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "syll2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sylheti NT (Latin)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "syl", - translationId: "syls", - languageName: null, - languageNameInEnglish: "Sylheti", - dialect: null, - homeDomain: "ebible.org", - title: "Sylheti New Testament (Sylo)", - description: "Sylheti: Sylheti New Testament (Sylo) New Testament+", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Ahle Kitab Society", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/syls/", - OTbooks: 2, - OTchapters: 44, - OTverses: 1261, - NTbooks: 27, - NTchapters: 260, - NTverses: 7908, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "SYLSWB", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "syls2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sylheti: Sylheti New Testament (Sylo) New Testament+", - PODISBN: null, - script: "Syloti Nagri", - sourceDate: "2020-12-01", - }, - { - languageCode: "tac", - translationId: "tacNT", - languageName: "Tarahumara, Western", - languageNameInEnglish: "Tarahumara, Western", - dialect: null, - homeDomain: "ebible.org", - title: "Onor\u00fagame nila ra'\u00edchali", - description: "New Testament in Tarahumara, Western (MX:tac:Tarahumara, Western)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tacNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7895, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TACWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tac2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Western Tarahumara NT", - PODISBN: "978-1-5313-0615-1", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "taj", - translationId: "taj", - languageName: "Eastern Tamang", - languageNameInEnglish: "Tamang, Eastern", - dialect: null, - homeDomain: "ebible.org", - title: "\u092a\u0930\u092e\u0947\u0936\u094d\u0935\u0930\u0932\u093e \u092c\u091a\u0928 \u091b\u093e\u0930 \u0915\u092c\u0941\u0932", - description: "New Testament in Tamang, Eastern", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Eastern Tamang Language Team", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/taj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7922, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TAJWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "taj2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Eastern Tamang NT", - PODISBN: "978-1-5313-0616-8", - script: "Devanagari (Nagari)", - sourceDate: "2015-03-18", - }, - { - languageCode: "tam", - translationId: "tam2008", - languageName: "\u0ba4\u0bae\u0bbf\u0bb4\u0bcd", - languageNameInEnglish: "Tamil", - dialect: null, - homeDomain: "ebible.org", - title: "\u0baa\u0bc1\u0ba9\u0bbf\u0ba4 \u0baa\u0bc8\u0baa\u0bbf\u0bb3\u0bcd \u0baa\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0b8e\u0bb3\u0bbf\u0ba4\u0bbe\u0b95", - description: "Easy Reading Version of the Holy Bible in the Tamil language of India", - Redistributable: false, - Copyright: "Copyright \u00a9 1994-2008 World Bible Translation Center", - UpdateDate: "2018-05-14", - publicationURL: "http://ebible.org/tam2008/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22837, - NTbooks: 27, - NTchapters: 260, - NTverses: 7911, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TCVWTC", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tam2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Hoonani", - shortTitle: "Tamil Easy Reading Version", - PODISBN: null, - script: "Tamil", - sourceDate: "2020-10-09", - }, - { - languageCode: "tam", - translationId: "tam2017", - languageName: "\u0ba4\u0bae\u0bbf\u0bb4\u0bcd", - languageNameInEnglish: "Tamil", - dialect: null, - homeDomain: "ebible.org", - title: "\u0b87\u0ba3\u0bcd\u0b9f\u0bbf\u0baf\u0ba9\u0bcd \u0bb0\u0bbf\u0bb5\u0bc8\u0bb8\u0bcd\u0b9f\u0bc1 \u0bb5\u0bc6\u0bb0\u0bcd\u0bb8\u0ba9\u0bcd (IRV) - \u0ba4\u0bae\u0bbf\u0bb4\u0bcd", - description: "The Indian Revised Version Holy Bible in the Tamil language of India", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Bridge Connectivity Solutions", - UpdateDate: "2020-02-11", - publicationURL: "http://ebible.org/tam2017/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TAMIRV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tam2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tamil Indian Revised Version Bible", - PODISBN: null, - script: "Tamil", - sourceDate: "2020-01-25", - }, - { - languageCode: "taq", - translationId: "taq", - languageName: null, - languageNameInEnglish: "Tamasheq", - dialect: null, - homeDomain: "ebible.org", - title: "\u0102l\u01ddn\u017eil n-\u0194isa \u0102lmasex: Kitab \u0102lmuq\u0103dd\u0103s", - description: "Tamasheq: New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/taq/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TAQWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "taq2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tamasheq NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-02", - }, - { - languageCode: "tav", - translationId: "tav", - languageName: "Tatuyo", - languageNameInEnglish: "Tatuyo", - dialect: null, - homeDomain: "ebible.org", - title: "Dio Wadarique", - description: "New Testament in Tatuyo", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/tav/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7650, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TAVWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tav2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tatuyo NT", - PODISBN: "978-1-5313-0617-5", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "taw", - translationId: "taw", - languageName: "Tay", - languageNameInEnglish: "Tai", - dialect: null, - homeDomain: "png.bible", - title: "Jisas Klays Takaw Teplep Ne", - description: "Tay New Testament", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://png.bible/taw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7734, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TAWPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "taw2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tai NT", - PODISBN: "978-1-5313-0618-2", - script: "Latin", - sourceDate: "2019-12-30", - }, - { - languageCode: "tbc", - translationId: "tbc", - languageName: "Takia", - languageNameInEnglish: "Takia", - dialect: null, - homeDomain: "png.bible", - title: "Anut san bilalu\u014b foun", - description: "The New Testament in the Takia Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1999 The Bible Society of Papua New Guinea", - UpdateDate: "2013-12-11", - publicationURL: "http://png.bible/tbc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7854, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TBCPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tbc1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Takia NT", - PODISBN: "978-1-5313-0619-9", - script: "Latin", - sourceDate: "2012-11-25", - }, - { - languageCode: "tbf", - translationId: "tbf", - languageName: "Mandara", - languageNameInEnglish: "Mandara", - dialect: null, - homeDomain: "png.bible", - title: "Mi Namani Tino", - description: - "The New Testament in the Mandara language of New Ireland Province of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Mandara Bible Translators", - UpdateDate: "2021-02-09", - publicationURL: "http://png.bible/tbf/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7940, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TBFMAN", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tbf2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mandara Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-02-09", - }, - { - languageCode: "tbg", - translationId: "tbg", - languageName: "Tairora", - languageNameInEnglish: "Tairora", - dialect: "North Tairora", - homeDomain: "png.bible", - title: "Kotira Uva", - description: - "The New Testament and portions of the Old Testament in the North Tairora Language of Papua New Guinea", - Redistributable: true, - Copyright: - "Copyright \u00a9 1979, 1994, 2005, 2008, 2009, 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-05-26", - publicationURL: "http://png.bible/tbg/", - OTbooks: 18, - OTchapters: 491, - OTverses: 11690, - NTbooks: 27, - NTchapters: 260, - NTverses: 7870, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TBGWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tbgN2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "North Tairora", - PODISBN: "978-1-5313-0620-5", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "tbg", - translationId: "tbg-a", - languageName: "Arau", - languageNameInEnglish: "North Tairora", - dialect: "Arau", - homeDomain: "png.bible", - title: "Isuva Soqe Uva Kuama", - description: - "Genesis and the Gospels in the Arau dialect of the North Tairora language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1986 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-24", - publicationURL: "http://png.bible/tbg-a/", - OTbooks: 1, - OTchapters: 14, - OTverses: 428, - NTbooks: 4, - NTchapters: 20, - NTverses: 359, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TBGNOR", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tbgA1986eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "North Tairora Arau Bible", - PODISBN: "978-1-5313-0621-2", - script: "Latin", - sourceDate: "2014-05-16", - }, - { - languageCode: "tbk", - translationId: "tbk", - languageName: null, - languageNameInEnglish: "Tagbanwa, Calamian", - dialect: null, - homeDomain: "ebible.org", - title: "Yang Baklung Ipinagpakigpaig\u0331u", - description: "New Testament in Tagbanwa, Calamian", - Redistributable: false, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/tbk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7671, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TBKWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tbk2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Calamian Tagbanwa NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "tbl", - translationId: "tblNT", - languageName: "Tboli", - languageNameInEnglish: "Tboli", - dialect: null, - homeDomain: "ebible.org", - title: "Ud\u00e9l dwata: gna kesfasad ne lomi kesfasad", - description: "New Testament in Tboli (RP:tbl:Tboli)", - Redistributable: true, - Copyright: "Copyright \u00a9 2007 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tblNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 28, - NTverses: 1069, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TBLWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tbl2007eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tboli NT", - PODISBN: "978-1-5313-0622-9", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tbo", - translationId: "tbo", - languageName: "Tawala", - languageNameInEnglish: "Tawala", - dialect: null, - homeDomain: "png.bible", - title: "YAUBADA A WOGATALA WOUNA", - description: "The New Testament in the Tawala language of Papua New Guinea", - Redistributable: true, - Copyright: - "Copyright \u00a9 1985, 2014 Wycliffe Bible Translators, Inc. and Bible Society of Papua New Guinea", - UpdateDate: "2014-06-24", - publicationURL: "http://png.bible/tbo/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7923, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TBOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tbo2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tawala NT", - PODISBN: "978-1-5313-0623-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "tbz", - translationId: "tbzsim", - languageName: "Ditammari", - languageNameInEnglish: "Ditammari", - dialect: null, - homeDomain: "ebible.org", - title: "Bibiri Kuyie Nn\u0251\u0301\u0251\u01f9t\u00ec P\u0251\u0301t\u00edri", - description: "The Holy Bible in the Ditammari language of Benin", - Redistributable: true, - Copyright: "Copyright \u00a9 2001 SIM International", - UpdateDate: "2022-05-31", - publicationURL: "http://ebible.org/tbzsim/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22923, - NTbooks: 27, - NTchapters: 260, - NTverses: 7950, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TBZSIM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tbz2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ditammari Bible", - PODISBN: "978-1-5313-0624-3", - script: "Latin", - sourceDate: "2022-06-01", - }, - { - languageCode: "tca", - translationId: "tcaNT", - languageName: "Ticuna", - languageNameInEnglish: "Ticuna", - dialect: null, - homeDomain: "ebible.org", - title: "Tupanaar\u00fc Ore i T\u00f3r\u00fc Cori ya Ngechuchu ya Cristuchiga", - description: "New Testament in Ticuna (PE:tca:Ticuna)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tcaNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7743, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TCATBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tca2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ticuna NT", - PODISBN: "978-1-5313-0625-0", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tcs", - translationId: "tcs", - languageName: "Yumplatok", - languageNameInEnglish: "Torres Strait Creole", - dialect: null, - homeDomain: "ebible.org", - title: "Baibol Tores Streit Yumplatok", - description: "Portions of the Holy Bible in the Tores Strait Creole language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators", - UpdateDate: "2019-07-01", - publicationURL: "http://ebible.org/tcs/", - OTbooks: 3, - OTchapters: 58, - OTverses: 1656, - NTbooks: 27, - NTchapters: 260, - NTverses: 7918, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TCSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tcs2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Yumplatok Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2019-05-15", - }, - { - languageCode: "tcz", - translationId: "tczchongthu", - languageName: "Chongthu", - languageNameInEnglish: "Chin, Thado", - dialect: "Chongthu", - homeDomain: "ebible.org", - title: "PATHEN LEKHABU THENG", - description: "The Holy Bible in the Chongthu Dialect of India", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Chongthu Bible Translation Team", - UpdateDate: "2023-02-01", - publicationURL: "http://ebible.org/tczchongthu/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23094, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TCZCHO", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tczchongthu2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Chongthu Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-01", - }, - { - languageCode: "tdt", - translationId: "tdt", - languageName: "Tetun Dili", - languageNameInEnglish: "Tetun Dili", - dialect: null, - homeDomain: "ebible.org", - title: "Testamentu Foun ba Ema Hotu", - description: "The New Testament in the Tetun Dili language of East Timor", - Redistributable: true, - Copyright: "Copyright \u00a9 2021 Biblia ba Ema Hotu", - UpdateDate: "2023-02-01", - publicationURL: "http://ebible.org/tdt/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7908, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TDTBEH", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tdt2021eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tetun Dili NT", - PODISBN: null, - script: "Latin", - sourceDate: "2023-02-01", - }, - { - languageCode: "ted", - translationId: "ted", - languageName: null, - languageNameInEnglish: "Krumen, Tepo", - dialect: null, - homeDomain: "ebible.org", - title: "Ny\u0269s\u028ba a =hap\u028btitie", - description: "Krumen, Tepo: Ny\u0269s\u028ba a =hap\u028btitie New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/ted/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7874, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TEDWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ted2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ted NT", - PODISBN: null, - script: "Arabic", - sourceDate: "2020-12-02", - }, - { - languageCode: "tee", - translationId: "teeNT", - languageName: "Tepehua, Huehuetla", - languageNameInEnglish: "Tepehua, Huehuetla", - dialect: null, - homeDomain: "ebible.org", - title: "Ixchivinti Dios", - description: "New Testament in Tepehua, Huehuetla (MX:tee:Tepehua, Huehuetla)", - Redistributable: true, - Copyright: "Copyright \u00a9 1976 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/teeNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TEETBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tee1976eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Huehuetla Tepehua NT", - PODISBN: "978-1-5313-0626-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tel", - translationId: "tel2010", - languageName: "\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41", - languageNameInEnglish: "Telugu", - dialect: null, - homeDomain: "eBible.org", - title: "\u0c39\u0c4b\u0c32\u0c40 \u0c2c\u0c46\u0c56\u0c2c\u0c3f\u0c32\u0c4d", - description: "The Holy Bible, Easy Reading Version, in the Telugu language of India", - Redistributable: false, - Copyright: "Copyright \u00a9 1992-2010 World Bible Translation Center", - UpdateDate: "2013-11-06", - publicationURL: "http://eBible.org/tel2010/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22851, - NTbooks: 27, - NTchapters: 260, - NTverses: 7901, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TCWWTC", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tel2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Akshar Unicode", - shortTitle: "Telugu Easy Reading Version", - PODISBN: null, - script: "Telugu", - sourceDate: "2020-10-09", - }, - { - languageCode: "tel", - translationId: "tel2017", - languageName: "\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41", - languageNameInEnglish: "Telugu", - dialect: null, - homeDomain: "ebible.org", - title: "\u0c07\u0c02\u0c21\u0c3f\u0c2f\u0c28\u0c4d \u0c30\u0c3f\u0c35\u0c48\u0c1c\u0c4d\u0c21\u0c4d \u0c35\u0c46\u0c30\u0c4d\u0c37\u0c28\u0c4d (IRV) - \u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 -2019", - description: "The Indian Revised Version Holy Bible in the Telugu language of India", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Bridge Connectivity Solutions", - UpdateDate: "2020-02-11", - publicationURL: "http://ebible.org/tel2017/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23129, - NTbooks: 27, - NTchapters: 260, - NTverses: 7875, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TELIRV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tel2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Telugu Indian Revised Version Bible", - PODISBN: null, - script: "Telugu", - sourceDate: "2020-01-25", - }, - { - languageCode: "ter", - translationId: "terNT", - languageName: "Ter\u00eana", - languageNameInEnglish: "Ter\u00eana", - dialect: null, - homeDomain: "ebible.org", - title: "Emo'u Ituk\u00f3'oviti", - description: "New Testament in Ter\u00eana (BR:ter:Ter\u00eana)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/terNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TERTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ter2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ter\u00eana NT", - PODISBN: "978-1-5313-0627-4", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tet", - translationId: "tet", - languageName: "Tutun Belu", - languageNameInEnglish: "Tetun", - dialect: null, - homeDomain: "ebible.org", - title: "Tetun Alkitab", - description: - "Genesis and the New Testament in the Tetun Belu language of Indonesia and East Timor", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Unit Bahasa dan Budaya", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/tet/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1417, - NTbooks: 27, - NTchapters: 260, - NTverses: 7666, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TETUBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tet2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tetun Bible", - PODISBN: "978-1-5313-0785-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "tew", - translationId: "tew", - languageName: "Tewa", - languageNameInEnglish: "Tewa", - dialect: null, - homeDomain: "ebible.org", - title: "Na\u02c0inb\u00ed Sed\u00f3 Y\u00f4esiv\u00ed Tu\u0316u\u0316 / Nanb\u00ed Sed\u00f3 J\u00f4esiv\u00ed Tun", - description: "New Testament in Tewa (USA) (San Juan/Santa Clara)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/tew/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 17, - NTchapters: 148, - NTverses: 4838, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TEWWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tew2012eb", - rodCode: 17413.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tewa NT", - PODISBN: "978-1-5313-0628-1", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "tfr", - translationId: "tfrNTpo", - languageName: "Teribe", - languageNameInEnglish: "Teribe", - dialect: null, - homeDomain: "ebible.org", - title: "Sb\u00f6 Tjl\u0308\u00f5kwo", - description: "New Testament and Shorter Old Testament in Teribe (PM:tfr:Teribe)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tfrNTpo/", - OTbooks: 3, - OTchapters: 58, - OTverses: 1532, - NTbooks: 27, - NTchapters: 260, - NTverses: 7626, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TFRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tfr2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Teribe Bible", - PODISBN: "978-1-5313-0629-8", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tgk", - translationId: "tgk", - languageName: "\u0442\u043e\u04b7\u0438\u043a\u04e3", - languageNameInEnglish: "Tajik", - dialect: null, - homeDomain: "ebible.org", - title: "\u0425\u0443\u0448\u0445\u0430\u0431\u0430\u0440", - description: "Portions of the Holy Bible in the Tajik language of Tajikistan", - Redistributable: true, - Copyright: - "Copyright \u00a9 2010, 2014 \u0424\u043e\u043d\u0434\u0438 \u00ab\u041a\u0430\u043b\u043e\u043c\u00bb", - UpdateDate: "2014-04-02", - publicationURL: "http://ebible.org/tgk/", - OTbooks: 2, - OTchapters: 14, - OTverses: 249, - NTbooks: 11, - NTchapters: 108, - NTverses: 4095, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TGKIBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tgk2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tajik Bible", - PODISBN: "978-1-5313-0630-4", - script: "Latin", - sourceDate: "2014-04-03", - }, - { - languageCode: "tgl", - translationId: "tglulb", - languageName: "Tagalog", - languageNameInEnglish: "Tagalog", - dialect: null, - homeDomain: "ebible.org", - title: "banal na Bibliya", - description: "Tagalog Unlocked Literal Bible", - Redistributable: true, - Copyright: "Copyright \u00a9 2018 Door43 World Missions Community", - UpdateDate: "2020-06-10", - publicationURL: "http://ebible.org/tglulb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23144, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TGLULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tglulb2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tagalog Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-06-10", - }, - { - languageCode: "tgo", - translationId: "tgo", - languageName: "Sudest", - languageNameInEnglish: "Sudest", - dialect: "Tagula", - homeDomain: "png.bible", - title: "Toto Thovuye Loi Ghal\u0268\u014bae", - description: - "The New Testament plus Ruth and Jonah in the Sudest language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-09-23", - publicationURL: "http://png.bible/tgo/", - OTbooks: 2, - OTchapters: 8, - OTverses: 133, - NTbooks: 27, - NTchapters: 260, - NTverses: 7927, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TGOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tgo2014eb", - rodCode: 324.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sudest NT", - PODISBN: "978-1-5313-0839-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "tgp", - translationId: "tgp", - languageName: "Tangoa", - languageNameInEnglish: "Tangoa", - dialect: null, - homeDomain: "ebible.org", - title: "Tangoa New Testament", - description: "The New Testament in the Tangoa Language of Vanuatu", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/tgp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7933, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TGPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tgp2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tangoa NT", - PODISBN: "978-1-5313-0631-1", - script: "Latin", - sourceDate: "2012-11-25", - }, - { - languageCode: "tha", - translationId: "thaKJV", - languageName: "\u0e44\u0e17\u0e22", - languageNameInEnglish: "Thai", - dialect: null, - homeDomain: "ebible.org", - title: "\u0e1e\u0e23\u0e30\u0e04\u0e31\u0e21\u0e20\u0e35\u0e23\u0e4c\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22\u0e09\u0e1a\u0e31\u0e1a KJV", - description: "The Holy Bible in Thai, translated from the English King James Version", - Redistributable: true, - Copyright: "Copyright \u00a9 2003 Philip Pope", - UpdateDate: "2022-04-15", - publicationURL: "http://ebible.org/thaKJV/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "THAKJV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "thaKJV2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Noto Serif Thai", - shortTitle: "Thai KJV Bible", - PODISBN: "978-1-5313-0632-8", - script: "Thai", - sourceDate: "2020-01-30", - }, - { - languageCode: "tha", - translationId: "thantv", - languageName: "\u0e44\u0e17\u0e22", - languageNameInEnglish: "Thai", - dialect: null, - homeDomain: "ebible.org", - title: "\u0e43\u0e2b\u0e21\u0e48\u0e09\u0e1a\u0e31\u0e1a\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22", - description: "The Holy Bible in Thai, New Thai Version", - Redistributable: false, - Copyright: "Copyright \u00a9 1998, 2012, 2020 New Thai Version Foundation", - UpdateDate: "2021-01-04", - publicationURL: "http://ebible.org/thantv/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "THANTV", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "thantv2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Noto Serif Thai", - shortTitle: "New Thai Version", - PODISBN: null, - script: "Latin", - sourceDate: "2020-01-30", - }, - { - languageCode: "thd", - translationId: "thd", - languageName: "Kuuk Thayorre", - languageNameInEnglish: "Thayore", - dialect: null, - homeDomain: "ebible.org", - title: "Kuuk Thayorre Bible Portions", - description: "Portions of the Holy Bible in the Kuuk Thayorre language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1975, 1983, 1990 Rev. Dr. Allen Harry Hall and Jollen Press", - UpdateDate: "2020-01-06", - publicationURL: "http://ebible.org/thd/", - OTbooks: 1, - OTchapters: 1, - OTverses: 5, - NTbooks: 3, - NTchapters: 8, - NTverses: 165, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "THDAHH", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "thd1975eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Thayorre Bible Portions", - PODISBN: null, - script: "Latin", - sourceDate: "2020-01-07", - }, - { - languageCode: "thv", - translationId: "thv", - languageName: null, - languageNameInEnglish: "Tamahaq, Tahaggart", - dialect: null, - homeDomain: "ebible.org", - title: "Awal n Messine\u0263 s Tamahaq", - description: "Tamahaq traduction premi\u00e8re", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/thv/", - OTbooks: 3, - OTchapters: 58, - OTverses: 1652, - NTbooks: 1, - NTchapters: 24, - NTverses: 1151, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "THVWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "thv2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tahaggart Tamahaq Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "tif", - translationId: "tif", - languageName: "Tifal", - languageNameInEnglish: "Tifal", - dialect: null, - homeDomain: "png.bible", - title: "God Ami Alokso Weng", - description: "The New Testament in the Tifal Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1998 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-09-06", - publicationURL: "http://png.bible/tif/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7681, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TIFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tif1998eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tifal NT", - PODISBN: "978-1-5313-0633-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "tim", - translationId: "tim", - languageName: "Timbe", - languageNameInEnglish: "Timbe", - dialect: null, - homeDomain: "png.bible", - title: "Yusug\u00e2t Pat \u00c2lep Den", - description: "The New Testament in the Timbe Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1987 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/tim/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7792, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TIMTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tim1987eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Timbe NT", - PODISBN: "978-1-5313-0634-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "tiw", - translationId: "tiw", - languageName: "Tiwi", - languageNameInEnglish: "Tiwi", - dialect: null, - homeDomain: "ebible.org", - title: "Tiwi Bible", - description: "The Gospels in the Tiwi language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2000 Wycliffe Bible Translators", - UpdateDate: "2021-11-29", - publicationURL: "http://ebible.org/tiw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 4, - NTchapters: 75, - NTverses: 1362, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TIWWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tiw2000eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tiwi Gospels", - PODISBN: null, - script: "Latin", - sourceDate: "2020-10-19", - }, - { - languageCode: "tiy", - translationId: "tiy", - languageName: "Tiruray", - languageNameInEnglish: "Tiruray", - dialect: null, - homeDomain: "ebible.org", - title: "I Fiyowe Uret", - description: "New Testament in Tiruray", - Redistributable: true, - Copyright: "Copyright \u00a9 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/tiy/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7908, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TIYWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tiy2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tiruray NT", - PODISBN: "978-1-5313-0635-9", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "tke", - translationId: "tke", - languageName: "Takwane", - languageNameInEnglish: "Takwane", - dialect: null, - homeDomain: "ebible.org", - title: "Takwane do Novo Testamento", - description: "The New Testament in the Takwane Language of Mozambique", - Redistributable: true, - Copyright: "Copyright \u00a9 2007-2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-06-30", - publicationURL: "http://ebible.org/tke/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 24, - NTverses: 1151, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TKEWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tke2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Takwane NT", - PODISBN: "978-1-5313-0636-6", - script: "Latin", - sourceDate: "2022-05-25", - }, - { - languageCode: "tku", - translationId: "tkuNT", - languageName: "Totonac, Upper Necaxa", - languageNameInEnglish: "Totonac, Upper Necaxa", - dialect: null, - homeDomain: "ebible.org", - title: "Xas\u0101sti\u02bc testamento (Xatze tachihu\u012bn ixp\u0101lacata Jesucristo)", - description: "New Testament in Totonac, Upper Necaxa (MX:tku:Totonac, Upper Necaxa)", - Redistributable: true, - Copyright: "Copyright \u00a9 1999 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tkuNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TKUWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tku1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Upper Necaxa Totonac", - PODISBN: "978-1-5313-0637-3", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tlf", - translationId: "tlf", - languageName: "Telefol Weng", - languageNameInEnglish: "Telefol", - dialect: null, - homeDomain: "png.bible", - title: "GOD IMI WENG", - description: "The New Testament in the Telefol Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1988 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-24", - publicationURL: "http://png.bible/tlf/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7698, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TLFTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tlf1988eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Telefol NT", - PODISBN: "978-1-5313-0638-0", - script: "Latin", - sourceDate: "2012-11-25", - }, - { - languageCode: "tlj", - translationId: "tlj", - languageName: null, - languageNameInEnglish: "Talinga-Bwisi", - dialect: null, - homeDomain: "ebible.org", - title: "Ndaghaano Mpyaka Mu Lubwisi", - description: "Talinga-Bwisi: Ndaghaano Mpyaka Mu Lubwisi (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/tlj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7941, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TLJWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tlj2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Talinga-Bwisi NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "tmd", - translationId: "tmd", - languageName: "Haruai", - languageNameInEnglish: "Haruai", - dialect: null, - homeDomain: "png.bible", - title: "M\u00d6N\u00d6 K\u00d6M\u00d6", - description: "The New Testament in the Haruai language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-05-07", - publicationURL: "http://png.bible/tmd/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7734, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TMDWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tmd2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Andika", - shortTitle: "Haruai NT", - PODISBN: "978-1-5313-0639-7", - script: "Latin", - sourceDate: "2021-05-08", - }, - { - languageCode: "tna", - translationId: "tnaNT", - languageName: "Tacana", - languageNameInEnglish: "Tacana", - dialect: null, - homeDomain: "ebible.org", - title: "Diusu sa mimi", - description: "New Testament in Tacana (BL:tna:Tacana)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tnaNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7752, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TNAWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tna2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tacana NT", - PODISBN: "978-1-5313-0640-3", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tnc", - translationId: "tnc", - languageName: "Tanimuca-Retuar\u00e3", - languageNameInEnglish: "Tanimuca-Retuar\u00e3", - dialect: null, - homeDomain: "ebible.org", - title: "Tu\u1d7dar\u00e3 Majaroka", - description: "NT Portions in Tanimuca-Retuar\u00e3", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/tnc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 10, - NTchapters: 117, - NTverses: 3028, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TNCWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tnc2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tanimuca-Retuar\u00e3 NT portions", - PODISBN: "978-1-5313-0641-0", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "tnk", - translationId: "tnk", - languageName: "N\u0259fe", - languageNameInEnglish: "Nafe", - dialect: null, - homeDomain: "ebible.org", - title: "N\u01ddkuku\u01dd Ikinan", - description: - "The New Testament in the Nafe (Kwamera) language of Southeast Tanna, TAFEA Province, Vanuatu", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-06-18", - publicationURL: "http://ebible.org/tnk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7916, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TNKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tnk2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Nafe NT", - PODISBN: "978-1-5313-0642-7", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "tnn", - translationId: "tnn", - languageName: "North Tanna", - languageNameInEnglish: "North Tanna", - dialect: null, - homeDomain: "ebible.org", - title: "North Tanna New Testament", - description: "The New Testament in the North Tanna Language of Vanuatu", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/tnn/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7883, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TNNWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tnn2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "North Tanna NT", - PODISBN: "978-1-5313-0643-4", - script: "Latin", - sourceDate: "2011-08-30", - }, - { - languageCode: "tnp", - translationId: "tnp", - languageName: "Whitesands", - languageNameInEnglish: "Whitesands", - dialect: null, - homeDomain: "ebible.org", - title: "Nau\u0259u\u0259 Asim R\u0259ha Uhg\u0268n N\u0259mt\u0259ti\u0259n Vi", - description: "The New Testament in the Whitesands language of Tanna Island, Vanuatu", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/tnp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7886, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TNPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tnp2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Whitesands NT", - PODISBN: "978-1-5313-0644-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "toc", - translationId: "tocNT", - languageName: "Totonac, Coyutla", - languageNameInEnglish: "Totonac, Coyutla", - dialect: null, - homeDomain: "ebible.org", - title: "Xasasti talacaxlan", - description: "New Testament in Totonac, Coyutla (MX:toc:Totonac, Coyutla)", - Redistributable: true, - Copyright: "Copyright \u00a9 2006 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tocNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7921, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TOCTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "toc2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Coyutla Totonac NT", - PODISBN: "978-1-5313-0645-8", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tod", - translationId: "tod", - languageName: "Toma", - languageNameInEnglish: "Toma", - dialect: null, - homeDomain: "ebible.org", - title: "GALA S\u025b\u028b\u025bi", - description: "Portions of the Holy Bible in the Toma language of Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://ebible.org/tod/", - OTbooks: 18, - OTchapters: 357, - OTverses: 10200, - NTbooks: 1, - NTchapters: 28, - NTverses: 1007, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TODPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tod2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Toma Bible Portions", - PODISBN: "978-1-5313-0836-0", - script: "Latin", - sourceDate: "2019-12-30", - }, - { - languageCode: "tof", - translationId: "tof", - languageName: "Gizrra", - languageNameInEnglish: "Gizrra", - dialect: null, - homeDomain: "png.bible", - title: "God\u00f3n Buk", - description: - "Portions of the Holy Bible in the Gizrra language of Western Province, Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-04-01", - publicationURL: "http://png.bible/tof/", - OTbooks: 13, - OTchapters: 97, - OTverses: 1980, - NTbooks: 27, - NTchapters: 235, - NTverses: 6945, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TOFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tof2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Gizrra Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-04-02", - }, - { - languageCode: "toj", - translationId: "tojNT", - languageName: "Tojolabal", - languageNameInEnglish: "Tojolabal", - dialect: null, - homeDomain: "ebible.org", - title: "Ja yajc\u02bcachil testamento sbaj ja cajualtic Jesucristo", - description: "New Testament in Tojolabal (MX:toj:Tojolabal)", - Redistributable: true, - Copyright: "Copyright \u00a9 1972 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tojNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7869, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TOJWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "toj1972eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tojolabal NT", - PODISBN: "978-1-5313-0646-5", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "ton", - translationId: "ton", - languageName: "Tongan", - languageNameInEnglish: "Tongan", - dialect: null, - homeDomain: "ebible.org", - title: "KO E TOHI TAPU K\u0100TOA", - description: "The Holy Bible in the Tongan language of Tonga, Revised West Version", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/ton/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TONPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ton2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Revised West Version", - PODISBN: "978-1-5313-0647-2", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "too", - translationId: "tooNT", - languageName: "Totonac, Xicotepec De Ju\u00e1rez", - languageNameInEnglish: "Totonac, Xicotepec De Ju\u00e1rez", - dialect: null, - homeDomain: "ebible.org", - title: "Huan Xas\u0101sti\u02bc testamento: Huan xatzey tachihu\u012bn ixp\u0101lacata Jesucristo", - description: - "New Testament in Totonac, Xicotepec De Ju\u00e1rez (MX:too:Totonac, Xicotepec De Ju\u00e1rez)", - Redistributable: true, - Copyright: "Copyright \u00a9 1978 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tooNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TOOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "too1978eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Xicotepec De Ju\u00e1rez Totonac NT", - PODISBN: "978-1-5313-0648-9", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "top", - translationId: "topNT", - languageName: "Totonac, Papantla", - languageNameInEnglish: "Totonac, Papantla", - dialect: null, - homeDomain: "ebible.org", - title: "Xasasti talaccaxlan", - description: "New Testament in Totonac, Papantla (MX:top:Totonac, Papantla)", - Redistributable: true, - Copyright: "Copyright \u00a9 1979 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/topNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7893, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TOPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "top1979eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Papantla Totonac NT", - PODISBN: "978-1-5313-0649-6", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tos", - translationId: "tosNT", - languageName: "Totonac, Highland", - languageNameInEnglish: "Totonac, Highland", - dialect: null, - homeDomain: "ebible.org", - title: "Hua\u0331 xasa\u0331sti talacca\u0331xlan quinTla\u0331tican Jesucristo", - description: "New Testament in Totonac, Highland (MX:tos:Totonac, Highland)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tosNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7911, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TOSTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tos2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Highland Totonac NT", - PODISBN: "978-1-5313-0650-2", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tpa", - translationId: "tpa", - languageName: "Taupota", - languageNameInEnglish: "Taupota", - dialect: "Taupota", - homeDomain: "png.bible", - title: "Taupota Mark", - description: "The Gospel of Mark in the Taupota Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-08-19", - publicationURL: "http://png.bible/tpa/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 16, - NTverses: 656, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TPAWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tpa2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Taupota Mark", - PODISBN: "978-1-5313-0651-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "tpi", - translationId: "tpi", - languageName: "Tok Pisin", - languageNameInEnglish: "Melanesian Pidgin", - dialect: null, - homeDomain: "png.bible", - title: "Buk Baibel long Tok Pisin", - description: - "The Holy Bible with Deuterocanon in the Tok Pisin (Melanesian Pidgin) Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1969\u20132008 The Bible Society of Papua New Guinea", - UpdateDate: "2014-10-01", - publicationURL: "http://png.bible/tpi/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22456, - NTbooks: 27, - NTchapters: 260, - NTverses: 7906, - DCbooks: 12, - DCchapters: 150, - DCverses: 4480, - FCBHID: "TPIPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tpi2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tok Pisin Bible with Deuterocanon", - PODISBN: "978-1-5313-0652-6", - script: "Latin", - sourceDate: "2022-07-14", - }, - { - languageCode: "tpi", - translationId: "tpiOTNT", - languageName: "Tok Pisin", - languageNameInEnglish: "Melanesian Pidgin", - dialect: null, - homeDomain: "ebible.org", - title: "Buk Baibel long Tok Pisin", - description: - "The Holy Bible in the Tok Pisin (Melanesian Pidgin) Language of Papua New Guinea without Deuterocanon/Apocrypha", - Redistributable: true, - Copyright: "Copyright \u00a9 1969\u20132008 The Bible Society of Papua New Guinea", - UpdateDate: "2014-10-01", - publicationURL: "http://ebible.org/tpiOTNT/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22456, - NTbooks: 27, - NTchapters: 260, - NTverses: 7906, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TPIPNGON", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tpiP2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tok Pisin Bible", - PODISBN: "978-1-5313-0653-3", - script: "Latin", - sourceDate: "2022-07-14", - }, - { - languageCode: "tpp", - translationId: "tpp", - languageName: "Tepehua, Pisaflores", - languageNameInEnglish: "Tepehua, Pisaflores", - dialect: null, - homeDomain: "ebible.org", - title: "Ixchiwinti Dios", - description: "Tepehua, Pisaflores: Ixchiwinti Dios New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/tpp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TPPWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tpp2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: " Pisaflores Tepehua NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "tpt", - translationId: "tptNT", - languageName: "Tepehua, Tlachichilco", - languageNameInEnglish: "Tepehua, Tlachichilco", - dialect: null, - homeDomain: "ebible.org", - title: "Ixchivinti Dios: ni sast\u02bci chivinti yu Dios jat\u02bcatamakaul ixlapanakni laka lhimasipijni", - description: "New Testament in Tepehua, Tlachichilco (MX:tpt:Tepehua, Tlachichilco)", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tptNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TPTWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tpt2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tlachichilco Tepehua NT", - PODISBN: "978-1-5313-0654-0", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tpu", - translationId: "tpu", - languageName: null, - languageNameInEnglish: "Tampuan", - dialect: null, - homeDomain: "ebible.org", - title: "\u1782\u1798\u17d2\u1796\u17b8\u179a\u200b\u1797\u17b6\u179f\u17b6\u200b\u1791\u17c6\u1796\u17bd\u1793", - description: - "Tampuan: \u1782\u1798\u17d2\u1796\u17b8\u179a\u200b\u1797\u17b6\u179f\u17b6\u200b\u1791\u17c6\u1796\u17bd\u1793 (Bible)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-28", - publicationURL: "http://ebible.org/tpu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7900, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TPUWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tpu2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: - "Tampuan: \u1782\u1798\u17d2\u1796\u17b8\u179a\u200b\u1797\u17b6\u179f\u17b6\u200b\u1791\u17c6\u1796\u17bd\u1793 (Bible)", - PODISBN: null, - script: "Khmer", - sourceDate: "2020-11-29", - }, - { - languageCode: "tpx", - translationId: "tpx", - languageName: null, - languageNameInEnglish: "Me'phaa, Acatepec", - dialect: null, - homeDomain: "ebible.org", - title: "El libro de Jonas en Me'phaa Xma'iin (Teocuitlapa)", - description: - "Me\u2019phaa, Acatepec: El libro de Jonas en Me'phaa Xma'iin (Teocuitlapa) (Portions)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/tpx/", - OTbooks: 1, - OTchapters: 4, - OTverses: 48, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TPXWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tpx2020eb", - rodCode: 6388.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: " Acatepec Me\u2019phaa Jonah", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "tpz", - translationId: "tpz", - languageName: "Vasui (Tinputz)", - languageNameInEnglish: "Tinputz", - dialect: "Vasui", - homeDomain: "png.bible", - title: "SOE A TO\ua78cTO\ua78c", - description: "The New Testament in the Vasui (Tinputz) Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-01-08", - publicationURL: "http://png.bible/tpz/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7867, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TPZWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tpz2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tinputz Vasui NT", - PODISBN: "978-1-5313-0655-7", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "trc", - translationId: "trcNT", - languageName: "Triqui, Copala", - languageNameInEnglish: "Triqui, Copala", - dialect: null, - homeDomain: "ebible.org", - title: "Se-n\u0101n\u0101 Dios\u0113 nan\u0101 s\u0101\u02bc me r\u00e1 cat\u016b\u016b nim\u00e1n n\u00ed\u02bc a", - description: "New Testament in Triqui, Copala (MX:trc:Triqui, Copala)", - Redistributable: true, - Copyright: "Copyright \u00a9 1987 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/trcNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7915, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TRCTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "trc1987eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Copala Triqui NT", - PODISBN: "978-1-5313-0656-4", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "trq", - translationId: "trq", - languageName: "San Mart\u00edn Itunyoso Triqui", - languageNameInEnglish: "San Mart\u00edn Itunyoso Triqui", - dialect: null, - homeDomain: "ebible.org", - title: "Si-nu\u0331guan\ua78c Yan\ua78canj Xa\u0331nga\ua78c", - description: - "Triqui, San Mart\u00edn Itunyoso: Si-nu\u0331guan\ua78c Yan\ua78canj Xa\u0331nga\ua78c (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/trq/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7946, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TRQWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "trq2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Triqui, San Mart\u00edn Itunyoso: Si-nu\u0331guan\ua78c Yan\ua78canj Xa\u0331nga\ua78c (New Testament)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "tsg", - translationId: "tsg", - languageName: null, - languageNameInEnglish: "Tausug", - dialect: null, - homeDomain: "ebible.org", - title: "Kitab Injil (The New Testament)", - description: "Tausug: Kitab Injil (The New Testament) New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1999 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/tsg/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7905, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TSGWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tsg1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tausug NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-02", - }, - { - languageCode: "tsw", - translationId: "tswNT", - languageName: "Tsishingini", - languageNameInEnglish: "Tsishingini", - dialect: null, - homeDomain: "ebible.org", - title: "Nzuwulai n Sa'avu na\u0331 Tsishingini na\u0331 a\u0331\u0257iva\u0331 a na a \u0257angulai a Nzuwulai mu Ufaru", - description: "New Testament in Tsishingini (NI:tsw:Tsishingini)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-08-09", - publicationURL: "http://ebible.org/tswNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7906, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TSWWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tsw2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tsishingini NT", - PODISBN: "978-1-5313-0657-1", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "ttc", - translationId: "ttcNT", - languageName: "Tektiteko", - languageNameInEnglish: "Tektiteko", - dialect: null, - homeDomain: "ebible.org", - title: "Te ak\u02bca\u02bcj tu\u02bcjal tuj tu\u02bcjal qtata Dios", - description: "New Testament in Tektiteko (GT:ttc:Tektiteko)", - Redistributable: true, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/ttcNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TTCWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ttc2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tektiteko NT", - PODISBN: "978-1-5313-0658-8", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tte", - translationId: "tte", - languageName: "Tubetube (Bwanabwana)", - languageNameInEnglish: "Bwanabwana", - dialect: "Tubetube", - homeDomain: "png.bible", - title: "Buki Tabu Waluwaluna", - description: - "The New Testament in the Tubetube language, also known as the Bwanabwana language, of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-24", - publicationURL: "http://png.bible/tte/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7744, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TTETBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tte2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Bwanabwana NT", - PODISBN: "978-1-5313-0659-5", - script: "Latin", - sourceDate: "2012-11-25", - }, - { - languageCode: "tte", - translationId: "tteo", - languageName: "Tubetube (Bwanabwana)", - languageNameInEnglish: "Bwanabwana", - dialect: "Tubetube", - homeDomain: "png.bible", - title: "Buki Tabu Beyabeyana", - description: - "Portions of the Old Testament in the Tubetube dialect of the Bwanabwana language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Wycliffe Switzerland", - UpdateDate: "2022-08-18", - publicationURL: "http://png.bible/tteo/", - OTbooks: 13, - OTchapters: 344, - OTverses: 7095, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TTEOWB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tteo2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Bwanabwana OT", - PODISBN: null, - script: "Latin", - sourceDate: "2021-05-28", - }, - { - languageCode: "ttq", - translationId: "ttq", - languageName: "Tamajaq, Tawallammat", - languageNameInEnglish: "Tamajaq, Tawallammat", - dialect: null, - homeDomain: "ebible.org", - title: "\u018elinjil \u01ddn \u0194aysa \u018elm\u01ddsix Itawann-as de\u0263 Arkawal wa Aynayan", - description: - "Tamajaq, Tawallammat: \u018elinjil \u01ddn \u0194aysa \u018elm\u01ddsix Itawann-as de\u0263 Arkawal wa Aynayan New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/ttq/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7931, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TTQWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ttq2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tawallammat Tamajaq NT", - PODISBN: null, - script: "Arabic", - sourceDate: "2020-12-02", - }, - { - languageCode: "ttq", - translationId: "ttqt", - languageName: "Tamajaq, Tawallammat", - languageNameInEnglish: "Tamajaq, Tawallammat", - dialect: null, - homeDomain: "ebible.org", - title: "\u018elinjil \u01ddn \u0194aysa \u018elm\u01ddsix", - description: - "Tawallammat Tamajaq (Berber): \u018elinjil \u01ddn \u0194aysa \u018elm\u01ddsix New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-09-11", - publicationURL: "http://ebible.org/ttqt/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7931, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TTQTWB", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ttqt2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Noto Sans Tifinagh", - shortTitle: " Tawallammat Tamajaq NT, Tifinagh script", - PODISBN: null, - script: "Tifinagh (Berber)", - sourceDate: "2020-12-02", - }, - { - languageCode: "tuc", - translationId: "tuc-o", - languageName: "Saveeng", - languageNameInEnglish: "Mutu", - dialect: "Oov", - homeDomain: "png.bible", - title: "Maaron Savee\u014b Toni Patabua\u014b", - description: - "The New Testament and portions of the Old Testament in the Oov Dialect of the Saveeng language of Papua New Guinea. The Saveeng language is also called Mutu or Mutu-Tuam.", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-24", - publicationURL: "http://png.bible/tuc-o/", - OTbooks: 5, - OTchapters: 238, - OTverses: 4665, - NTbooks: 27, - NTchapters: 260, - NTverses: 7645, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TUCOOV", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tucO2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Saveeng Oov Bible", - PODISBN: "978-1-5313-0660-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "tuc", - translationId: "tuc-t", - languageName: "Saveeng", - languageNameInEnglish: "Mutu", - dialect: "Tuam", - homeDomain: "png.bible", - title: "Maaron Savee\u014b Tooni Patabuyaa\u014b", - description: - "The New Testament and portions of the Old Testament in the Tuam dialect of the Saveeng language of Papua New Guinea. The Saveeng language is also called the Mutu language.", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-08-31", - publicationURL: "http://png.bible/tuc-t/", - OTbooks: 5, - OTchapters: 238, - OTverses: 4665, - NTbooks: 27, - NTchapters: 260, - NTverses: 7648, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TUCTUA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tucT2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Saveeng Tuam Bible", - PODISBN: "978-1-5313-0661-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "tue", - translationId: "tue", - languageName: "Tuyuca", - languageNameInEnglish: "Tuyuca", - dialect: null, - homeDomain: "ebible.org", - title: "C\u00f5\u00e3mac\u0289\u0303 mec\u0289\u0303\u00e3 wedesei", - description: "New Testament in Tuyuca", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/tue/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7879, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TUEWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tue2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tuyuca NT", - PODISBN: "978-1-5313-0662-5", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "tuf", - translationId: "tuf", - languageName: "Central Tunebo", - languageNameInEnglish: "Tunebo, Central", - dialect: null, - homeDomain: "ebible.org", - title: "Sir chiht\u00e1", - description: "New Testament in Tunebo, Central", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/tuf/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7894, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TUFWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tuf2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Central Tunebo NT", - PODISBN: "978-1-5313-0663-2", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "tuo", - translationId: "tuoNT", - languageName: "Tucano", - languageNameInEnglish: "Tucano", - dialect: null, - homeDomain: "ebible.org", - title: "\u00d5'\u00e2k\u0129\u0336 h\u0268 yeere u\u00fak\u0169ri turi Tukano", - description: "New Testament in Tucano (BR:tuo:Tucano)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/tuoNT/", - OTbooks: 7, - OTchapters: 148, - OTverses: 3022, - NTbooks: 27, - NTchapters: 260, - NTverses: 7782, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TUOWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tuoNT2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tucano NT", - PODISBN: "978-1-5313-0828-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "tur", - translationId: "turev", - languageName: "T\u00fcrk\u00e7e", - languageNameInEnglish: "Turkish", - dialect: null, - homeDomain: "ebible.org", - title: "Bible Revizyon 2008", - description: "The Holy Bible in the Turkish Language, Revision of 2008", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2020-09-01", - publicationURL: "http://ebible.org/turev/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22751, - NTbooks: 27, - NTchapters: 260, - NTverses: 7458, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TUR008", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "turev2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Turkish Bible 2008", - PODISBN: "978-1-5313-0819-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "tvk", - translationId: "tvk", - languageName: "Southeast Ambrym", - languageNameInEnglish: "Ambrym, Southeast", - dialect: "Central", - homeDomain: "ebible.org", - title: "Vanuvei Eo e sepinien Vatlongos na mol-Vatimol xil niutestamen e rute te oltestamen", - description: "Portions of the Holy Bible in the Southeast Ambrym Language of Vanuatu", - Redistributable: true, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-09-06", - publicationURL: "http://ebible.org/tvk/", - OTbooks: 2, - OTchapters: 8, - OTverses: 132, - NTbooks: 27, - NTchapters: 260, - NTverses: 7913, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TVKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tvk2011eb", - rodCode: 4465.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Southeast Ambrym Bible portions", - PODISBN: "978-1-5313-0665-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "twi", - translationId: "twi", - languageName: "Akuapem Twi", - languageNameInEnglish: "Twi", - dialect: "Twi", - homeDomain: "ebible.org", - title: "Biblica\u00ae Wonhia \u025bho kwamma nhoma Akuapem Twi Nkwa As\u025bm\u2122", - description: - "Twi: Biblica\u00ae Wonhia \u025bho kwamma nhoma Akuapem Twi Nkwa As\u025bm\u2122 (Bible)", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Biblica, Inc.", - UpdateDate: "2021-04-09", - publicationURL: "http://ebible.org/twi/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23142, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "AKATWI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "twi2020eb", - rodCode: 2272.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Akuapem Twi Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-04-10", - }, - { - languageCode: "txq", - translationId: "txq", - languageName: "Rote Tii", - languageNameInEnglish: "Tii", - dialect: null, - homeDomain: "alkitab.pw", - title: "Rote Tii Alkitab", - description: "Genesis and the New Testament in the Rote Tii language of Indonesia", - Redistributable: true, - Copyright: "Copyright \u00a9 2004-2011 Unit Bahasa dan Budaya", - UpdateDate: "2016-06-28", - publicationURL: "http://alkitab.pw/txq/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1422, - NTbooks: 27, - NTchapters: 260, - NTverses: 7661, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TXQUBB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "txq2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Rote Tii Bible", - PODISBN: "978-1-5313-0786-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "txu", - translationId: "txuNT", - languageName: "Kayap\u00f3", - languageNameInEnglish: "Kayap\u00f3", - dialect: null, - homeDomain: "ebible.org", - title: "Met\u0129ndjw\u1ef3nh Kute Mem\u00e3 Kab\u1ebdn Ny Jar\u1ebdnh", - description: "New Testament in Kayap\u00f3 (BR:txu:Kayap\u00f3)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-27", - publicationURL: "http://ebible.org/txuNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7675, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TXUTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "txu2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kayap\u00f3 NT", - PODISBN: "978-1-5313-0666-3", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "tzj", - translationId: "tzjE", - languageName: "Tz'utujil", - languageNameInEnglish: "Tz'utujil", - dialect: "Eastern", - homeDomain: "ebible.org", - title: "C\ua78cac\ua78c Chuminem", - description: "New Testament in Tz'utujil Eastern; tzj (GT:tzj:Tz'utujil)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tzjE/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7905, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TZJEAS", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tzjE2010eb", - rodCode: 19301.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Eastern Tz'utujil NT", - PODISBN: "978-1-5313-0667-0", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tzj", - translationId: "tzjNT", - languageName: "Tz'utujil", - languageNameInEnglish: "Tz'utujil", - dialect: "Western", - homeDomain: "ebible.org", - title: "Ja C\ua78cac\ua78ca Chominem", - description: "New Testament in Tz'utujil Western; tzj (GT:tzj:Tz'utujil)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tzjNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7906, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TZJWES", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tzj2010eb", - rodCode: 374.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Western Tz'utujil NT", - PODISBN: "978-1-5313-0668-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tzo", - translationId: "tzoNT", - languageName: "Tzotzil", - languageNameInEnglish: "Tzotzil", - dialect: "Huixtan", - homeDomain: "ebible.org", - title: "Ja\u02bc ti ach\u02bc Testamento: ja\u02bc sc\u02bcopilal ti Jesucristoe ja\u02bc ti Jcoltavanej cu\u02bcuntique", - description: "New Testament in Tzotzil Huixtan; tzo (MX:tzo:Tzotzil)", - Redistributable: true, - Copyright: "Copyright \u00a9 1995 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tzoNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7864, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TZOHUI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tzoH1995eb", - rodCode: 1204.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tzotzil Huixtan NT", - PODISBN: "978-1-5313-0669-4", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tzo", - translationId: "tzoSA", - languageName: "Tzotzil", - languageNameInEnglish: "Tzotzil", - dialect: "San Andres", - homeDomain: "ebible.org", - title: "Ach\u02bc Testamento: Ja\u02bc sc\u02bcoplal ti ja\u02bc Cajcoltavanejtic li Cajvaltic Jesucristoe", - description: "New Testament in Tzotzil San Andres; tzo (MX:tzo:Tzotzil)", - Redistributable: true, - Copyright: "Copyright \u00a9 1983 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tzoSA/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7795, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TZOSAN", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tzoSA1983eb", - rodCode: 2443.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tzotzil San Andres NT", - PODISBN: "978-1-5313-0670-0", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "tzo", - translationId: "tzotzc", - languageName: "Tzotzil de Chamula", - languageNameInEnglish: "Tzotzil", - dialect: "Chamula", - homeDomain: "ebible.org", - title: "TI ACH\ua78c REXTOMENTO YU\ua78cUN TI JESUCRISTOE", - description: "The New Testament in the Chamula dialect of the Tzotzil language of Mexico", - Redistributable: true, - Copyright: "Copyright \u00a9 1979, 1988, 2009 La Liga B\u00edblica", - UpdateDate: "2016-06-21", - publicationURL: "http://ebible.org/tzotzc/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7943, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TZOTZC", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tzotzc2009eb", - rodCode: 2641.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tzotzil de Chamula NT", - PODISBN: "978-1-5313-0773-8", - script: "Latin", - sourceDate: "2016-06-22", - }, - { - languageCode: "tzo", - translationId: "tzotze", - languageName: "Tzotzil de Chenalh\u00f3", - languageNameInEnglish: "Tzotzil", - dialect: "Chenalh\u00f3", - homeDomain: "ebible.org", - title: "ACH' TESTAMENTO", - description: - "The New Testament in the Chenalh\u00f3 dialect of the Tzotzil language of Mexico", - Redistributable: true, - Copyright: "Copyright \u00a9 1981 La Liga B\u00edblica", - UpdateDate: "2016-06-21", - publicationURL: "http://ebible.org/tzotze/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7839, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TZOTZE", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tzotze1981eb", - rodCode: 2681.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tzotzil de Chenalh\u00f3 NT", - PODISBN: "978-1-5313-0774-5", - script: "Latin", - sourceDate: "2012-04-12", - }, - { - languageCode: "tzo", - translationId: "tzoZNT", - languageName: "Tzotzil", - languageNameInEnglish: "Tzotzil", - dialect: "Zinacantan", - homeDomain: "ebible.org", - title: "Sc'op riox: ja' li' yaloj ti chac' jcuxlejaltic ta sbatel osli ti cajvaltic Jesucristoe", - description: "New Testament in Tzotzil Zinacantan; tzo (MX:tzo:Tzotzil)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/tzoZNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7807, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "TZOZIN", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "tzoZ2009eb", - rodCode: 60.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Tzotzil Zinacantan NT", - PODISBN: "978-1-5313-0671-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "ubr", - translationId: "ubr", - languageName: "Ubir", - languageNameInEnglish: "Ubir", - dialect: null, - homeDomain: "png.bible", - title: "God An Dura Bobaibasit Boboun", - description: "The New Testament and Genesis in the Ubir Language of Papaua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1997, 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-26", - publicationURL: "http://png.bible/ubr/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1518, - NTbooks: 27, - NTchapters: 260, - NTverses: 7916, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "UBRTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ubr2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Ubir Bible", - PODISBN: "978-1-5313-0672-4", - script: "Latin", - sourceDate: "2014-05-16", - }, - { - languageCode: "ubu", - translationId: "ubu-andelale", - languageName: "Umbu-Ungu Andelale", - languageNameInEnglish: "Umbu-Ungu", - dialect: "Andelale", - homeDomain: "png.bible", - title: "PULU YEMONGA UNGU KONDEMO", - description: - "The New Testament in the Andelale Dialect of the Umbu-Ungu Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1998 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-04", - publicationURL: "http://png.bible/ubu-andelale/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7703, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "UBUAND", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ubuA1998eb", - rodCode: 17940.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Umbu-Ungu Andelale NT", - PODISBN: "978-1-5313-0673-1", - script: "Latin", - sourceDate: "2015-02-20", - }, - { - languageCode: "ubu", - translationId: "ubu-kala", - languageName: "Umbu-Ungu Kala", - languageNameInEnglish: "Umbu-Ungu", - dialect: "Kala", - homeDomain: "png.bible", - title: "PULU YEMONGA UNGU KONDEMO", - description: - "The New Testament in the Kala Dialect of the Umbu-Ungu Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1995 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-04", - publicationURL: "http://png.bible/ubu-kala/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7726, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "UBUKAL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ubuK1995eb", - rodCode: 17941.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Umbu-Ungu Kala NT", - PODISBN: "978-1-5313-0674-8", - script: "Latin", - sourceDate: "2011-08-16", - }, - { - languageCode: "ubu", - translationId: "ubu-nopenge", - languageName: "Umbu-Ungu No Penge", - languageNameInEnglish: "Umbu-Ungu", - dialect: "No Penge", - homeDomain: "png.bible", - title: "PULU YEMONGA UNGU KONDEMO", - description: - "The New Testament in the No Penge Dialect of the Umbu-Ungu Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1995 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-20", - publicationURL: "http://png.bible/ubu-nopenge/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7725, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "UBUNOP", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ubuN1995eb", - rodCode: 17942.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Umbu-Ungu No Penge NT", - PODISBN: "978-1-5313-0675-5", - script: "Latin", - sourceDate: "2011-08-16", - }, - { - languageCode: "udi", - translationId: "udi", - languageName: null, - languageNameInEnglish: "Udi", - dialect: null, - homeDomain: "ebible.org", - title: "Udi Bible", - description: "Udi Scripture translation", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/udi/", - OTbooks: 1, - OTchapters: 4, - OTverses: 48, - NTbooks: 3, - NTchapters: 61, - NTverses: 2699, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "UDIWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "udi2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Udi Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "udu", - translationId: "udu", - languageName: "Uduk", - languageNameInEnglish: "Uduk", - dialect: null, - homeDomain: "ebible.org", - title: "Gwo Ma Arumgimis", - description: "Uduk New Testament and OT Portions", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 SIM International", - UpdateDate: "2014-10-02", - publicationURL: "http://ebible.org/udu/", - OTbooks: 3, - OTchapters: 220, - OTverses: 4538, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "UDUSIM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "udu2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Uduk Bible", - PODISBN: "978-1-5313-0676-2", - script: "Latin", - sourceDate: "2014-10-03", - }, - { - languageCode: "uig", - translationId: "uigara", - languageName: "Uyghur tili", - languageNameInEnglish: "Uyghur", - dialect: null, - homeDomain: "ebible.org", - title: "\u0645\u06c7\u0642\u06d0\u062f\u062f\u06d0\u0633\u202d \u202c\u0643\u0627\u0644\u0627\u0645 (\u202d\u202c\u064a\u06d5\u0646\u06af\u0649\u202d \u202c\u064a\u06d0\u0632\u0649\u0642\u202d \u202c )", - description: "The Holy Bible in the Uyghur language, written in Arabic script", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Mukeddes Kalam - Uyghur Bible Translation Committee", - UpdateDate: "2022-06-14", - publicationURL: "http://ebible.org/uigara/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22992, - NTbooks: 27, - NTchapters: 260, - NTverses: 7833, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "UIGARA", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "uigara2010eb", - rodCode: null, - textDirection: "rtl", - downloadable: true, - font: "Amiri", - shortTitle: "Uyghur Bible (arabic script)", - PODISBN: null, - script: "Latin", - sourceDate: "2022-06-14", - }, - { - languageCode: "uig", - translationId: "uigcyr", - languageName: "Uyghur tili", - languageNameInEnglish: "Uyghur", - dialect: null, - homeDomain: "ebible.org", - title: "\u041c\u0443\u049b\u0435\u0434\u0434\u0435\u0441 \u041a\u0430\u043b\u0430\u043c (\u043a\u0438\u0440\u0438\u043b \u0439\u0435\u0437\u0438\u049b)", - description: "The Holy Bible in the Uyghur language, written in Cyrillic script", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Mukeddes Kalam - Uyghur Bible Translation Committee", - UpdateDate: "2021-09-11", - publicationURL: "http://ebible.org/uigcyr/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22991, - NTbooks: 27, - NTchapters: 260, - NTverses: 7833, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "UIGCYR", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "uigcyr2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Uyghur Bible (cyrillic script)", - PODISBN: null, - script: "Latin", - sourceDate: "2021-09-12", - }, - { - languageCode: "uig", - translationId: "uiglat", - languageName: "Uyghur tili", - languageNameInEnglish: "Uyghur", - dialect: null, - homeDomain: "ebible.org", - title: "Muqeddes Kalam (latin y\u00e9ziq)", - description: "The Holy Bible in the Uyghur language, written in Latin script", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Mukeddes Kalam - Uyghur Bible Translation Committee", - UpdateDate: "2021-09-11", - publicationURL: "http://ebible.org/uiglat/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22992, - NTbooks: 27, - NTchapters: 260, - NTverses: 7833, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "UIGLAT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "uiglat2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Uyghur Bible (modern latin script)", - PODISBN: null, - script: "Latin", - sourceDate: "2021-09-12", - }, - { - languageCode: "uig", - translationId: "uigpin", - languageName: "Uyghur tili", - languageNameInEnglish: "Uyghur", - dialect: null, - homeDomain: "ebible.org", - title: "Mu\u2c6aeddes Kalam (y\u01ddngi yezi\u2c6a)", - description: "The Holy Bible in the Uyghur language, written in Pinyin script", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Mukeddes Kalam - Uyghur Bible Translation Committee", - UpdateDate: "2021-09-11", - publicationURL: "http://ebible.org/uigpin/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22991, - NTbooks: 27, - NTchapters: 260, - NTverses: 7833, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "UIGPIN", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "uigpin2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Uyghur Bible (former latin script)", - PODISBN: null, - script: "Latin", - sourceDate: "2021-09-12", - }, - { - languageCode: "ukr", - translationId: "ukr1871", - languageName: "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430", - languageNameInEnglish: "Ukrainian", - dialect: null, - homeDomain: "ebible.org", - title: "\u041d\u043e\u0432\u0438\u0439 \u0417\u0430\u0432\u0456\u0442. \u041f\u0435\u0440\u0435\u043a\u043b\u0430\u0434 \u041f. \u041a\u0443\u043b\u0456\u0448\u0430", - description: "The New Testament in Ukrainian, translated by P. Kulish in 1871", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2021-10-16", - publicationURL: "http://ebible.org/ukr1871/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "UKRPAN", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ukr1871eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Ukrainian NT by P. Kulish", - PODISBN: "978-1-5313-0677-9", - script: "Latin", - sourceDate: "2018-12-20", - }, - { - languageCode: "ukr", - translationId: "ukr1996", - languageName: "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430", - languageNameInEnglish: "Ukrainian", - dialect: null, - homeDomain: "ebible.org", - title: "\u0411\u0456\u0431\u043b\u0456\u044f", - description: "The Holy Bible in Ukrainian, Bob Jones University 1996", - Redistributable: true, - Copyright: "Copyright \u00a9 1996 Bob Jones University", - UpdateDate: "2021-10-16", - publicationURL: "http://ebible.org/ukr1996/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "UKR1996", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ukr1996eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Ukrainian Bible, BJU 1996", - PODISBN: null, - script: "Latin", - sourceDate: "2021-10-19", - }, - { - languageCode: "uli", - translationId: "uli", - languageName: "Ulithian", - languageNameInEnglish: "Ulithian", - dialect: null, - homeDomain: "ebible.org", - title: "Bogtag we ye Tefoy", - description: - "The New Testament in the Ulithian language of the Federated States of Micronesia", - Redistributable: true, - Copyright: "Copyright \u00a9 1995 Bible Society of Micronesia", - UpdateDate: "2020-02-25", - publicationURL: "http://ebible.org/uli/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7911, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ULIBSM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "uli1995eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Ulithian NT", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "ulk", - translationId: "ulk", - languageName: "Meriam Mir", - languageNameInEnglish: "Meriam", - dialect: null, - homeDomain: "ebible.org", - title: "Meriam Mir Bible", - description: "Draft of portions of the Holy Bible in the Meriam Mir language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1986-1989 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-09-16", - publicationURL: "http://ebible.org/ulk/", - OTbooks: 2, - OTchapters: 5, - OTverses: 79, - NTbooks: 10, - NTchapters: 49, - NTverses: 1069, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ULKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ulk1989eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Meriam Mir Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "upv", - translationId: "upv", - languageName: "Uripiv", - languageNameInEnglish: "Uripiv-Wala-Rano-Atchin", - dialect: "Uripiv", - homeDomain: "ebible.org", - title: "Naul On Nga Mimerr Uripiv", - description: "The New Testament in the Uripiv language of Vanuatu", - Redistributable: true, - Copyright: "Copyright \u00a9 1996 Wycliffe Bible Translators", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/upv/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7923, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "UPVWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "upv1996eb", - rodCode: 4722.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Uripiv New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2014-09-24", - }, - { - languageCode: "ura", - translationId: "uraNT", - languageName: "Urarina", - languageNameInEnglish: "Urarina", - dialect: null, - homeDomain: "ebible.org", - title: "Cana Coaunera Ere", - description: "New Testament in Urarina (PE:ura:Urarina)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/uraNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7752, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "URATBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ura2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Urarina NT", - PODISBN: "978-1-5313-0678-6", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "urb", - translationId: "urbNT", - languageName: "Kaapor", - languageNameInEnglish: "Kaapor", - dialect: null, - homeDomain: "ebible.org", - title: "Tup\u00e3 Je'\u1ebdha", - description: "New Testament in Kaapor (BR:urb:Kaapor)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-27", - publicationURL: "http://ebible.org/urbNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7751, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "URBWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "urb2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kaapor NT", - PODISBN: "978-1-5313-0679-3", - script: "Latin", - sourceDate: "2014-04-28", - }, - { - languageCode: "urd", - translationId: "urd", - languageName: "\u0627\u0631\u062f\u0648", - languageNameInEnglish: "\u0627\u0631\u062f\u0648", - dialect: null, - homeDomain: null, - title: "\u0907\u0902\u0921\u093f\u092f\u0928 \u0930\u093f\u0935\u093e\u0907\u091c\u094d\u0921 \u0935\u0930\u094d\u091c\u0928 (IRV) \u0909\u0930\u094d\u0926\u0942 - 2019", - description: - "\u0907\u0902\u0921\u093f\u092f\u0928 \u0930\u093f\u0935\u093e\u0907\u091c\u094d\u0921 \u0935\u0930\u094d\u091c\u0928 (IRV) \u0909\u0930\u094d\u0926\u0942 - 2019", - Redistributable: false, - Copyright: "Copyright \u00a9 2018 Bridge Connectivity Solutions Pvt. Ltd.", - UpdateDate: "2023-01-03", - publicationURL: "http:///urd/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "URDBCS", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "urd", - rodCode: null, - textDirection: "ltr", - downloadable: false, - font: "Gentium", - shortTitle: - "\u0907\u0902\u0921\u093f\u092f\u0928 \u0930\u093f\u0935\u093e\u0907\u091c\u094d\u0921 \u0935\u0930\u094d\u091c\u0928 (IRV) \u0909\u0930\u094d\u0926\u0942 - 2019", - PODISBN: null, - script: "Latin", - sourceDate: "2020-01-25", - }, - { - languageCode: "urd", - translationId: "urdgvh", - languageName: "\u0627\u0631\u062f\u0648", - languageNameInEnglish: "Urdu", - dialect: null, - homeDomain: "ebible.org", - title: "\u0915\u093f\u0924\u093e\u092c\u0947-\u092e\u0941\u0915\u093c\u0926\u094d\u0926\u0938", - description: "The Holy Bible in the Urdu language, Urdu Geo Version, Hindi Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Urdu Geo Version", - UpdateDate: "2022-05-03", - publicationURL: "http://ebible.org/urdgvh/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22715, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "URDGVH", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "urdgvh2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Akshar Unicode", - shortTitle: "Urdu Geo Bible, Hindi Script", - PODISBN: null, - script: "Latin", - sourceDate: "2022-02-16", - }, - { - languageCode: "urd", - translationId: "urdgvr", - languageName: null, - languageNameInEnglish: "Urdu", - dialect: null, - homeDomain: "ebible.org", - title: "Kitab-i Muqaddas", - description: "The Holy Bible in Urdu, Urdu Geo Version, Roman Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Urdu Geo Version", - UpdateDate: "2022-05-06", - publicationURL: "http://ebible.org/urdgvr/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22715, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "URDGVR", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "urdgvr2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "The Holy Bible in Urdu, Urdu Geo Version, Roman Script", - PODISBN: null, - script: "Latin", - sourceDate: "2022-05-06", - }, - { - languageCode: "urd", - translationId: "urdgvu", - languageName: "\u0909\u0930\u094d\u0926\u0942", - languageNameInEnglish: "Urdu", - dialect: null, - homeDomain: "ebible.org", - title: "\u06a9\u062a\u0627\u0628\u0650 \u0645\u0642\u062f\u0651\u0633", - description: "The Holy Bible in Urdu, Urdu Geo Version, Urdu Script", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Urdu Geo Version", - UpdateDate: "2022-05-06", - publicationURL: "http://ebible.org/urdgvu/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22715, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "URDGVU", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "urdgvu2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Awami Nastaliq", - shortTitle: "Urdu Geo Bible (Urdu Script)", - PODISBN: null, - script: "Latin", - sourceDate: "2022-05-04", - }, - { - languageCode: "uri", - translationId: "uri", - languageName: "Urim", - languageNameInEnglish: "Urim", - dialect: "Kalpm", - homeDomain: "png.bible", - title: "Wurkapm a Maur Wailen", - description: "Urim: Wurkapm a Maur Wailen Portions", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-07-12", - publicationURL: "http://png.bible/uri/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 6, - NTchapters: 68, - NTverses: 2487, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "URIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "uri2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Urim: Wurkapm a Maur Wailen Portions", - PODISBN: null, - script: "Latin", - sourceDate: "2021-05-11", - }, - { - languageCode: "urt", - translationId: "urt", - languageName: "Urat", - languageNameInEnglish: "Urat", - dialect: "Yehre", - homeDomain: "png.bible", - title: "Wusyep Bwore tikin Got", - description: "The New Testament in the Urat language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-12-22", - publicationURL: "http://png.bible/urt/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7828, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "URTWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "urt2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Urat New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2021-10-19", - }, - { - languageCode: "urw", - translationId: "urw", - languageName: "Sob Dora", - languageNameInEnglish: "Sop", - dialect: null, - homeDomain: "png.bible", - title: "Profet Yonab Budi / Dora Nama Lukde Feiaga", - description: "Sop: Profet Yonab Budi / Dora Nama Lukde Feiaga (Portions)", - Redistributable: true, - Copyright: "Copyright \u00a9 2007, 2015 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://png.bible/urw/", - OTbooks: 1, - OTchapters: 4, - OTverses: 47, - NTbooks: 1, - NTchapters: 24, - NTverses: 1137, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "URWPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "urw2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sop Jonah and Luke", - PODISBN: null, - script: "Latin", - sourceDate: "2018-02-07", - }, - { - languageCode: "ury", - translationId: "ury", - languageName: null, - languageNameInEnglish: "Orya", - dialect: null, - homeDomain: "ebible.org", - title: "Alap mo Ol \u00cbse, z\u00ebre mo zi niban de ol ziaha-en gu hup dena", - description: - "Orya: Alap mo Ol \u00cbse, z\u00ebre mo zi niban de ol ziaha-en gu hup dena (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2005, 2018 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/ury/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7763, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "URYWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ury2018eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Orya: Alap mo Ol \u00cbse, z\u00ebre mo zi niban de ol ziaha-en gu hup dena (New Testament)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "usa", - translationId: "usa", - languageName: "Usarufa", - languageNameInEnglish: "Usarufa", - dialect: null, - homeDomain: "png.bible", - title: "a\u00fagen-anona-anon-aimma", - description: - "Genesis 12-22 and The New Testament in the Usarufa Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1980 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/usa/", - OTbooks: 1, - OTchapters: 11, - OTverses: 265, - NTbooks: 27, - NTchapters: 260, - NTverses: 7887, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "USAWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "usa1980eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Usarufa Bible", - PODISBN: "978-1-5313-0680-9", - script: "Latin", - sourceDate: "2011-08-16", - }, - { - languageCode: "usp", - translationId: "uspNT", - languageName: "Uspanteko", - languageNameInEnglish: "Uspanteko", - dialect: null, - homeDomain: "ebible.org", - title: "Lok'laj Jyolj Kakaj Dios", - description: "New Testament in Uspanteko (GT:usp:Uspanteko)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/uspNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "USPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "usp2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Uspanteko NT", - PODISBN: "978-1-5313-0681-6", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "uvh", - translationId: "uvh", - languageName: "Urii", - languageNameInEnglish: "Uri", - dialect: null, - homeDomain: "png.bible", - title: "ANUTUNING MIDI TOTANGAKA INGA'NI", - description: "The New Testament in the Urii lanugage of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-02-07", - publicationURL: "http://png.bible/uvh/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7691, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "UVHWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "uvh2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Urii NT", - PODISBN: "978-1-5313-0682-3", - script: "Latin", - sourceDate: "2022-02-08", - }, - { - languageCode: "uvl", - translationId: "uvl", - languageName: "Lote", - languageNameInEnglish: "Lote", - dialect: null, - homeDomain: "png.bible", - title: "Tomunga Hel Heueu Ngana", - description: "Genesis and the New Testament in the Lote Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2009, 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-11-09", - publicationURL: "http://png.bible/uvl/", - OTbooks: 1, - OTchapters: 50, - OTverses: 1532, - NTbooks: 27, - NTchapters: 260, - NTverses: 7912, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "UVLWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "uvl2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Lote Bible", - PODISBN: "978-1-5313-0683-0", - script: "Latin", - sourceDate: "2022-11-09", - }, - { - languageCode: "var", - translationId: "var", - languageName: "Huarijio", - languageNameInEnglish: "Huarijio", - dialect: null, - homeDomain: "ebible.org", - title: "Riosia Warijio Nayewani Ahpo Tisiwa Kaaweruma Tuuyewari", - description: - "Huarij\u00edo: Riosia Warijio Nayewani Ahpo Tisiwa Kaaweruma Tuuyewari New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/var/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "VARWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "var2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: - "Huarij\u00edo: Riosia Warijio Nayewani Ahpo Tisiwa Kaaweruma Tuuyewari New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-18", - }, - { - languageCode: "vid", - translationId: "vid", - languageName: "Vidunda", - languageNameInEnglish: "Vidunda", - dialect: null, - homeDomain: "ebible.org", - title: "Ilagano lya Katali, Ilagano Linyale kwa Wanhu Weng\u2019ha", - description: "The New Testament + Genesis in Vidunda", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://ebible.org/vid/", - OTbooks: 5, - OTchapters: 187, - OTverses: 5851, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "VIDPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "vid2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Vidunda NT+", - PODISBN: "978-1-5313-0685-4", - script: "Latin", - sourceDate: "2019-12-30", - }, - { - languageCode: "vie", - translationId: "vie1934", - languageName: "Ti\u1ebfng Vi\u1ec7t", - languageNameInEnglish: "Vietnamese", - dialect: null, - homeDomain: "ebible.org", - title: "Kinh Th\u00e1nh", - description: "The Holy Bible in the Vietnamese language (1923)", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2022-06-09", - publicationURL: "http://ebible.org/vie1934/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7957, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "VIE1934", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "vie1934eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Vietnamese Bible 1923", - PODISBN: null, - script: "Latin", - sourceDate: "2022-06-10", - }, - { - languageCode: "vie", - translationId: "vie2011", - languageName: "Vi\u1ec7t", - languageNameInEnglish: "Vietnamese", - dialect: null, - homeDomain: "ebible.org", - title: "Th\u00e1nh Kinh B\u1ea3n Ph\u1ed5 th\u00f4ng", - description: "Easy Reading Verson of the Holy Bible in Vietnamese", - Redistributable: false, - Copyright: "Copyright \u00a9 2002, 2011 World Bible Translation Center", - UpdateDate: "2013-10-29", - publicationURL: "http://ebible.org/vie2011/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23110, - NTbooks: 27, - NTchapters: 260, - NTverses: 7934, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "VIEWTC", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "vie2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Vietnamese Easy Reading Verson", - PODISBN: "978-1-5313-0821-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "vie", - translationId: "vieovcb", - languageName: "Ti\u1ebfng Vi\u1ec7t", - languageNameInEnglish: "Ti\u1ebfng Vi\u1ec7t", - dialect: null, - homeDomain: "ebible.org", - title: "Biblica\u00ae Thi\u00ean Ban Kinh Th\u00e1nh Hi\u1ec7n \u0110\u1ea1i\u2122", - description: - "Vietnamese: Biblica\u00ae Thi\u00ean Ban Kinh Th\u00e1nh Hi\u1ec7n \u0110\u1ea1i\u2122 (Bible)", - Redistributable: true, - Copyright: "Copyright \u00a9 2015 Biblica, Inc.", - UpdateDate: "2021-04-12", - publicationURL: "http://ebible.org/vieovcb/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7951, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "VIEVCB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "vieovcb2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Vietnamese Contemporary Bible", - PODISBN: null, - script: "Code for inherited script", - sourceDate: "2021-02-04", - }, - { - languageCode: "viv", - translationId: "viv", - languageName: "Iduna", - languageNameInEnglish: "Iduna", - dialect: null, - homeDomain: "png.bible", - title: "YAUBADA BONANA VEYAO IVAGUNA Bona Iduna", - description: "The New Testament in the Iduna Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1983, 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-26", - publicationURL: "http://png.bible/viv/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7562, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "VIVWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "viv2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Iduna NT", - PODISBN: "978-1-5313-0686-1", - script: "Latin", - sourceDate: "2012-11-27", - }, - { - languageCode: "vmy", - translationId: "vmyNT", - languageName: "Mazateco, Ayautla", - languageNameInEnglish: "Mazateco, Ayautla", - dialect: null, - homeDomain: "ebible.org", - title: "El Nuevo Testamento Mazateco de Ayautla", - description: "New Testament in the Ayautla Mazateco language of Mexico", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/vmyNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "VMYWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "vmy2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "NT in Ayautla Mazateco", - PODISBN: "978-1-5313-0687-8", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "waj", - translationId: "waj", - languageName: "Waffa", - languageNameInEnglish: "Waffa", - dialect: null, - homeDomain: "png.bible", - title: "Karaasa Yeena Rau Kioo Kuaivovee", - description: "The New Testament in the Waffa Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1975 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/waj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7899, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WAJWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "waj1975eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Waffa NT", - PODISBN: "978-1-5313-0688-5", - script: "Latin", - sourceDate: "2011-08-16", - }, - { - languageCode: "wal", - translationId: "wal", - languageName: "Wolaytta", - languageNameInEnglish: "Wolaytta", - dialect: null, - homeDomain: "ebible.org", - title: "Wolaytta Bible", - description: "Portions of the Holy Bible in the Wolaytta language of Ethiopia", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 SIM", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/wal/", - OTbooks: 34, - OTchapters: 750, - OTverses: 20040, - NTbooks: 24, - NTchapters: 219, - NTverses: 6904, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WALSIM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wal2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Wolaytta Bible", - PODISBN: "978-1-5313-0689-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "wap", - translationId: "wapNT", - languageName: "Wapishana", - languageNameInEnglish: "Wapishana", - dialect: null, - homeDomain: "ebible.org", - title: "Kaimana'o Tominkaru Paradan", - description: "New Testament in Wapishana (GY:wap:Wapishana)", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/wapNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7898, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WAPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wap2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Wapishana NT", - PODISBN: "978-1-5313-0690-8", - script: "Latin", - sourceDate: "2014-05-16", - }, - { - languageCode: "wat", - translationId: "wat", - languageName: "Kaninuwa", - languageNameInEnglish: "Kaninuwa", - dialect: null, - homeDomain: "png.bible", - title: "Buk Baibel long Kaninuwa", - description: "Portions of the Holy Bible in the Kaninuwa language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-04-13", - publicationURL: "http://png.bible/wat/", - OTbooks: 3, - OTchapters: 61, - OTverses: 959, - NTbooks: 2, - NTchapters: 44, - NTverses: 1640, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WATWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wat2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kaninuwa Bible", - PODISBN: "978-1-5313-0691-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "wbi", - translationId: "wbi", - languageName: "Kivwanji", - languageNameInEnglish: "Vwanji", - dialect: null, - homeDomain: "ebible.org", - title: "Vwanji Bible", - description: "The New Testament in the Vwanji language of Tanzania", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door43 World Mission Community", - UpdateDate: "2020-11-10", - publicationURL: "http://ebible.org/wbi/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WBIULB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wbi2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Vwanji NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-11", - }, - { - languageCode: "wbp", - translationId: "wbp", - languageName: "Warlpiri", - languageNameInEnglish: "Warlpiri", - dialect: null, - homeDomain: "ebible.org", - title: "Warlpiri Short Bible", - description: "The Shorter Bible in the Warlpiri language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2019-05-16", - publicationURL: "http://ebible.org/wbp/", - OTbooks: 9, - OTchapters: 215, - OTverses: 2683, - NTbooks: 27, - NTchapters: 260, - NTverses: 7488, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WBPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wbp2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Warlpiri Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "wed", - translationId: "wed", - languageName: "Wedau", - languageNameInEnglish: "Wedau", - dialect: null, - homeDomain: "png.bible", - title: "Wedau Mark", - description: "The Gospel of Mark in the Wedau Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-08-30", - publicationURL: "http://png.bible/wed/", - OTbooks: 28, - OTchapters: 229, - OTverses: 2464, - NTbooks: 2, - NTchapters: 44, - NTverses: 1638, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WEDWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wedW2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Wedau Mark", - PODISBN: "978-1-5313-0692-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "wed", - translationId: "wed-topura", - languageName: "Topura (Wedau)", - languageNameInEnglish: "Wedau", - dialect: "Topura", - homeDomain: "png.bible", - title: "Topura (Wedau) Mark", - description: - "The Gospel of Mark in the Topura dialect of the Wedau Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-12-11", - publicationURL: "http://png.bible/wed-topura/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 16, - NTverses: 659, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WEDTOP", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wedT2010eb", - rodCode: 2296.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Wedau Topura Mark", - PODISBN: "978-1-5313-0693-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "wer", - translationId: "wer", - languageName: "Weri", - languageNameInEnglish: "Weri", - dialect: null, - homeDomain: "png.bible", - title: "NG\u00d6N\u00cbN PEPEWER", - description: "The New Testament in the Weri Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1984 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/wer/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7898, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WERTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wer1984eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Weri NT", - PODISBN: "978-1-5313-0694-6", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "wib", - translationId: "wib", - languageName: "Toussian, Southern", - languageNameInEnglish: "Toussian, Southern", - dialect: null, - homeDomain: "ebible.org", - title: "wi\u0303n n\u0269\u0300v\u0269\u0300n\u0269\u0300 tirl\u025b", - description: - "toussian du sud: wi\u0303n n\u0269\u0300v\u0269\u0300n\u0269\u0300 tirl\u025b New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/wib/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 22, - NTchapters: 216, - NTverses: 6987, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WIBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wib2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: " Southern Toussian NT", - PODISBN: null, - script: "Arabic", - sourceDate: "2020-12-01", - }, - { - languageCode: "wim", - translationId: "wim", - languageName: "Wik-Mungkan", - languageNameInEnglish: "Wik-Mungkan", - dialect: null, - homeDomain: "ebible.org", - title: "Wik Inangan Kan-Kanam God.antama", - description: "The New Testament in the Wik-Mungkan language of Cape York, Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1984 Wycliffe Bible Translators", - UpdateDate: "2019-05-14", - publicationURL: "http://ebible.org/wim/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7705, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WIMWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wim1984eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Wik-Mungkan NT", - PODISBN: null, - script: "Latin", - sourceDate: "2019-02-18", - }, - { - languageCode: "wiu", - translationId: "wiu", - languageName: "Witu", - languageNameInEnglish: "Wiru", - dialect: null, - homeDomain: "png.bible", - title: "Weneya Totono Keraisu Yesunomo", - description: - "The New Testament in the Witu Language (also known as the Wiru Language) of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1990, 1992 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-26", - publicationURL: "http://png.bible/wiu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7817, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WIUTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wiu1992eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Witu NT", - PODISBN: "978-1-5313-0695-3", - script: "Latin", - sourceDate: "2012-11-26", - }, - { - languageCode: "wiv", - translationId: "wiv", - languageName: "Pole Vitu", - languageNameInEnglish: "Vitu", - dialect: "Vitu", - homeDomain: "png.bible", - title: "Kalohua Kemi ke Iesus na Polea Vitu", - description: "The New Testament in the Vitu language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Wyclif e Bijbelvertalers Nederland", - UpdateDate: "2022-08-19", - publicationURL: "http://png.bible/wiv/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7927, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WIVWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wiv2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Vitu NT", - PODISBN: null, - script: "Latin", - sourceDate: "2021-02-19", - }, - { - languageCode: "wlg", - translationId: "wlg", - languageName: "Kunbarlang", - languageNameInEnglish: "Kunbarlang", - dialect: null, - homeDomain: "ebible.org", - title: "Kunbarlang Christmas Story", - description: "Part of Luke 2 in the Kunbarlang language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 2021 Wycliffe Bible Translators", - UpdateDate: "2021-11-23", - publicationURL: "http://ebible.org/wlg/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 1, - NTverses: 5, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WLGWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wlg2021eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kunbarlang Christmas Story", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-24", - }, - { - languageCode: "wmt", - translationId: "wmt", - languageName: "Walmajarri", - languageNameInEnglish: "Walmajarri", - dialect: null, - homeDomain: "ebible.org", - title: "Wangki Wulyu Jirrkirlikanujuwal", - description: "Portions of the Holy Bible in the Walmajarri language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1985 Wycliffe Bible Translators", - UpdateDate: "2019-05-14", - publicationURL: "http://ebible.org/wmt/", - OTbooks: 9, - OTchapters: 98, - OTverses: 148, - NTbooks: 8, - NTchapters: 51, - NTverses: 1001, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WMTWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wmt1985eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Walmajarri Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2016-07-26", - }, - { - languageCode: "wmw", - translationId: "wmw", - languageName: "Mwani", - languageNameInEnglish: "Mwani", - dialect: null, - homeDomain: "ebible.org", - title: "Habari Ngema", - description: "New Testament in Mwani", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2016-06-30", - publicationURL: "http://ebible.org/wmw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WMWWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wmw2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Mwani NT", - PODISBN: "978-1-5313-0696-0", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "wnc", - translationId: "wnc", - languageName: "Wantoat", - languageNameInEnglish: "Wantoat", - dialect: null, - homeDomain: "png.bible", - title: "Anututane Wam Kwikwiu Kayuk Kaknga Jesu Kraisda Takepbut Taknga Anin gatu Sam Kuupbam Lotutane Kap Taknga", - description: "The New Testament and Psalms in the Wantoat Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1975, 2001 The Bible Society of Papua New Guinea", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/wnc/", - OTbooks: 1, - OTchapters: 150, - OTverses: 2461, - NTbooks: 27, - NTchapters: 260, - NTverses: 7795, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WNCPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wnc2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Wantoat NT", - PODISBN: "978-1-5313-0697-7", - script: "Latin", - sourceDate: "2011-08-16", - }, - { - languageCode: "wnu", - translationId: "wnu", - languageName: "Usan", - languageNameInEnglish: "Usan", - dialect: null, - homeDomain: "png.bible", - title: "Qenu Qob Uber", - description: "New Testament in the Usan Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2001 The Bible Society of Papua New Guinea", - UpdateDate: "2012-11-26", - publicationURL: "http://png.bible/wnu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7722, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WNUPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wnu2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Usan NT", - PODISBN: "978-1-5313-0698-4", - script: "Latin", - sourceDate: "2012-11-27", - }, - { - languageCode: "wob", - translationId: "wob", - languageName: null, - languageNameInEnglish: "W\u00e8 Northern", - dialect: null, - homeDomain: "ebible.org", - title: "DB\u0190\u0190D\u0190 DEE\u2011", - description: "W\u00e8 Northern: DB\u0190\u0190D\u0190 DEE\u2011 New Testament+", - Redistributable: false, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/wob/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7928, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WOBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wob2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "W\u00e8 Northern NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-02", - }, - { - languageCode: "wol", - translationId: "wol2010", - languageName: "Wolof", - languageNameInEnglish: "Wolof", - dialect: "Regional Wolof", - homeDomain: "ebible.org", - title: "T\u00e9ereb Injiil", - description: "The New Testament in Wolof, 2010 version.", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 La Mission Baptiste du S\u00e9n\u00e9gal", - UpdateDate: "2020-07-09", - publicationURL: "http://ebible.org/wol2010/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7918, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WOLINJ", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wol2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Wolof NT 2010", - PODISBN: null, - script: "Latin", - sourceDate: "2020-07-11", - }, - { - languageCode: "wol", - translationId: "wolKYG", - languageName: "Wolof", - languageNameInEnglish: "Wolof", - dialect: "Regional Wolof", - homeDomain: "ebible.org", - title: "K\u00e0ddug Y\u00e0lla gi", - description: "Wolof Bible 2020 revision.", - Redistributable: true, - Copyright: "Copyright \u00a9 2010, 2020 La Mission Baptiste du S\u00e9n\u00e9gal", - UpdateDate: "2020-07-22", - publicationURL: "http://ebible.org/wolKYG/", - OTbooks: 35, - OTchapters: 819, - OTverses: 20147, - NTbooks: 21, - NTchapters: 188, - NTverses: 5192, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WOLKYG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wol2020KYGeb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Wolof Bible 2020", - PODISBN: null, - script: "Latin", - sourceDate: "2020-07-23", - }, - { - languageCode: "wos", - translationId: "wos", - languageName: "Hanga Hundi", - languageNameInEnglish: "Hanga Hundi", - dialect: null, - homeDomain: "png.bible", - title: "Godna Hundi", - description: "The New Testament and Jonah in the Hanga Hundi language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1997 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-02-02", - publicationURL: "http://png.bible/wos/", - OTbooks: 1, - OTchapters: 4, - OTverses: 48, - NTbooks: 27, - NTchapters: 260, - NTverses: 7816, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WOSWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wos1997eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Hanga Hundi Bible", - PODISBN: "978-1-5313-0699-1", - script: "Latin", - sourceDate: "2013-02-02", - }, - { - languageCode: "wrk", - translationId: "wrk", - languageName: "Garrwa", - languageNameInEnglish: "Garrwa", - dialect: null, - homeDomain: "ebible.org", - title: "Shorter New Testament", - description: "The Shorter New Testament in the Garrwa language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1983 Wycliffe Bible Translators, Inc.", - UpdateDate: "2021-11-12", - publicationURL: "http://ebible.org/wrk/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 22, - NTchapters: 169, - NTverses: 4856, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WRKWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wrk1983eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Garrwa Shorter New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2019-08-12", - }, - { - languageCode: "wro", - translationId: "wro", - languageName: "Worrorra", - languageNameInEnglish: "Worrorra", - dialect: null, - homeDomain: "ebible.org", - title: "Worrorra Mark & Luke", - description: "The Gospels According to Mark and Luke in the Worrorra language of Australia", - Redistributable: true, - Copyright: "public domain", - UpdateDate: "2019-05-16", - publicationURL: "http://ebible.org/wro/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 2, - NTchapters: 40, - NTverses: 1829, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WROBFB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wro1943eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Worrorra Mark and Luke", - PODISBN: null, - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "wrs", - translationId: "wrs", - languageName: "Walsa/Waris", - languageNameInEnglish: "Waris", - dialect: null, - homeDomain: "png.bible", - title: "Sesoana Besal Nemelmoa Walsana Moana", - description: - "Genesis, Ruth, Jonah, and The New Testament in the Waris Language, also called the Walsa Language, of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2002 The Bible Society of Papua New Guinea", - UpdateDate: "2020-04-23", - publicationURL: "http://png.bible/wrs/", - OTbooks: 3, - OTchapters: 58, - OTverses: 1586, - NTbooks: 27, - NTchapters: 260, - NTverses: 7400, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WRSPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wrs2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Waris Bible", - PODISBN: "978-1-5313-0703-5", - script: "Latin", - sourceDate: "2020-04-24", - }, - { - languageCode: "wsk", - translationId: "wsk", - languageName: "Waskia", - languageNameInEnglish: "Waskia", - dialect: null, - homeDomain: "png.bible", - title: "KAEM KO DEN", - description: - "The New Testament and portions of the Old Testament in the Waskia Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1985, 2011, 2014 The Bible Society of Papua New Guinea", - UpdateDate: "2016-11-07", - publicationURL: "http://png.bible/wsk/", - OTbooks: 11, - OTchapters: 271, - OTverses: 5635, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WSKPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wsk2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Waskia Bible", - PODISBN: "978-1-5313-0704-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "wuv", - translationId: "wuv", - languageName: "Wuvalu-Aua", - languageNameInEnglish: "Wuvalu-Aua", - dialect: null, - homeDomain: "png.bible", - title: "Wuvulu Manufau Fi'ugaia", - description: "The New Testament in the Wuvalu-Aua Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-11-26", - publicationURL: "http://png.bible/wuv/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7941, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "WUVWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "wuv2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Wuvalu-Aua NT", - PODISBN: "978-1-5313-0705-9", - script: "Latin", - sourceDate: "2012-11-27", - }, - { - languageCode: "xav", - translationId: "xavNT", - languageName: "Xav\u00e1nte", - languageNameInEnglish: "Xav\u00e1nte", - dialect: null, - homeDomain: "ebible.org", - title: "'Re \u0129h\u00e2imana u'\u00e2si mono zadawa wasu'u", - description: "New Testament in Xav\u00e1nte (BR:xav:Xav\u00e1nte)", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/xavNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7428, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XAVTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xav2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Xav\u00e1nte NT", - PODISBN: "978-1-5313-0706-6", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "xbi", - translationId: "xbi-w", - languageName: "Kombio Wampukuamp", - languageNameInEnglish: "Kombio", - dialect: "Wampukuamp", - homeDomain: "png.bible", - title: "Kombio Wampukuamp Bible Portions", - description: - "Selected Scripture Portions in the Wampukuamp Dialect of the Kombio Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2000 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-08-21", - publicationURL: "http://png.bible/xbi-w/", - OTbooks: 1, - OTchapters: 4, - OTverses: 45, - NTbooks: 3, - NTchapters: 36, - NTverses: 1135, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XBIWAM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xbiW2000eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kombio Wampukuamp Bible", - PODISBN: "978-1-5313-0707-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "xbi", - translationId: "xbi-y", - languageName: "Kombio Yanimoi", - languageNameInEnglish: "Kombio", - dialect: "Yanimoi", - homeDomain: "png.bible", - title: "Kombio Yanimoi Bible Portions", - description: - "Selected Scriptures in the Yanimoi Dialect of the Kombio Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2013-08-21", - publicationURL: "http://png.bible/xbi-y/", - OTbooks: 3, - OTchapters: 14, - OTverses: 145, - NTbooks: 3, - NTchapters: 36, - NTverses: 1132, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XBIYAN", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xbiY2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Kombio Yanimoi Bible", - PODISBN: "978-1-5313-0708-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "xed", - translationId: "xed", - languageName: "Hdi", - languageNameInEnglish: "Hdi", - dialect: null, - homeDomain: "ebible.org", - title: "Deftera Lfi\u0257a Dzratawi", - description: "New Testament in Hdi", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/xed/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XEDWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xed2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Hdi NT", - PODISBN: "978-1-5313-0709-7", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "xla", - translationId: "xla", - languageName: "Kamula", - languageNameInEnglish: "Kamula", - dialect: null, - homeDomain: "png.bible", - title: "Ka\ua789dle Yu", - description: - "Genesis, Exodus, Jonah, and the New Testament in the Kamula language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2005 The Bible Society of Papua New Guinea", - UpdateDate: "2012-01-20", - publicationURL: "http://png.bible/xla/", - OTbooks: 3, - OTchapters: 77, - OTverses: 1995, - NTbooks: 27, - NTchapters: 260, - NTverses: 7714, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XLAPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xla2005eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Kamula Bible", - PODISBN: "978-1-5313-0710-3", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "xnn", - translationId: "xnn", - languageName: "Kankanay, Northern", - languageNameInEnglish: "Kankanay, Northern", - dialect: null, - homeDomain: "ebible.org", - title: "Kalin Apo Dios", - description: "New Testament in Kankanay, Northern", - Redistributable: true, - Copyright: "Copyright \u00a9 1984 Wycliffe Bible Translators, Inc.", - UpdateDate: "2018-04-23", - publicationURL: "http://ebible.org/xnn/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7779, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XNNWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xnn1984eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "New Testament in Kankanay, Northern", - PODISBN: "978-1-5313-0711-0", - script: "Latin", - sourceDate: "2015-09-11", - }, - { - languageCode: "xon", - translationId: "xon", - languageName: "Konkomba", - languageNameInEnglish: "Konkomba", - dialect: null, - homeDomain: "ebible.org", - title: "Uwumb\u0254r aagba\u014b", - description: "Bible without Deuterocanon in Konkomba", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-03-17", - publicationURL: "http://ebible.org/xon/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7904, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XONWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xon2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Konkomba", - PODISBN: "978-1-5313-0712-7", - script: "Latin", - sourceDate: "2015-03-18", - }, - { - languageCode: "xrb", - translationId: "xrb", - languageName: "Eastern Karaboro", - languageNameInEnglish: "Eastern Karaboro", - dialect: null, - homeDomain: "ebible.org", - title: "Y\u00c3H\u00c3 NAAMBIY\u00c3RF\u00c3N SABA", - description: "Karaboro, Eastern: Y\u00c3H\u00c3 NAAMBIY\u00c3RF\u00c3N SABA New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1993 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/xrb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7925, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XRBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xrb1993eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Karaboro, Eastern: Y\u00c3H\u00c3 NAAMBIY\u00c3RF\u00c3N SABA New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "xsb", - translationId: "xsb", - languageName: null, - languageNameInEnglish: "Sambal", - dialect: null, - homeDomain: "ebible.org", - title: "Tina Sambal", - description: "Sambal: Tina Sambal (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 1999 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/xsb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XSBWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xsb1999eb", - rodCode: 1985.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Tina Sambal NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "xsi", - translationId: "xsi", - languageName: "Sio", - languageNameInEnglish: "Sio", - dialect: null, - homeDomain: "png.bible", - title: "MARO KINDENI KAWA \u014aGUA", - description: "The New Testament and Psalms in the Sio Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1995 Wycliffe Bible Translators", - UpdateDate: "2013-02-09", - publicationURL: "http://png.bible/xsi/", - OTbooks: 1, - OTchapters: 150, - OTverses: 2441, - NTbooks: 27, - NTchapters: 260, - NTverses: 7906, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XSIWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xsi1995eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Sio NT + Psalms", - PODISBN: null, - script: "Latin", - sourceDate: "2013-02-09", - }, - { - languageCode: "xsm", - translationId: "xsm", - languageName: null, - languageNameInEnglish: "Kasem", - dialect: null, - homeDomain: "ebible.org", - title: "W\u025b T\u0254n\u0254 d\u0269 kas\u0269m", - description: "Kasem (Kassem): W\u025b T\u0254n\u0254 d\u0269 kas\u0269m New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 1997 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/xsm/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7911, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XSMWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xsm1997eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kasem NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "xsr", - translationId: "xsr", - languageName: null, - languageNameInEnglish: "Sherpa", - dialect: null, - homeDomain: "ebible.org", - title: "\u0915\u094b\u0928\u094d\u091b\u094d\u200c\u092f\u094b\u0915\u0915\u0940 \u0938\u0941\u0919", - description: - "Sherpa: \u0915\u094b\u0928\u094d\u091b\u094d\u200c\u092f\u094b\u0915\u0915\u0940 \u0938\u0941\u0919 New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/xsr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7946, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XSRWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xsr2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sherpa NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "xtc", - translationId: "xtc", - languageName: null, - languageNameInEnglish: "Katcha-Kadugli-Miri", - dialect: null, - homeDomain: "ebible.org", - title: "Katcha", - description: "Katcha-Kadugli-Miri: Katcha (Old Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2020 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/xtc/", - OTbooks: 2, - OTchapters: 8, - OTverses: 133, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XTCWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xtc2020eb", - rodCode: 1973.0, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Katcha OT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "xtd", - translationId: "xtdNT", - languageName: "Mixtec, Diuxi-tilantongo", - languageNameInEnglish: "Mixtec, Diuxi-tilantongo", - dialect: null, - homeDomain: "ebible.org", - title: "Tnu\u02bcu va\u02bca tnu\u02bcu Jesucristo", - description: "New Testament in Mixtec, Diuxi-tilantongo (MX:xtd:Mixtec, Diuxi-tilantongo)", - Redistributable: true, - Copyright: "Copyright \u00a9 2001 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/xtdNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7892, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XTDTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xtd2001eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Diuxi-tilantongo Mixtec NT", - PODISBN: "978-1-5313-0714-1", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "xtm", - translationId: "xtmNTpp", - languageName: "Mixtec, Magdalena Pe\u00f1asco", - languageNameInEnglish: "Mixtec, Magdalena Pe\u00f1asco", - dialect: null, - homeDomain: "ebible.org", - title: "Tnu'u vii tnu'u va'a Su'si ma", - description: - "New Testament, Psalms and Proverbs in Mixtec, Magdalena Pe\u00f1asco (MX:xtm:Mixtec, Magdalena Pe\u00f1asco)", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/xtmNTpp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XTMWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xtm2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Magdalena Pe\u00f1asco Mixtec Bible", - PODISBN: "978-1-5313-0715-8", - script: "Latin", - sourceDate: "2014-04-30", - }, - { - languageCode: "xtn", - translationId: "xtn", - languageName: "Mixtec, Northern Tlaxiaco", - languageNameInEnglish: "Mixtec, Northern Tlaxiaco", - dialect: null, - homeDomain: "ebible.org", - title: "Tutu ii - Ka\ua78can ia Dios nuu ndi\ua78ci \u00f1ayiu", - description: - "Mixtec, Northern Tlaxiaco: Tutu ii - Ka\ua78can ia Dios nuu ndi\ua78ci \u00f1ayiu New Testament+", - Redistributable: false, - Copyright: "Copyright \u00a9 2016 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/xtn/", - OTbooks: 11, - OTchapters: 331, - OTverses: 7062, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XTNWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xtn2016eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Northern Tlaxiaco Mixtec Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-03", - }, - { - languageCode: "xuo", - translationId: "xuo", - languageName: null, - languageNameInEnglish: "Kuo", - dialect: null, - homeDomain: "ebible.org", - title: "Mbe\u0257e s\u00e1ka kuni fie", - description: "New Testament in Kuo", - Redistributable: false, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-18", - publicationURL: "http://ebible.org/xuo/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7912, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "XUOWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "xuo2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Kuo NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-19", - }, - { - languageCode: "yaa", - translationId: "yaaNT", - languageName: "Yaminahua", - languageNameInEnglish: "Yaminahua", - dialect: null, - homeDomain: "ebible.org", - title: "Niospa meka fena Jesucristo\u00f5noa", - description: "New Testament in Yaminahua (PE:yaa:Yaminahua)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2018-11-16", - publicationURL: "http://ebible.org/yaaNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7662, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YAATBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yaa2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yaminahua NT", - PODISBN: "978-1-5313-0716-5", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "yad", - translationId: "yadNT", - languageName: "Yagua", - languageNameInEnglish: "Yagua", - dialect: null, - homeDomain: "ebible.org", - title: "Ju\u0331denu jto\u0331 nijya\u0331nvamyu", - description: "New Testament in Yagua (PE:yad:Yagua)", - Redistributable: true, - Copyright: "Copyright \u00a9 2008 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/yadNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7468, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YADTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yad2008eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yagua NT", - PODISBN: "978-1-5313-0717-2", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "yal", - translationId: "yal", - languageName: "Yalunka", - languageNameInEnglish: "Yalunka", - dialect: null, - homeDomain: "ebible.org", - title: "Kisin Kiraan Kitabuna", - description: "The Holy Bible in the Yalunka language of Guinea.", - Redistributable: true, - Copyright: "Copyright \u00a9 2012 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://ebible.org/yal/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23213, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YALPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yal2012eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yalunka Bible", - PODISBN: "978-1-5313-0718-9", - script: "Latin", - sourceDate: "2019-12-30", - }, - { - languageCode: "yam", - translationId: "yam", - languageName: null, - languageNameInEnglish: "Yamba", - dialect: null, - homeDomain: "ebible.org", - title: "\u014aw\u00e0k Nwi\u0300 Ma R\u0289\u0300k N\u0259\u0300 Fi", - description: "New Testament in Yamba", - Redistributable: false, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/yam/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YAMWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yam2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Yamba NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-02", - }, - { - languageCode: "yap", - translationId: "yap", - languageName: "Yapese", - languageNameInEnglish: "Yapese", - dialect: null, - homeDomain: "ebible.org", - title: "Bible Ni Thothup", - description: "The Holy Bible in the Yapese language of the Federated States of Micronesia", - Redistributable: true, - Copyright: "Copyright \u00a9 2007 Bible Society of Micronesia", - UpdateDate: "2017-12-21", - publicationURL: "http://ebible.org/yap/", - OTbooks: 39, - OTchapters: 929, - OTverses: 22378, - NTbooks: 27, - NTchapters: 260, - NTverses: 7943, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YAPBSM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yap2007eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Yapese Bible", - PODISBN: "978-1-5313-0719-6", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "yaq", - translationId: "yaqNT", - languageName: "Yaqui", - languageNameInEnglish: "Yaqui", - dialect: null, - homeDomain: "ebible.org", - title: "Yo\u02bcowe Jesukrijtota itom ya\u02bcariaka\u02bcu betchi\u02bcbo ju\u02bcu bemelaka liojta betana lutu\u02bcuria ya\u02bcari (El Nuevo Testamento en yaqui)", - description: "New Testament in Yaqui (MX:yaq:Yaqui)", - Redistributable: true, - Copyright: "Copyright \u00a9 2003 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/yaqNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7936, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YAQTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yaq2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yaqui NT", - PODISBN: "978-1-5313-0720-2", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "yby", - translationId: "yby", - languageName: "Yaweyuha", - languageNameInEnglish: "Yaweyuha", - dialect: null, - homeDomain: "png.bible", - title: "Yaweyuha New Testament", - description: "The New Testament in the Yaweyuha Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1983, 2011 Biblica", - UpdateDate: "2012-01-20", - publicationURL: "http://png.bible/yby/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7884, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YBYWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yby2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yaweyuha NT", - PODISBN: "978-1-5313-0721-9", - script: "Latin", - sourceDate: "2011-09-02", - }, - { - languageCode: "ycn", - translationId: "ycn", - languageName: "Yucuna", - languageNameInEnglish: "Yucuna", - dialect: null, - homeDomain: "ebible.org", - title: "Tupana Puraca'alo Mari", - description: "New Testament in Yucuna", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-08-06", - publicationURL: "http://ebible.org/ycn/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7881, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YCNWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ycn2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yucuna NT", - PODISBN: "978-1-5313-0722-6", - script: "Latin", - sourceDate: "2014-07-29", - }, - { - languageCode: "ygr", - translationId: "ygr", - languageName: "Yagaria", - languageNameInEnglish: "Yagaria", - dialect: "Kami-Kulaka", - homeDomain: "png.bible", - title: "SAUVA GEMAE", - description: - "The New Testament in the Kami-Kulaka dialect of the Yagaria language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1977 The Bible Society of Papua New Guinea", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/ygr/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 0, - NTchapters: 0, - NTverses: 0, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YGRPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ygreb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yagaria NT", - PODISBN: "978-1-5313-0723-3", - script: "Latin", - sourceDate: "2012-10-23", - }, - { - languageCode: "yij", - translationId: "yij", - languageName: "Yindjibarndi", - languageNameInEnglish: "Yindjibarndi", - dialect: null, - homeDomain: "ebible.org", - title: "NYIRTINGU MANYKA WANTHARNA NGURRAY", - description: "The Gospel According to Luke in the Yindjibarndi language of Australia", - Redistributable: true, - Copyright: "Copyright \u00a9 1983 Wycliffe Bible Translators", - UpdateDate: "2019-08-20", - publicationURL: "http://ebible.org/yij/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 1, - NTchapters: 1, - NTverses: 16, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YIJWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yij1983eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Yindjibarndi Luke", - PODISBN: null, - script: "Latin", - sourceDate: "2019-08-21", - }, - { - languageCode: "yka", - translationId: "yka", - languageName: "Yakan", - languageNameInEnglish: "Yakan", - dialect: null, - homeDomain: "ebible.org", - title: "Yakan Bible", - description: - "Ruth, Jonah, the New Testament, and portions of Genesis in the Yakan language of the Republic of the Philippines", - Redistributable: true, - Copyright: "Copyright \u00a9 1984 Wycliffe Bible Translators, Inc.", - UpdateDate: "2015-06-30", - publicationURL: "http://ebible.org/yka/", - OTbooks: 2, - OTchapters: 8, - OTverses: 133, - NTbooks: 27, - NTchapters: 260, - NTverses: 7907, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YKAWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yka1984eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yakan Bible", - PODISBN: "978-1-5313-0724-0", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "yle", - translationId: "yle", - languageName: "Yele Rossel", - languageNameInEnglish: "Yele", - dialect: null, - homeDomain: "png.bible", - title: "NM\u00ce M\u00ce U K\u00d3PU DYUU", - description: - "The New Testament in the Rossel Language, also called the Yele Language, of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 Wycliffe Bible Translators, Inc.", - UpdateDate: "2017-01-16", - publicationURL: "http://png.bible/yle/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7727, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YLETBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yle1998eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Rossel NT", - PODISBN: "978-1-5313-0725-7", - script: "Latin", - sourceDate: "2021-11-30", - }, - { - languageCode: "yml", - translationId: "yml", - languageName: "Iamalele", - languageNameInEnglish: "Iamalele", - dialect: null, - homeDomain: "png.bible", - title: "YAUBADA YANA VONA'AWAUFAUFA 'IVAUNA", - description: "The New Testament in the Iamalele Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1984, 1988 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-01-20", - publicationURL: "http://png.bible/yml/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7366, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YMLTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yml1988eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Iamalele NT", - PODISBN: "978-1-5313-0726-4", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "yon", - translationId: "yon", - languageName: "Yongkom", - languageNameInEnglish: "Yongkom", - dialect: null, - homeDomain: "png.bible", - title: null, - description: - "Genesis, Psalms, and The New Testament in the Yongkom Language (also called the Yonggom language) of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 ", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/yon/", - OTbooks: 2, - OTchapters: 200, - OTverses: 3962, - NTbooks: 27, - NTchapters: 260, - NTverses: 7873, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YONPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yon2003eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yongkom NT + partial OT", - PODISBN: "978-1-5313-0727-1", - script: "Latin", - sourceDate: "2011-08-09", - }, - { - languageCode: "yor", - translationId: "yor", - languageName: "Yor\u00f9b\u00e1", - languageNameInEnglish: "Yor\u00f9b\u00e1", - dialect: null, - homeDomain: "ebible.org", - title: "Biblica\u00ae n\u00ed oore \u1ecd\u0300f\u1eb9\u0301 l\u00e1ti lo B\u00edb\u00e9l\u00ec M\u00edm\u1ecd\u0301 n\u00ed \u00c8d\u00e8 Yor\u00f9b\u00e1 \u00d2de-\u00d2n\u00ed", - description: - "Yoruba: Biblica\u00ae n\u00ed oore \u1ecd\u0300f\u1eb9\u0301 l\u00e1ti lo B\u00edb\u00e9l\u00ec M\u00edm\u1ecd\u0301 n\u00ed \u00c8d\u00e8 Yor\u00f9b\u00e1 \u00d2de-\u00d2n\u00ed (Bible)", - Redistributable: true, - Copyright: "Copyright \u00a9 2017 Biblica, Inc.", - UpdateDate: "2021-04-12", - publicationURL: "http://ebible.org/yor/", - OTbooks: 39, - OTchapters: 929, - OTverses: 23145, - NTbooks: 27, - NTchapters: 260, - NTverses: 7942, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YORYCB", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yor2017eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Yoruba Contemporary Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2021-04-13", - }, - { - languageCode: "yrb", - translationId: "yrb", - languageName: "Yareba", - languageNameInEnglish: "Yareba", - dialect: null, - homeDomain: "png.bible", - title: "Yareba Nupela Testamen", - description: "The New Testament in the Yareba Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 ", - UpdateDate: "2012-01-20", - publicationURL: "http://png.bible/yrb/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7119, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YRBTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yrb1987eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yareba NT", - PODISBN: "978-1-5313-0728-8", - script: "Latin", - sourceDate: "2011-08-13", - }, - { - languageCode: "yre", - translationId: "yreNT", - languageName: "Yaour\u00e9", - languageNameInEnglish: "Yaour\u00e9", - dialect: null, - homeDomain: "ebible.org", - title: "Bali -le 'fluba 'tr\u025b Zozi blamin pli Bali man 'e 'pee", - description: "New Testament in Yaour\u00e9", - Redistributable: true, - Copyright: "Copyright \u00a9 1999 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/yreNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YREWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yre1999eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yaour\u00e9 NT", - PODISBN: "978-1-5313-0729-5", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "yss", - translationId: "yss-yamano", - languageName: "Yessan-Mayo (Yamano)", - languageNameInEnglish: "Yessan-Mayo", - dialect: "Yamano", - homeDomain: "png.bible", - title: "God Reri Teiktem Tuma Ager", - description: - "The New Testament in the Yamano Dialect of the Yessan-Mayo Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1980, 2004 Lutheran Bible Translators", - UpdateDate: "2014-01-09", - publicationURL: "http://png.bible/yss-yamano/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7924, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YSSYAM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yssYAM2004eb", - rodCode: 3252.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yessan-Mayo Yamano NT", - PODISBN: "978-1-5313-0730-1", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "yss", - translationId: "yss-yawu", - languageName: "Yawu (Yessan-Mayo)", - languageNameInEnglish: "Yessan-Mayo", - dialect: "Yawu", - homeDomain: "png.bible", - title: "GOD ETER AGERKE NAMDERASEM TUMA YENBO", - description: - "The New Testament in the Yawu Dialect of the Yessan-Mayo Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1996 Wycliffe Bible Translators, Inc.", - UpdateDate: "2012-10-23", - publicationURL: "http://png.bible/yss-yawu/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7892, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YSSYAW", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yssYAW1996eb", - rodCode: 20086.0, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yessan-Mayo Yawu NT", - PODISBN: "978-1-5313-0731-8", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "yuj", - translationId: "yuj", - languageName: "Karkar-Yuri", - languageNameInEnglish: "Karkar-Yuri", - dialect: null, - homeDomain: "png.bible", - title: "Kwaromp Kwapwe Kare Kar", - description: "The New Testament in the Karkar-Yuri Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-01-09", - publicationURL: "http://png.bible/yuj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7846, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YUJTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yuj1994eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Karkar-Yuri NT", - PODISBN: "978-1-5313-0732-5", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "yut", - translationId: "yut", - languageName: "Yopno", - languageNameInEnglish: "Yopno", - dialect: null, - homeDomain: "png.bible", - title: "PI\u014aKOP GEN", - description: "The New Testament and Psalms in the Yopno Language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-01-09", - publicationURL: "http://png.bible/yut/", - OTbooks: 1, - OTchapters: 150, - OTverses: 2444, - NTbooks: 27, - NTchapters: 260, - NTverses: 7853, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YUTWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yut2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yopno NT & Psalms", - PODISBN: "978-1-5313-0733-2", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "yuw", - translationId: "yuw", - languageName: "Yau", - languageNameInEnglish: "Yau", - dialect: null, - homeDomain: "png.bible", - title: "Fat Mata ogepma", - description: "The New Testament in the Yau language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1997 The Bible Society of Papua New Guinea", - UpdateDate: "2016-09-21", - publicationURL: "http://png.bible/yuw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7863, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YUWPNG", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yuw1997eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yau NT", - PODISBN: "978-1-5313-0734-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "yva", - translationId: "yvaNT", - languageName: "Yawa", - languageNameInEnglish: "Yawa", - dialect: null, - homeDomain: "ebible.org", - title: "Ayao amisy urairi wanyin", - description: "New Testament in Yawa (ID:yva:Yawa)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-03-11", - publicationURL: "http://ebible.org/yvaNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7867, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "YVATBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "yva2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Yawa NT", - PODISBN: "978-1-5313-0735-6", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zaa", - translationId: "zaaNT", - languageName: "Zapotec, Sierra de Ju\u00e1rez", - languageNameInEnglish: "Zapotec, Sierra de Ju\u00e1rez", - dialect: null, - homeDomain: "ebible.org", - title: "Ca titsa\u02bc de la\u02bclabani para iyate ca enne\u02bc", - description: - "New Testament in Zapotec, Sierra de Ju\u00e1rez (MX:zaa:Zapotec, Sierra de Ju\u00e1rez)", - Redistributable: true, - Copyright: "Copyright \u00a9 1970 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zaaNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7897, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZAATBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zaa1970eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Sierra de Ju\u00e1rez Zapotec NT", - PODISBN: "978-1-5313-0736-3", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zab", - translationId: "zabNT", - languageName: "Zapotec, San Juan Guelav\u00eda", - languageNameInEnglish: "Zapotec, San Juan Guelav\u00eda", - dialect: null, - homeDomain: "ebible.org", - title: "Xtiidx Dios cun ditsa", - description: - "New Testament in Zapotec, San Juan Guelav\u00eda (MX:zab:Zapotec, San Juan Guelav\u00eda)", - Redistributable: true, - Copyright: "Copyright \u00a9 1995 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zabNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZABTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zab1995eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "San Juan Guelav\u00eda Zapotec", - PODISBN: "978-1-5313-0737-0", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zac", - translationId: "zacNT", - languageName: "Zapotec, Ocotl\u00e1n", - languageNameInEnglish: "Zapotec, Ocotl\u00e1n", - dialect: null, - homeDomain: "ebible.org", - title: "Diza\u02bcqu\u00eb sht\u00eb Dios con diz\u00eb", - description: "New Testament in Zapotec, Ocotl\u00e1n (MX:zac:Zapotec, Ocotl\u00e1n)", - Redistributable: true, - Copyright: "Copyright \u00a9 1983 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zacNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7949, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZACSIM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zac1983eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Ocotl\u00e1n Zapotec", - PODISBN: "978-1-5313-0738-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zad", - translationId: "zadNT", - languageName: "Zapotec, Cajonos", - languageNameInEnglish: "Zapotec, Cajonos", - dialect: null, - homeDomain: "ebible.org", - title: "Dill\ua78c wen dill\ua78c\u2006\u2006 Kob C\u0331he \u2006\u2006Jesucr\u00edstona\ua78c", - description: "New Testament in Zapotec, Cajonos (MX:zad:Zapotec, Cajonos)", - Redistributable: true, - Copyright: "Copyright \u00a9 2011 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zadNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZADWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zad2011eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Cajonos Zapotec NT", - PODISBN: "978-1-5313-0739-4", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zae", - translationId: "zae", - languageName: "Zapotec, Yareni", - languageNameInEnglish: "Zapotec, Yareni", - dialect: null, - homeDomain: "ebible.org", - title: "Ka Tisa ge Tata Jesucristuha", - description: "Zapoteco, Santa Ana Yareni: Ka Tisa ge Tata Jesucristuha New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2014 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/zae/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7938, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZAEWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zae2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Yareni Zapotec NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-02", - }, - { - languageCode: "zai", - translationId: "zaiNT", - languageName: "Zapotec, Isthmus", - languageNameInEnglish: "Zapotec, Isthmus", - dialect: null, - homeDomain: "ebible.org", - title: "Stiidxa Dios didxaz\u00e1 (El Nuevo Testamento de nuestro se\u00f1or Jesucristo en el Zapoteco del Istmo)", - description: "New Testament in Zapotec, Isthmus (MX:zai:Zapotec, Isthmus)", - Redistributable: true, - Copyright: "Copyright \u00a9 1988 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zaiNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7932, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZAITBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zai1988eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Isthmus Zapotec NT", - PODISBN: "978-1-5313-0740-0", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zaj", - translationId: "zaj", - languageName: "Zaramo", - languageNameInEnglish: "Zaramo", - dialect: null, - homeDomain: "ebible.org", - title: "Lagano da Isambi da Mndewa na Mkombola Wetu Yesu Kilisto", - description: "The Holy Bible in the Zaramo language of Tanzania", - Redistributable: true, - Copyright: "Copyright \u00a9 2019 Pioneer Bible Translators", - UpdateDate: "2022-06-21", - publicationURL: "http://ebible.org/zaj/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZAJPBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zaj2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Zaramo Bible", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-12", - }, - { - languageCode: "zam", - translationId: "zamNT", - languageName: "Zapotec, Miahuatl\u00e1n", - languageNameInEnglish: "Zapotec, Miahuatl\u00e1n", - dialect: null, - homeDomain: "ebible.org", - title: "Testament cub co\u02bc nac di\u02bcs ndac che\u02bcn Tad Jesucrist", - description: "New Testament in Zapotec, Miahuatl\u00e1n (MX:zam:Zapotec, Miahuatl\u00e1n)", - Redistributable: true, - Copyright: "Copyright \u00a9 1971 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zamNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7945, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZAMILM", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zam1971eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Miahuatl\u00e1n Zapotec NT", - PODISBN: "978-1-5313-0741-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zao", - translationId: "zaoNT", - languageName: "Zapotec, Ozolotepec", - languageNameInEnglish: "Zapotec, Ozolotepec", - dialect: null, - homeDomain: "ebible.org", - title: "Diiz kuu ndyaadno yalnaban", - description: "New Testament in Zapotec, Ozolotepec (MX:zao:Zapotec, Ozolotepec)", - Redistributable: true, - Copyright: "Copyright \u00a9 2007 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zaoNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7944, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZAOTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zao2007eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Ozolotepec Zapotec NT", - PODISBN: "978-1-5313-0742-4", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zpi", - translationId: "zapNT", - languageName: "Zapotec, Santa Mar\u00eda Quiegolani", - languageNameInEnglish: "Zapotec, Santa Mar\u00eda Quiegolani", - dialect: null, - homeDomain: "ebible.org", - title: "Xdiiz D\u00ebdyuzh kon disa", - description: - "New Testament in Zapotec, Santa Mar\u00eda Quiegolani (MX:zpi:Zapotec, Santa Mar\u00eda Quiegolani)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zapNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZPIWYI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zap2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Santa Mar\u00eda Quiegolani Zapotec NT", - PODISBN: "978-1-5313-0743-1", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zar", - translationId: "zarNT", - languageName: "Zapotec, Rinc\u00f3n", - languageNameInEnglish: "Zapotec, Rinc\u00f3n", - dialect: null, - homeDomain: "ebible.org", - title: "Didza' cubi ruc\u00e1'ana tsahui'", - description: "New Testament in Zapotec, Rinc\u00f3n (MX:zar:Zapotec, Rinc\u00f3n)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zarNT/", - OTbooks: 1, - OTchapters: 150, - OTverses: 2462, - NTbooks: 27, - NTchapters: 260, - NTverses: 7929, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZARTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zar2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Rinc\u00f3n Zapotec NT", - PODISBN: "978-1-5313-0744-8", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zas", - translationId: "zasNT", - languageName: "Zapotec, Santo Domingo Albarradas", - languageNameInEnglish: "Zapotec, Santo Domingo Albarradas", - dialect: null, - homeDomain: "ebible.org", - title: "Xtiidx Dios", - description: - "New Testament in Zapotec, Santo Domingo Albarradas (MX:zas:Zapotec, Santo Domingo Albarradas)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zasNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7948, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZASWYI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zas2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Santo Domingo Albarradas Zapotec NT", - PODISBN: "978-1-5313-0745-5", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zat", - translationId: "zatNTps", - languageName: "Zapotec, Tabaa", - languageNameInEnglish: "Zapotec, Tabaa", - dialect: null, - homeDomain: "ebible.org", - title: "Xela wezria cube nen salmo ca\u02bc", - description: "New Testament and Psalms in Zapotec, Tabaa (MX:zat:Zapotec, Tabaa)", - Redistributable: true, - Copyright: "Copyright \u00a9 1981 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zatNTps/", - OTbooks: 1, - OTchapters: 150, - OTverses: 2459, - NTbooks: 27, - NTchapters: 260, - NTverses: 7947, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZATWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zat1981eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Tabaa Zapotec NT & Psalms", - PODISBN: "978-1-5313-0746-2", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zav", - translationId: "zavNT", - languageName: "Zapotec, Yatzachi", - languageNameInEnglish: "Zapotec, Yatzachi", - dialect: null, - homeDomain: "ebible.org", - title: "Testament Cob\u0259 de\u02bcen choe\u02bc di\u017e\u0259\u02bc c\u0331he ancho Jesocrist\u0259n\u02bc", - description: "New Testament in Zapotec, Yatzachi (MX:zav:Zapotec, Yatzachi)", - Redistributable: true, - Copyright: "Copyright \u00a9 1971 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zavNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7855, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZAVTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zav1971eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Yatzachi Zapotec NT", - PODISBN: "978-1-5313-0747-9", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zaw", - translationId: "zawNT", - languageName: "Zapotec, Mitla", - languageNameInEnglish: "Zapotec, Mitla", - dialect: null, - homeDomain: "ebible.org", - title: "Xtidxcoob Dios ni bi\u00e4dn\u00e4 dad Jesucrist", - description: "New Testament in Zapotec, Mitla (MX:zaw:Zapotec, Mitla)", - Redistributable: true, - Copyright: "Copyright \u00a9 2006 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zawNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7956, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZAWMVR", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zaw2006eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Mitla Zapotec NT", - PODISBN: "978-1-5313-0748-6", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zca", - translationId: "zcaNT", - languageName: "Zapotec, Coatecas Altas", - languageNameInEnglish: "Zapotec, Coatecas Altas", - dialect: null, - homeDomain: "ebible.org", - title: "Widi'zh che'n Jesukrist kwa'n kinu yalnaban", - description: "New Testament in Zapotec, Coatecas Altas (MX:zca:Zapotec, Coatecas Altas)", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zcaNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7947, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZCAWYI", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zca2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Coatecas Altas Zapotec", - PODISBN: "978-1-5313-0749-3", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zga", - translationId: "zgam", - languageName: "Mahanji", - languageNameInEnglish: "Kinga", - dialect: null, - homeDomain: "ebible.org", - title: "Mahanji Bible", - description: "The New Testament in the Mahanji dialect of the Kinga language of Tanzania", - Redistributable: true, - Copyright: "Copyright \u00a9 2020 Door 43 International Mission Community", - UpdateDate: "2020-09-02", - publicationURL: "http://ebible.org/zgam/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 26, - NTchapters: 257, - NTverses: 7908, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZGAMUL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zgam2020eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Mahanji NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-09-03", - }, - { - languageCode: "zia", - translationId: "zia", - languageName: "Zia", - languageNameInEnglish: "Zia", - dialect: null, - homeDomain: "png.bible", - title: "TUWA YESU KRISTORA BOWI IWAING", - description: "The New Testament in the Zia language of Papua New Guinea", - Redistributable: true, - Copyright: "Copyright \u00a9 1982 Wycliffe Bible Translators, Inc.", - UpdateDate: "2022-06-21", - publicationURL: "http://png.bible/zia/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7900, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZIATBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zia1982eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Zia NT", - PODISBN: "978-1-5313-0750-9", - script: "Latin", - sourceDate: "2020-10-09", - }, - { - languageCode: "ziw", - translationId: "ziw", - languageName: "Zigua", - languageNameInEnglish: "Zigua", - dialect: null, - homeDomain: "ebible.org", - title: "Lagano hya", - description: "The New Testament in the Zigua language of Tanzania", - Redistributable: true, - Copyright: "Copyright \u00a9 2014 The Word for the World and Pioneer Bible Translators", - UpdateDate: "2018-02-06", - publicationURL: "http://ebible.org/ziw/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZIWTWF", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ziw2014eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Zigua New Testament", - PODISBN: null, - script: "Latin", - sourceDate: "2018-02-07", - }, - { - languageCode: "zlm", - translationId: "zlmKSZI", - languageName: "Bahasa Malaysia", - languageNameInEnglish: "Malay", - dialect: null, - homeDomain: "ebible.org", - title: "Kitab Suci Zabur dan Injil", - description: "Contextualized New Testament in the Malay language of Malaysia.", - Redistributable: true, - Copyright: "Copyright \u00a9 2013 Pengamat Kitab Mulia", - UpdateDate: "2014-04-01", - publicationURL: "http://ebible.org/zlmKSZI/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZIMKSZ", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zlmKSZI2013eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Contextualized Malay NT", - PODISBN: "978-1-5313-0825-4", - script: "Latin", - sourceDate: "2013-04-22", - }, - { - languageCode: "zos", - translationId: "zosNT", - languageName: "Zoque, Francisco Le\u00f3n", - languageNameInEnglish: "Zoque, Francisco Le\u00f3n", - dialect: null, - homeDomain: "ebible.org", - title: "Jomep\u00f8 Testamento", - description: - "New Testament in Zoque, Francisco Le\u00f3n (MX:zos:Zoque, Francisco Le\u00f3n)", - Redistributable: true, - Copyright: "Copyright \u00a9 1978 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zosNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7954, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZOSTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zos1978eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Francisco Le\u00f3n Zoque NT", - PODISBN: "978-1-5313-0751-6", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zpc", - translationId: "zpcNT", - languageName: "Zapotec, Choapan", - languageNameInEnglish: "Zapotec, Choapan", - dialect: null, - homeDomain: "ebible.org", - title: "Xti\u02bcidza\u02bc Diuzi", - description: "New Testament in Zapotec, Choapan (MX:zpc:Zapotec, Choapan)", - Redistributable: true, - Copyright: "Copyright \u00a9 1986 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zpcNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7925, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZPCWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zpc1986eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Choapan Zapotec NT", - PODISBN: "978-1-5313-0752-3", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zpg", - translationId: "zpg", - languageName: "Guevea De Humboldt Zapotec", - languageNameInEnglish: "Guevea De Humboldt Zapotec", - dialect: null, - homeDomain: "ebible.org", - title: "Zapoteco, Guevea de Humboldt NT", - description: "Zapotec, Guevea de Humboldt: Zapoteco, Guevea de Humboldt NT (New Testament)", - Redistributable: false, - Copyright: "Copyright \u00a9 2019 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-17", - publicationURL: "http://ebible.org/zpg/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7959, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZPGWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zpg2019eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Zapotec, Guevea de Humboldt: Zapoteco, Guevea de Humboldt NT (New Testament)", - PODISBN: null, - script: "Latin", - sourceDate: "2020-11-17", - }, - { - languageCode: "zpi", - translationId: "zpi", - languageName: null, - languageNameInEnglish: "Zapotec, Santa Mar\u00eda Quiegolani", - dialect: null, - homeDomain: "ebible.org", - title: "Xdiiz D\u00ebdyuzh kon disa", - description: - "New Testament in Zapotec, Santa Mar\u00eda Quiegolani (MX:zpi:Zapotec, Santa Mar\u00eda Quiegolani)", - Redistributable: false, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-12-01", - publicationURL: "http://ebible.org/zpi/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7953, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZPIWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zpi2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "Santa Mar\u00eda Quiegolani Zapotec NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-02", - }, - { - languageCode: "zpl", - translationId: "zplNT", - languageName: "Zapotec, Lachix\u00edo", - languageNameInEnglish: "Zapotec, Lachix\u00edo", - dialect: null, - homeDomain: "ebible.org", - title: "Stichia' Diose dialu", - description: "New Testament in Zapotec, Lachix\u00edo (MX:zpl:Zapotec, Lachix\u00edo)", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zplNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7955, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZPLTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zpl2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Lachix\u00edo Zapotec NT", - PODISBN: "978-1-5313-0753-0", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zpm", - translationId: "zpmNT", - languageName: "Mixtepec Zapotec", - languageNameInEnglish: "Zapotec, Mixtepec", - dialect: null, - homeDomain: "ebible.org", - title: "Diidz ne rdeed guielmban", - description: "New Testament in Zapotec, Mixtepec (MX:zpm:Zapotec, Mixtepec)", - Redistributable: true, - Copyright: "Copyright \u00a9 1998 Wycliffe Bible Translators, Inc.", - UpdateDate: "2018-11-16", - publicationURL: "http://ebible.org/zpmNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7720, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZPMTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zpm1998eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Mixtepec Zapotec NT", - PODISBN: "978-1-5313-0754-7", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zpo", - translationId: "zpoNT", - languageName: "Zapotec, Amatl\u00e1n", - languageNameInEnglish: "Zapotec, Amatl\u00e1n", - dialect: null, - homeDomain: "ebible.org", - title: "Wdizh kwaan nyaadno yalnaban", - description: "New Testament in Zapotec, Amatl\u00e1n (MX:zpo:Zapotec, Amatl\u00e1n)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zpoNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7937, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZPOTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zpo2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Amatl\u00e1n Zapotec NT", - PODISBN: "978-1-5313-0755-4", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zpq", - translationId: "zpqNT", - languageName: "Zapotec, Zoogocho", - languageNameInEnglish: "Zapotec, Zoogocho", - dialect: null, - homeDomain: "ebible.org", - title: "Di\u017ea\u02bc g\u00fcen c\u0331he ancho Jesucristo", - description: "New Testament in Zapotec, Zoogocho (MX:zpq:Zapotec, Zoogocho)", - Redistributable: true, - Copyright: "Copyright \u00a9 1987 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zpqNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7897, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZPQTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zpq1987eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Zoogocho Zapotec NT", - PODISBN: "978-1-5313-0756-1", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zpt", - translationId: "zpt", - languageName: "Zapotec, San Vicente Coatl\u00e1n", - languageNameInEnglish: "Zapotec, San Vicente Coatl\u00e1n", - dialect: null, - homeDomain: "ebible.org", - title: "Be di\ua78cizh nsa\ua78ca gealnaban", - description: - "Zapoteco, San Vicente Coatl\u00e1n: Be di\ua78cizh nsa\ua78ca gealnaban New Testament", - Redistributable: false, - Copyright: "Copyright \u00a9 2015 Wycliffe Bible Translators, Inc.", - UpdateDate: "2020-11-30", - publicationURL: "http://ebible.org/zpt/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZPTWBT", - Certified: false, - inScript: "http://inscript.org/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zpt2015eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "DejaVu Serif", - shortTitle: "San Vicente Coatl\u00e1n Zapotec NT", - PODISBN: null, - script: "Latin", - sourceDate: "2020-12-01", - }, - { - languageCode: "zpu", - translationId: "zpuNT", - languageName: "Zapotec, Yal\u00e1lag", - languageNameInEnglish: "Zapotec, Yal\u00e1lag", - dialect: null, - homeDomain: "ebible.org", - title: "Di\u02bcll dan\u02bc nsa\u02bca yel nban (El Nuevo Testamento en el Zapoteco de Yal\u00e1lag)", - description: "New Testament in Zapotec, Yal\u00e1lag (MX:zpu:Zapotec, Yal\u00e1lag)", - Redistributable: true, - Copyright: "Copyright \u00a9 2000 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zpuNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7958, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZPUTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zpu2000eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Yal\u00e1lag Zapotec NT", - PODISBN: "978-1-5313-0757-8", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zpv", - translationId: "zpvNT", - languageName: "Zapotec, Chichicapan", - languageNameInEnglish: "Zapotec, Chichicapan", - dialect: null, - homeDomain: "ebible.org", - title: "Xchi\u02bcdxyi cuubi dxiohs nin bie\u02bcgaluu\u02bcyi daada Jesucristu (El Nuevo Testamento en el zapoteco de Chichicapan y en espa\u00f1ol)", - description: "New Testament in Zapotec, Chichicapan (MX:zpv:Zapotec, Chichicapan)", - Redistributable: true, - Copyright: "Copyright \u00a9 1990 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zpvNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7945, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZPVTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zpv1990eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Chichicapan Zapotec NT", - PODISBN: "978-1-5313-0758-5", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zpz", - translationId: "zpzNTpp", - languageName: "Zapotec, Texmelucan", - languageNameInEnglish: "Zapotec, Texmelucan", - dialect: null, - homeDomain: "ebible.org", - title: "De riidz ni trat cub nu bicy nu \u00d1gyoozh mbecy: Salmos; Proverbios", - description: - "New Testament, Psalms and Proverbs in Zapotec, Texmelucan (MX:zpz:Zapotec, Texmelucan)", - Redistributable: true, - Copyright: "Copyright \u00a9 2004 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zpzNTpp/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7948, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZPZTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zpz2004eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Texmelucan Zapotec Bible", - PODISBN: "978-1-5313-0759-2", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zsr", - translationId: "zsrNT", - languageName: "Zapotec, Southern Rincon", - languageNameInEnglish: "Zapotec, Southern Rincon", - dialect: null, - homeDomain: "ebible.org", - title: "Didza\u02bc cub ruc\u00e1\u02bcn tsahui\u02bc", - description: "New Testament in Zapotec, Southern Rincon (MX:zsr:Zapotec, Southern Rincon)", - Redistributable: true, - Copyright: "Copyright \u00a9 1992 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/zsrNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7930, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZSRWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zsr1992eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Southern Rincon Zapotec NT", - PODISBN: "978-1-5313-0760-8", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "ztq", - translationId: "ztqNT", - languageName: "Zapotec, Quioquitani-Quier\u00ed", - languageNameInEnglish: "Zapotec, Quioquitani-Quier\u00ed", - dialect: null, - homeDomain: "ebible.org", - title: "Tiits nii xnee kyalmba\u00f1; El Nuevo Testamento en el zapoteco de Quioquitani", - description: - "New Testament in Zapotec, Quioquitani-Quier\u00ed (MX:ztq:Zapotec, Quioquitani-Quier\u00ed)", - Redistributable: true, - Copyright: "Copyright \u00a9 2009 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/ztqNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7922, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZTQTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "ztq2009eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Quioquitani-Quier\u00ed Zapotec NT", - PODISBN: "978-1-5313-0761-5", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zty", - translationId: "ztyNTps", - languageName: "Zapotec, Yatee", - languageNameInEnglish: "Zapotec, Yatee", - dialect: null, - homeDomain: "ebible.org", - title: "Di\u017ea\u02bc chawe\u02bc kub len Salmo ka\u02bc", - description: "New Testament and Psalms in Zapotec, Yatee (MX:zty:Zapotec, Yatee)", - Redistributable: true, - Copyright: "Copyright \u00a9 2002 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-30", - publicationURL: "http://ebible.org/ztyNTps/", - OTbooks: 1, - OTchapters: 150, - OTverses: 2459, - NTbooks: 27, - NTchapters: 260, - NTverses: 7922, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZTYTBL", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zty2002eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium Plus", - shortTitle: "Yatee Zapotec NT & Psalms", - PODISBN: "978-1-5313-0762-2", - script: "Latin", - sourceDate: "2014-05-01", - }, - { - languageCode: "zyp", - translationId: "zypNT", - languageName: "Chin, Zyphe", - languageNameInEnglish: "Chin, Zyphe", - dialect: null, - homeDomain: "ebible.org", - title: "Biahrai Tha, Zyphe rei", - description: "New Testament in Chin, Zyphe", - Redistributable: true, - Copyright: "Copyright \u00a9 2010 Wycliffe Bible Translators, Inc.", - UpdateDate: "2014-04-22", - publicationURL: "http://ebible.org/zypNT/", - OTbooks: 0, - OTchapters: 0, - OTverses: 0, - NTbooks: 27, - NTchapters: 260, - NTverses: 7950, - DCbooks: 0, - DCchapters: 0, - DCverses: 0, - FCBHID: "ZYPWBT", - Certified: false, - inScript: "http://eBible.org/study/?v1=GN1_1&w1=bible&t1=local%3A", - swordName: "zyp2010eb", - rodCode: null, - textDirection: "ltr", - downloadable: true, - font: "Gentium", - shortTitle: "Zyphe Chin NT", - PODISBN: "978-1-5313-0763-9", - script: "Latin", - sourceDate: "2014-04-23", - }, -]; diff --git a/webviews/codex-webviews/src/NewSourceUploader/importers/ebibleCorpus/EbibleDownloadImporterForm.tsx b/webviews/codex-webviews/src/NewSourceUploader/importers/ebibleCorpus/EbibleDownloadImporterForm.tsx index 3f5fdd60e..9ea11b98d 100644 --- a/webviews/codex-webviews/src/NewSourceUploader/importers/ebibleCorpus/EbibleDownloadImporterForm.tsx +++ b/webviews/codex-webviews/src/NewSourceUploader/importers/ebibleCorpus/EbibleDownloadImporterForm.tsx @@ -6,7 +6,7 @@ import { ImportedContent, defaultCellAligner, } from "../../types/plugin"; -import { ImportProgress, ProcessedNotebook, NotebookPair } from "../../types/common"; +import { ImportProgress, NotebookPair } from "../../types/common"; import { Button } from "../../../components/ui/button"; import { Input } from "../../../components/ui/input"; import { Label } from "../../../components/ui/label"; @@ -67,8 +67,6 @@ import { AlignmentPreview } from "../../components/AlignmentPreview"; // Import the translations.csv file import translationsCSV from "./translations.csv?raw"; -// Use the real parser functions from the eBible Corpus importer -const { validateFile, parseFile } = ebibleCorpusImporter; export const EbibleDownloadImporterForm: React.FC = (props) => { const { diff --git a/webviews/codex-webviews/src/NewSourceUploader/importers/ebibleCorpus/components/EbibleDownloadForm.tsx b/webviews/codex-webviews/src/NewSourceUploader/importers/ebibleCorpus/components/EbibleDownloadForm.tsx deleted file mode 100644 index 80c23254a..000000000 --- a/webviews/codex-webviews/src/NewSourceUploader/importers/ebibleCorpus/components/EbibleDownloadForm.tsx +++ /dev/null @@ -1,337 +0,0 @@ -import React, { useState, useCallback } from "react"; -import { Button } from "../../../../components/ui/button"; -import { Input } from "../../../../components/ui/input"; -import { Label } from "../../../../components/ui/label"; -import { - Card, - CardContent, - CardDescription, - CardHeader, - CardTitle, -} from "../../../../components/ui/card"; -import { - Select, - SelectContent, - SelectItem, - SelectTrigger, - SelectValue, -} from "../../../../components/ui/select"; -import { Badge } from "../../../../components/ui/badge"; -import { Loader2, Download, ExternalLink, CheckCircle, AlertCircle } from "lucide-react"; -import { - ExtendedEbibleMetadata, - validateEbibleMetadata, - checkEbibleAvailability, - getPopularEbibleOptions, - downloadBibleFromEbible, -} from "../../../utils/ebibleDownload"; -import { ProgressCallback } from "../../../types/common"; - -interface EbibleDownloadFormProps { - onImportSuccess?: (result: any) => void; - onImportError?: (error: string) => void; - onProgress?: ProgressCallback; -} - -export const EbibleDownloadForm: React.FC = ({ - onImportSuccess, - onImportError, - onProgress, -}) => { - const [metadata, setMetadata] = useState({ - languageCode: "", - translationId: "", - title: "", - description: "", - direction: "ltr", - }); - - const [isDownloading, setIsDownloading] = useState(false); - const [isChecking, setIsChecking] = useState(false); - const [availability, setAvailability] = useState<{ - available: boolean; - url: string; - error?: string; - } | null>(null); - const [asTranslationOnly, setAsTranslationOnly] = useState(false); - const [validationErrors, setValidationErrors] = useState([]); - - const popularOptions = getPopularEbibleOptions(); - - // Handle input changes - const handleInputChange = useCallback( - (field: keyof ExtendedEbibleMetadata, value: string) => { - setMetadata((prev) => ({ ...prev, [field]: value })); - setAvailability(null); // Reset availability when metadata changes - - // Clear validation errors when user starts typing - if (validationErrors.length > 0) { - setValidationErrors([]); - } - }, - [validationErrors.length] - ); - - // Load popular option - const handleSelectPopularOption = useCallback((option: ExtendedEbibleMetadata) => { - setMetadata(option); - setAvailability(null); - setValidationErrors([]); - }, []); - - // Check availability - const handleCheckAvailability = useCallback(async () => { - const errors = validateEbibleMetadata(metadata); - if (errors.length > 0) { - setValidationErrors(errors); - return; - } - - setIsChecking(true); - try { - const result = await checkEbibleAvailability(metadata); - setAvailability(result); - } catch (error) { - setAvailability({ - available: false, - url: "", - error: error instanceof Error ? error.message : "Unknown error", - }); - } finally { - setIsChecking(false); - } - }, [metadata]); - - // Handle download - const handleDownload = useCallback(async () => { - const errors = validateEbibleMetadata(metadata); - if (errors.length > 0) { - setValidationErrors(errors); - return; - } - - setIsDownloading(true); - try { - const result = await downloadBibleFromEbible({ - metadata, - asTranslationOnly, - onProgress, - }); - - if (result.success) { - onImportSuccess?.(result); - } else { - onImportError?.(result.error || "Download failed"); - } - } catch (error) { - const errorMessage = error instanceof Error ? error.message : "Unknown error"; - onImportError?.(errorMessage); - } finally { - setIsDownloading(false); - } - }, [metadata, asTranslationOnly, onProgress, onImportSuccess, onImportError]); - - return ( -
- {/* Popular Options */} - - - Popular eBible Translations - Select from commonly used Bible translations - - -
- {popularOptions.map((option) => ( -
handleSelectPopularOption(option)} - > -
-

{option.title}

- {option.abbreviation} -
-

{option.description}

-
- Lang: {option.languageCode} - ID: {option.translationId} - - {option.direction?.toUpperCase()} - -
-
- ))} -
-
-
- - {/* Custom Download Form */} - - - Custom eBible Download - - Enter specific language code and translation ID for eBible corpus - - - -
-
- - handleInputChange("languageCode", e.target.value)} - /> -
-
- - handleInputChange("translationId", e.target.value)} - /> -
-
- -
-
- - handleInputChange("title", e.target.value)} - /> -
-
- - -
-
- -
- - handleInputChange("description", e.target.value)} - /> -
- - {/* Import Mode */} -
- -
- setAsTranslationOnly(e.target.checked)} - className="rounded" - /> - -
-
- - {/* Validation Errors */} - {validationErrors.length > 0 && ( -
- {validationErrors.map((error, index) => ( -
- - {error} -
- ))} -
- )} - - {/* Availability Check */} - {availability && ( -
-
- {availability.available ? ( - - ) : ( - - )} - {availability.available - ? "Available for download" - : "Not available"} -
- {availability.error && ( -

{availability.error}

- )} - -
- )} - - {/* Action Buttons */} -
- - - -
-
-
-
- ); -}; diff --git a/webviews/codex-webviews/src/NewSourceUploader/importers/ebibleCorpus/components/ExistingBiblesCheck.tsx b/webviews/codex-webviews/src/NewSourceUploader/importers/ebibleCorpus/components/ExistingBiblesCheck.tsx deleted file mode 100644 index 11b706f4b..000000000 --- a/webviews/codex-webviews/src/NewSourceUploader/importers/ebibleCorpus/components/ExistingBiblesCheck.tsx +++ /dev/null @@ -1,141 +0,0 @@ -import React, { useEffect, useState } from "react"; -import { Alert, AlertDescription, AlertTitle } from "../../../../components/ui/alert"; -import { Button } from "../../../../components/ui/button"; -import { AlertCircle, Trash2 } from "lucide-react"; - -interface ExistingBible { - name: string; - path: string; - books: number; - verses: number; -} - -interface ExistingBiblesCheckProps { - onContinue: () => void; - onCancel: () => void; -} - -export const ExistingBiblesCheck: React.FC = ({ - onContinue, - onCancel, -}) => { - const [existingBibles, setExistingBibles] = useState([]); - const [isChecking, setIsChecking] = useState(true); - - useEffect(() => { - checkForExistingBibles(); - }, []); - - const checkForExistingBibles = () => { - setIsChecking(true); - - // Send message to extension to check for existing bibles - const vscode = (window as any).vscodeApi; - - // Set up listener before sending message - const handleMessage = (event: MessageEvent) => { - const message = event.data; - if (message.command === "existingBiblesFound") { - setExistingBibles(message.bibles || []); - setIsChecking(false); - // Remove listener after receiving response - window.removeEventListener("message", handleMessage); - } - }; - - window.addEventListener("message", handleMessage); - - // Send the request - vscode.postMessage({ - command: "checkExistingBibles", - }); - - // Set a timeout in case we don't get a response - const timeout = setTimeout(() => { - console.warn("Timeout waiting for existing bibles check"); - setIsChecking(false); - window.removeEventListener("message", handleMessage); - }, 5000); - - // Cleanup function - return () => { - clearTimeout(timeout); - window.removeEventListener("message", handleMessage); - }; - }; - - if (isChecking) { - return ( -
-
-
-

Checking for existing Bibles...

-
-
- ); - } - - if (existingBibles.length === 0) { - // No existing bibles, proceed directly - onContinue(); - return null; - } - - return ( -
- - - - Existing Bible Found in Project - - -

- You already have {existingBibles.length} Bible - {existingBibles.length > 1 ? "s" : ""} in your project. To maintain data - integrity, we recommend either: -

-
    -
  • Delete the existing Bible(s) first, then import the new one
  • -
  • Start a new project for the new Bible translation
  • -
- -
-

Existing Bibles:

- {existingBibles.map((bible, index) => ( -
-
-
-

{bible.name}

-

- {bible.books} books, {bible.verses.toLocaleString()}{" "} - verses -

-
-
-
- ))} -
-
-
- -
- - -
-
- ); -}; From f6395382e16fe0feb8a4b8b41cca4d9fafcf191e Mon Sep 17 00:00:00 2001 From: dadukhankevin Date: Wed, 4 Feb 2026 14:37:10 -0600 Subject: [PATCH 10/13] removed smart edits --- src/projectManager/utils/merge/resolvers.ts | 68 +-- src/projectManager/utils/merge/strategies.ts | 1 - src/projectManager/utils/merge/types.ts | 7 - .../codexCellEditorMessagehandling.ts | 25 - .../codexCellEditorProvider/declarations.d.ts | 3 - src/smartEdits/iceEdits.ts | 403 ------------- src/smartEdits/registerSmartEditCommands.ts | 159 +----- src/smartEdits/smartEdits.ts | 535 ------------------ src/smartEdits/types.ts | 7 - .../dist/assets/index.css | 1 - .../dist/assets/index.js | 40 -- .../dictionary-side-panel/dist/index.html | 14 - webviews/dictionary-side-panel/dist/vite.svg | 1 - .../dist/assets/index.css | 1 - .../editable-react-table/dist/assets/index.js | 41 -- webviews/editable-react-table/dist/index.html | 15 - 16 files changed, 7 insertions(+), 1314 deletions(-) delete mode 100644 src/smartEdits/iceEdits.ts delete mode 100644 src/smartEdits/smartEdits.ts delete mode 100644 src/smartEdits/types.ts delete mode 100644 webviews/dictionary-side-panel/dist/assets/index.css delete mode 100644 webviews/dictionary-side-panel/dist/assets/index.js delete mode 100644 webviews/dictionary-side-panel/dist/index.html delete mode 100644 webviews/dictionary-side-panel/dist/vite.svg delete mode 100644 webviews/editable-react-table/dist/assets/index.css delete mode 100644 webviews/editable-react-table/dist/assets/index.js delete mode 100644 webviews/editable-react-table/dist/index.html diff --git a/src/projectManager/utils/merge/resolvers.ts b/src/projectManager/utils/merge/resolvers.ts index b479ff5b5..9d701775a 100644 --- a/src/projectManager/utils/merge/resolvers.ts +++ b/src/projectManager/utils/merge/resolvers.ts @@ -1,7 +1,7 @@ import { CodexCellDocument } from './../../../providers/codexCellEditorProvider/codexDocument'; import * as vscode from "vscode"; import * as path from "path"; -import { ConflictResolutionStrategy, ConflictFile, SmartEdit } from "./types"; +import { ConflictResolutionStrategy, ConflictFile } from "./types"; import { determineStrategy } from "./strategies"; import { getAuthApi } from "../../../extension"; import { NotebookCommentThread, NotebookComment, CustomNotebookCellData, CustomNotebookMetadata } from "../../../../types"; @@ -322,13 +322,14 @@ export async function resolveConflictFile( break; } - // SPECIAL = "special", // Merge based on timestamps/rules + // SPECIAL = "special", // Merge based on timestamps/rules (currently only metadata.json) case ConflictResolutionStrategy.SPECIAL: { debugLog("Resolving special conflict for:", conflict.filepath); if (conflict.filepath === "metadata.json") { resolvedContent = await resolveMetadataJsonConflict(conflict); } else { - resolvedContent = await resolveSmartEditsConflict(conflict.ours, conflict.theirs); + // Fallback to OVERRIDE for unknown files + resolvedContent = conflict.ours; } break; } @@ -1520,67 +1521,6 @@ function isValidSelection(selectedId: string, attachments?: { [key: string]: any !attachment.isDeleted; } -/** - * Resolves conflicts in smart_edits.json files - */ -async function resolveSmartEditsConflict( - ourContent: string, - theirContent: string -): Promise { - // Handle empty content cases - if (!ourContent.trim()) { - return theirContent.trim() || "{}"; - } - if (!theirContent.trim()) { - return ourContent.trim() || "{}"; - } - - try { - const ourEdits = JSON.parse(ourContent); - const theirEdits = JSON.parse(theirContent); - - // Merge the edits, preferring newer versions for same cellIds - const mergedEdits: Record = {}; - - // Process our edits - Object.entries(ourEdits).forEach(([cellId, edit]) => { - mergedEdits[cellId] = edit as SmartEdit; - }); - - // Process their edits, comparing timestamps for conflicts - Object.entries(theirEdits).forEach(([cellId, theirEdit]) => { - if (!mergedEdits[cellId]) { - mergedEdits[cellId] = theirEdit as SmartEdit; - } else { - const ourDate = new Date(mergedEdits[cellId].lastUpdatedDate); - const theirDate = new Date((theirEdit as SmartEdit).lastUpdatedDate); - - if (theirDate > ourDate) { - mergedEdits[cellId] = theirEdit as SmartEdit; - } - - // Merge suggestions arrays and deduplicate - const allSuggestions = [ - ...mergedEdits[cellId].suggestions, - ...(theirEdit as SmartEdit).suggestions, - ]; - - // Deduplicate suggestions based on oldString+newString combination - mergedEdits[cellId].suggestions = Array.from( - new Map( - allSuggestions.map((sugg) => [`${sugg.oldString}:${sugg.newString}`, sugg]) - ).values() - ); - } - }); - - return JSON.stringify(mergedEdits, null, 2); - } catch (error) { - console.error("Error resolving smart_edits.json conflict:", error); - return "{}"; // Return empty object if parsing fails - } -} - /** * Resolves conflicts in metadata.json, specifically merging the remote healing list */ diff --git a/src/projectManager/utils/merge/strategies.ts b/src/projectManager/utils/merge/strategies.ts index 8cf1aa8bd..e5442f858 100644 --- a/src/projectManager/utils/merge/strategies.ts +++ b/src/projectManager/utils/merge/strategies.ts @@ -25,7 +25,6 @@ export const filePatternsToResolve: Record // Special JSON merges - merge based on timestamps [ConflictResolutionStrategy.SPECIAL]: [ - "files/smart_edits.json", "metadata.json" ], diff --git a/src/projectManager/utils/merge/types.ts b/src/projectManager/utils/merge/types.ts index f3c0b7399..cd487a30e 100644 --- a/src/projectManager/utils/merge/types.ts +++ b/src/projectManager/utils/merge/types.ts @@ -11,13 +11,6 @@ export enum ConflictResolutionStrategy { JSON_MERGE_3WAY = "json-merge-3way", // 3-way merge for JSON settings with chatSystemMessage tie-breaker } -export interface SmartEdit { - cellId: string; - lastCellValue: string; - suggestions: Array<{ oldString: string; newString: string; }>; - lastUpdatedDate: string; -} - export interface ConflictFile { filepath: string; ours: string; // The actual content, not a path diff --git a/src/providers/codexCellEditorProvider/codexCellEditorMessagehandling.ts b/src/providers/codexCellEditorProvider/codexCellEditorMessagehandling.ts index 45cf654c2..c62c24595 100644 --- a/src/providers/codexCellEditorProvider/codexCellEditorMessagehandling.ts +++ b/src/providers/codexCellEditorProvider/codexCellEditorMessagehandling.ts @@ -754,13 +754,6 @@ const messageHandlers: Record Promise Promise { - const typedEvent = event as Extract; - debug("supplyRecentEditHistory message received", { event }); - await vscode.commands.executeCommand( - "codex-smart-edits.supplyRecentEditHistory", - typedEvent.content.cellId, - typedEvent.content.editHistory - ); - }, - exportFile: async ({ event, document }) => { const typedEvent = event as Extract; const notebookName = path.parse(document.uri.fsPath).name; @@ -1390,14 +1373,6 @@ const messageHandlers: Record Promise { - const typedEvent = event as Extract; - await vscode.commands.executeCommand( - "codex-smart-edits.rejectEditSuggestion", - typedEvent.content - ); - }, - webviewFocused: ({ event, provider }) => { const typedEvent = event as Extract; if (provider.currentDocument && typedEvent.content?.uri) { diff --git a/src/providers/codexCellEditorProvider/declarations.d.ts b/src/providers/codexCellEditorProvider/declarations.d.ts index e8e7c7a90..595afcd05 100644 --- a/src/providers/codexCellEditorProvider/declarations.d.ts +++ b/src/providers/codexCellEditorProvider/declarations.d.ts @@ -25,6 +25,3 @@ declare module '../../backtranslation' { export function setBacktranslation(): any; } -declare module '../../actions/suggestions/rejectEditSuggestion' { - export function rejectEditSuggestion(): any; -} diff --git a/src/smartEdits/iceEdits.ts b/src/smartEdits/iceEdits.ts deleted file mode 100644 index 4ce8732a3..000000000 --- a/src/smartEdits/iceEdits.ts +++ /dev/null @@ -1,403 +0,0 @@ -import * as vscode from "vscode"; -import { diffWords } from "diff"; -import { tokenizeText } from "@/utils/nlpUtils"; - -const DEBUG = false; -const debug = DEBUG ? console.log : () => {}; - -interface ICEEditRecord { - original: string; - replacement: string; - leftToken: string; - rightToken: string; - frequency: number; - lastUpdated: number; - rejected?: boolean; -} - -interface ICECandidateSuggestion { - original: string; - replacement: string; - confidence: "high" | "low"; - frequency: number; - leftToken: string; - rightToken: string; -} - -export class ICEEdits { - private iceEditsPath: vscode.Uri; - private editRecords: Map = new Map(); - - constructor(workspaceFolder: string) { - this.iceEditsPath = vscode.Uri.joinPath( - vscode.Uri.file(workspaceFolder), - "files", - "ice_edits.json" - ); - this.ensureFileExists(); - } - - private stripHtml(text: string): string { - // Remove HTML tags - let strippedText = text.replace(/<[^>]*>/g, ""); - // Remove common HTML entities - strippedText = strippedText.replace(/  ?/g, " "); - // Keep apostrophe or typographic apostrophe - strippedText = strippedText.replace(/&|<|>|"|'|"/g, ""); - // Remove other numeric HTML entities - strippedText = strippedText.replace(/&#\d+;/g, ""); - // Remove any remaining & entities - strippedText = strippedText.replace(/&[a-zA-Z]+;/g, ""); - return strippedText; - } - - /** - * Performs a full diff-based recording of ICE edits. - * Strips HTML, diffs old/new text, and calls recordEdit(token, replacement, left, right). - */ - public async recordFullEdit(oldText: string, newText: string): Promise { - // 1) Strip HTML - const cleanOld = this.stripHtml(oldText); - const cleanNew = this.stripHtml(newText); - - // 2) Tokenize both texts for context - const oldTokens = tokenizeText({ method: "whitespace", text: cleanOld }); - const newTokens = tokenizeText({ method: "whitespace", text: cleanNew }); - - // 3) Diff them - const diff = diffWords(cleanOld, cleanNew); - - let oldIndex = 0; - let skipNextAdded = false; // Flag to skip processing added parts that were already handled as replacements - - for (let i = 0; i < diff.length; i++) { - const part = diff[i]; - - if (part.removed) { - // Handle removals (with potential replacements) - const removedTokens = part.value.split(/\s+/); - - for (let t = 0; t < removedTokens.length; t++) { - const token = removedTokens[t]; - if (!token) continue; // Skip empty tokens - - // Get the actual preceding and following tokens from the original text - const leftToken = oldIndex > 0 ? oldTokens[oldIndex - 1] : ""; - const rightToken = - oldIndex + 1 < oldTokens.length ? oldTokens[oldIndex + 1] : ""; - - // Look ahead for added part to mark this as a replacement - const nextPart = diff[i + 1]; - if (nextPart && nextPart.added) { - const addedTokens = nextPart.value.split(/\s+/).filter((t) => t); // Filter out empty tokens - if (t < addedTokens.length) { - await this.recordEdit(token, addedTokens[t], leftToken, rightToken); - } - skipNextAdded = true; // Skip processing this added part later - } else { - // Only record removal if we have some context - if (leftToken || rightToken) { - await this.recordEdit(token, "", leftToken, rightToken); - } - } - oldIndex++; - } - } else if (part.added && !skipNextAdded) { - // Handle pure additions (no preceding removal) - const addedTokens = part.value.split(/\s+/).filter((t) => t); // Filter out empty tokens - - for (let t = 0; t < addedTokens.length; t++) { - const token = addedTokens[t]; - if (!token) continue; // Skip empty tokens - - // For pure additions, get the actual surrounding context - const contextIndex = oldIndex > 0 ? oldIndex - 1 : 0; - const leftToken = contextIndex > 0 ? oldTokens[contextIndex - 1] : ""; - const rightToken = - contextIndex < oldTokens.length ? oldTokens[contextIndex] : ""; - - // Only record addition if we have some context - if (leftToken || rightToken) { - await this.recordEdit("", token, leftToken, rightToken); - } - } - } else { - // Skip unchanged tokens - const skipTokens = part.value.split(/\s+/).filter((t) => t).length; - oldIndex += skipTokens; - } - - // Reset the skip flag after processing an added part - if (part.added) { - skipNextAdded = false; - } - } - } - - private async ensureFileExists(): Promise { - try { - await vscode.workspace.fs.stat(this.iceEditsPath); - } catch (error) { - if ((error as any).code === "FileNotFound") { - await vscode.workspace.fs.writeFile(this.iceEditsPath, new Uint8Array()); - } else { - throw error; - } - } - } - - private async loadEditRecords(): Promise> { - try { - const fileContent = await vscode.workspace.fs.readFile(this.iceEditsPath); - const fileString = fileContent.toString(); - const records: Record = fileString ? JSON.parse(fileString) : {}; - - // Filter out rejected records when loading - const filteredRecords = Object.fromEntries( - Object.entries(records).filter(([_, record]) => !record.rejected) - ); - - // Update the in-memory records - this.editRecords = new Map(Object.entries(filteredRecords)); - - // Return all records (including rejected ones) for reference - return records; - } catch (error) { - console.error("Error loading ICE edit records:", error); - return {}; - } - } - - private async saveEditRecords(): Promise { - try { - const records = Object.fromEntries(this.editRecords); - await vscode.workspace.fs.writeFile( - this.iceEditsPath, - Buffer.from(JSON.stringify(records, null, 2)) - ); - } catch (error) { - console.error("Error saving ICE edit records:", error); - } - } - - private getRecordKey(original: string, leftToken: string, rightToken: string): string { - // Don't create records with all empty values - if (!original && !leftToken && !rightToken) { - return ""; // Return empty string instead of null - } - return `${leftToken}|${original}|${rightToken}`; - } - - async recordEdit( - original: string, - replacement: string, - leftToken: string, - rightToken: string - ): Promise { - // Skip if trying to record an empty edit - if (!original && !replacement) { - return; - } - - await this.loadEditRecords(); - - const key = this.getRecordKey(original, leftToken, rightToken); - // Skip if key is empty (all empty values) - if (!key) { - return; - } - - const existingRecord = this.editRecords.get(key); - - if (existingRecord && existingRecord.replacement === replacement) { - // Increment frequency for existing identical edit - this.editRecords.set(key, { - ...existingRecord, - frequency: existingRecord.frequency + 1, - lastUpdated: Date.now(), - }); - } else { - // Create new record - this.editRecords.set(key, { - original, - replacement, - leftToken, - rightToken, - frequency: 1, - lastUpdated: Date.now(), - }); - } - - await this.saveEditRecords(); - } - - async calculateSuggestions( - currentToken: string, - leftToken: string, - rightToken: string - ): Promise> { - debug("[RYDER] Calculating suggestions for:", { - currentToken, - leftToken, - rightToken, - }); - - const allRecords = await this.loadEditRecords(); - debug("[RYDER] allRecords details:", allRecords); - - const suggestions: Array<{ replacement: string; confidence: string; frequency: number }> = - []; - - for (const [key, record] of Object.entries(allRecords || {})) { - // Skip rejected records - if (record.rejected) { - debug("[RYDER] Skipping rejected record:", { key, record }); - continue; - } - - debug("[RYDER] Comparing record:", { - key, - recordOriginal: record.original, - recordReplacement: record.replacement, - expectedOriginal: currentToken, - expectedReplacement: record.replacement, - recordLeft: record.leftToken, - recordRight: record.rightToken, - currentLeft: leftToken, - currentRight: rightToken, - }); - - const { - original: recordOriginal, - replacement: recordReplacement, - leftToken: recordLeftToken, - rightToken: recordRightToken, - rejected: recordRejected, - } = record; - - // Only add suggestion if it matches exactly and isn't rejected - if ( - recordOriginal === currentToken && - recordLeftToken === leftToken && - recordRightToken === rightToken && - !recordRejected // Double-check rejection status - ) { - debug("[RYDER] found matching record", { key, record }); - suggestions.push({ - replacement: record.replacement, - confidence: "high", - frequency: record.frequency || 1, - }); - } - } - - debug("[RYDER] Final suggestions:", suggestions); - return suggestions; - } - - /** - * Mark an edit suggestion as rejected - */ - async rejectEdit( - original: string, - replacement: string, - leftToken: string, - rightToken: string - ): Promise { - debug("[RYDER] rejectEdit called from ICEEdits class", { - original, - replacement, - leftToken, - rightToken, - }); - await this.loadEditRecords(); - - // Load all records including rejected ones - const fileContent = await vscode.workspace.fs.readFile(this.iceEditsPath); - const fileString = fileContent.toString(); - const allRecords: Record = fileString ? JSON.parse(fileString) : {}; - - // Log all record keys to help debug - debug("[RYDER] allRecords details:", JSON.stringify(allRecords, null, 2)); - - // Find the record by matching fields directly - const entries = Object.entries(allRecords); - - // Debug each comparison - entries.forEach(([key, record]) => { - debug("[RYDER] Comparing record:", { - key, - recordOriginal: record.original, - recordReplacement: record.replacement, - expectedOriginal: original, - expectedReplacement: replacement, - originalMatches: record.original === original, - replacementMatches: record.replacement === replacement, - // Debug the actual string values - recordOriginalType: typeof record.original, - recordReplacementType: typeof record.replacement, - originalType: typeof original, - replacementType: typeof replacement, - // Debug string lengths - recordOriginalLength: record.original.length, - recordReplacementLength: record.replacement.length, - originalLength: original.length, - replacementLength: replacement.length, - // Debug character codes - recordOriginalCodes: [...record.original].map((c) => c.charCodeAt(0)), - recordReplacementCodes: [...record.replacement].map((c) => c.charCodeAt(0)), - originalCodes: [...original].map((c) => c.charCodeAt(0)), - replacementCodes: [...replacement].map((c) => c.charCodeAt(0)), - }); - }); - - const matchingEntry = entries.find(([_, record]) => { - const originalMatch = original === record.original; - const replacementMatch = replacement === record.replacement; - const leftTokenMatch = leftToken === record.leftToken; - const rightTokenMatch = rightToken === record.rightToken; - - return ( - originalMatch && - replacementMatch && - leftTokenMatch && - rightTokenMatch && - !record.rejected - ); - }); - - debug(matchingEntry); - - if (matchingEntry) { - const [key, record] = matchingEntry; - debug("[RYDER] found matching record", { key, record }); - - // Create the updated record and verify it has the rejected flag - const updatedRecord = { ...record, rejected: true }; - debug("[RYDER] updated record", { updatedRecord }); - - allRecords[key] = updatedRecord; - debug("[RYDER] allRecords after rejection", JSON.stringify(allRecords, null, 2)); - - await vscode.workspace.fs.writeFile( - this.iceEditsPath, - Buffer.from(JSON.stringify(allRecords, null, 2)) - ); - debug("[RYDER] Successfully wrote to file"); - - // Update in-memory records - this.editRecords.delete(key); - } else { - // Log why we didn't find a match - debug("[RYDER] Did not find matching record for:", { - original, - replacement, - availableRecords: entries.map(([key, record]) => ({ - key, - original: record.original, - replacement: record.replacement, - })), - }); - } - } -} diff --git a/src/smartEdits/registerSmartEditCommands.ts b/src/smartEdits/registerSmartEditCommands.ts index 11d1ab179..2aeafbc67 100644 --- a/src/smartEdits/registerSmartEditCommands.ts +++ b/src/smartEdits/registerSmartEditCommands.ts @@ -1,70 +1,18 @@ import * as vscode from "vscode"; -import { SmartEdits } from "./smartEdits"; import { getWorkSpaceFolder } from "../utils"; import { SmartBacktranslation, SavedBacktranslation } from "./smartBacktranslation"; -import { ICEEdits } from "./iceEdits"; export const registerSmartEditCommands = (context: vscode.ExtensionContext) => { const workspaceFolder = getWorkSpaceFolder(); if (!workspaceFolder) { - console.warn("No workspace folder found, smart edits will be disabled"); + console.warn("No workspace folder found, smart backtranslation will be disabled"); return; } const workspaceUri = vscode.Uri.file(workspaceFolder); - const smartEdits = new SmartEdits(workspaceUri); const smartBacktranslation = new SmartBacktranslation(workspaceUri); - const iceEdits = new ICEEdits(workspaceFolder); - context.subscriptions.push( - vscode.commands.registerCommand( - "codex-smart-edits.getEdits", - async (text: string, cellId: string) => { - try { - const suggestions = await smartEdits.getEdits(text, cellId); - return suggestions; - } catch (error) { - console.error("Error getting smart edits:", error); - return []; - } - } - ) - ); - - context.subscriptions.push( - vscode.commands.registerCommand( - "codex-smart-edits.getSavedSuggestions", - async (cellId: string) => { - try { - const suggestions = await smartEdits.loadSavedSuggestions(cellId); - return suggestions; - } catch (error) { - console.error("Error getting saved suggestions:", error); - return []; - } - } - ) - ); - - context.subscriptions.push( - vscode.commands.registerCommand( - "codex-smart-edits.supplyRecentEditHistory", - async ({ cellId, editHistory }) => { - try { - await smartEdits.updateEditHistory(cellId, editHistory); - // TODO: Think about if below would be nice or not - // await promptedSmartEdits.updateEditHistory(cellId, editHistory); - return true; - } catch (error) { - console.error("Error updating edit history:", error); - return false; - } - } - ) - ); - - - // Add new commands for SmartBacktranslation + // Commands for SmartBacktranslation context.subscriptions.push( vscode.commands.registerCommand( "codex-smart-edits.generateBacktranslation", @@ -153,106 +101,5 @@ export const registerSmartEditCommands = (context: vscode.ExtensionContext) => { ) ); - - // Test command for ICE edits - context.subscriptions.push( - vscode.commands.registerCommand("codex-smart-edits.testIceEdit", async () => { - try { - // Record a test edit - await iceEdits.recordEdit("hello", "hi", "", "there"); - vscode.window.showInformationMessage( - "Recorded test ICE edit: 'hello' -> 'hi' (with 'there' as right context)" - ); - } catch (error) { - console.error("Error recording ICE edit:", error); - vscode.window.showErrorMessage("Failed to record ICE edit"); - } - }) - ); - - // Test command to check ICE suggestions - context.subscriptions.push( - vscode.commands.registerCommand("codex-smart-edits.checkIceSuggestions", async () => { - try { - const suggestions = await iceEdits.calculateSuggestions("hello", "", "there"); - vscode.window.showInformationMessage(`Found ${suggestions.length} ICE suggestions`); - } catch (error) { - console.error("Error checking ICE suggestions:", error); - vscode.window.showErrorMessage("Failed to check ICE suggestions"); - } - }) - ); - - // Register the getIceEdits command - context.subscriptions.push( - vscode.commands.registerCommand("codex-smart-edits.getIceEdits", async (text: string) => { - const suggestions = await smartEdits.getIceEdits(text); - return suggestions; - }) - ); - - // Add new command for recording ICE edits - context.subscriptions.push( - vscode.commands.registerCommand( - "codex-smart-edits.recordIceEdit", - async (oldText: string, newText: string) => { - try { - // Use recordFullEdit which handles diffing and context extraction - await iceEdits.recordFullEdit(oldText, newText); - } catch (error) { - console.error("Error recording ICE edit:", error); - vscode.window.showErrorMessage( - "Failed to record ICE edit. Please check the console for more details." - ); - } - } - ) - ); - - // Add command to reject edit suggestions - context.subscriptions.push( - vscode.commands.registerCommand( - "codex-smart-edits.rejectEditSuggestion", - async ({ - source, - cellId, - oldString, - newString, - leftToken, - rightToken, - }: { - source: "ice" | "llm"; - cellId?: string; - oldString: string; - newString: string; - leftToken: string; - rightToken: string; - }) => { - try { - if (source === "ice") { - if (!leftToken && !rightToken) { - throw new Error( - "At least one of leftToken or rightToken is required for ICE edit rejections" - ); - } - await iceEdits.rejectEdit(oldString, newString, leftToken, rightToken); - } else { - if (!cellId) { - throw new Error("cellId is required for LLM edit rejections"); - } - await smartEdits.rejectSmartSuggestion(cellId, oldString, newString); - } - return true; - } catch (error) { - console.error("Error rejecting edit suggestion:", error); - vscode.window.showErrorMessage( - "Failed to reject edit suggestion. Please check the console for more details." - ); - return false; - } - } - ) - ); - - console.log("Smart Edit commands registered"); + console.log("Smart Backtranslation commands registered"); }; diff --git a/src/smartEdits/smartEdits.ts b/src/smartEdits/smartEdits.ts deleted file mode 100644 index ef1820eeb..000000000 --- a/src/smartEdits/smartEdits.ts +++ /dev/null @@ -1,535 +0,0 @@ -import Chatbot from "./chat"; -import { - TranslationPair, - SmartEditContext, - SmartSuggestion, - SavedSuggestions, - EditHistoryEntry, -} from "../../types"; -import { EditMapUtils, isValueEdit, filterEditsByPath } from "../utils/editMapUtils"; -import * as vscode from "vscode"; -import { diffWords } from "diff"; -import { ICEEdits } from "./iceEdits"; -import { tokenizeText } from "@/utils/nlpUtils"; - -const DEBUG_ENABLED = false; -function debug(...args: any[]): void { - if (DEBUG_ENABLED) { - console.log(`[SmartEdits]`, ...args); - } -} - -interface IceSuggestion { - text: string; - replacement: string; - confidence: string; - frequency: number; - rejected?: boolean; - leftToken: string; - rightToken: string; -} - -const SYSTEM_MESSAGE = `You are a helpful assistant. Given similar edits across a corpus, you will suggest edits to a new text. -Your suggestions should follow this format: - { - "suggestions": [ - { - "oldString": "The old string to be replaced", - "newString": "The new string to replace the old string" - }, - { - "oldString": "The old string to be replaced", - "newString": "The new string to replace the old string" - } - ] - } - Rules: - 1. These will be in languages you may not be familiar with, so try your best anyways and use the context to infer the correct potential edits. - 2. Do not make edits based only on HTML. Preserve all HTML tags in the text. - 3. If no edits are needed, return this default response: - { - "suggestions": [] - } - 4. Focus on meaningful content changes, not just HTML structure modifications. - 5. Pay close attention to what commonly changes between revisions, and attempt to supply suggestions that implement these if it makes sense. - 6. The replacements should focus as few words as possible, break into multiple suggestions when needed. - `; - -export class SmartEdits { - private chatbot: Chatbot; - private smartEditsPath: vscode.Uri; - private teachFile: vscode.Uri; - private lastProcessedCellId: string | null = null; - private lastSuggestions: SmartSuggestion[] = []; - private editHistory: { [key: string]: EditHistoryEntry[]; } = {}; - private iceEdits: ICEEdits; - - constructor(workspaceUri: vscode.Uri) { - this.chatbot = new Chatbot(SYSTEM_MESSAGE); - this.smartEditsPath = vscode.Uri.joinPath(workspaceUri, "files", "smart_edits.json"); - this.teachFile = vscode.Uri.joinPath(workspaceUri, "files", "silver_path_memories.json"); - this.iceEdits = new ICEEdits(workspaceUri.fsPath); - - this.ensureFileExists(this.smartEditsPath); - this.ensureFileExists(this.teachFile); - } - - private async ensureFileExists(fileUri: vscode.Uri): Promise { - try { - await vscode.workspace.fs.stat(fileUri); - } catch (error) { - if ((error as any).code === "FileNotFound") { - await vscode.workspace.fs.writeFile(fileUri, new Uint8Array()); - } else { - throw error; - } - } - } - - async getEdits(text: string, cellId: string): Promise { - // Get ICE suggestions first - const iceSuggestions: SmartSuggestion[] = []; - const similarEntries = await this.findSimilarEntries(text); - const cellHistory = this.editHistory[cellId] || []; - - // Get ICE suggestions - const iceResults = await vscode.commands.executeCommand( - "codex-smart-edits.getIceEdits", - text - ); - - if (iceResults?.length) { - iceResults - .filter((suggestion) => suggestion.rejected !== true) - .forEach((suggestion) => { - iceSuggestions.push({ - oldString: suggestion.text, - newString: suggestion.replacement, - confidence: suggestion.confidence as "high" | "low", - source: "ice", - frequency: suggestion.frequency, - }); - }); - } - - // If we have high-confidence ICE suggestions, return them immediately - const highConfidenceIceSuggestions = iceSuggestions.filter((s) => s.confidence === "high"); - if (highConfidenceIceSuggestions.length > 0) { - debug("[SmartEdits] Exiting early: Found high-confidence ICE suggestions."); - this.lastProcessedCellId = cellId; - this.lastSuggestions = highConfidenceIceSuggestions; - return highConfidenceIceSuggestions; - } - - // Determine the reference cellId for saved suggestions and context (fallback to current if none found) - let firstResultCellId = cellId; - if (similarEntries.length > 0) { - firstResultCellId = similarEntries[0].cellId; - } - debug("[SmartEdits] Using firstResultCellId:", firstResultCellId); - - if (firstResultCellId === this.lastProcessedCellId) { - debug("[SmartEdits] Exiting early: firstResultCellId matches lastProcessedCellId. Returning cached suggestions:", this.lastSuggestions); - return this.lastSuggestions; - } - - const savedSuggestions = await this.loadSavedSuggestions(firstResultCellId); - - if (savedSuggestions && savedSuggestions.lastCellValue === text) { - debug("[SmartEdits] Exiting early: Found saved suggestions for unchanged text. Returning saved suggestions:", savedSuggestions); - // Filter out rejected suggestions - const filteredSuggestions = savedSuggestions.suggestions.filter( - (suggestion) => - !savedSuggestions.rejectedSuggestions?.some( - (rejected) => - rejected.oldString === suggestion.oldString && - rejected.newString === suggestion.newString - ) - ); - - this.lastProcessedCellId = firstResultCellId; - this.lastSuggestions = filteredSuggestions; - return filteredSuggestions; - } - - const similarTexts = await this.getSimilarTexts(similarEntries); - const similarTextsString = this.formatSimilarTexts(similarTexts); - const message = this.createEditMessage(similarTextsString, text, cellHistory); - - debug(`[SmartEdits] Sending LLM prompt for cell ${cellId}:`); - debug(message); - const jsonResponse = await this.chatbot.getJsonCompletion(message); - debug(`[SmartEdits] Received LLM response for cell ${cellId}:`, jsonResponse); - - let llmSuggestions: SmartSuggestion[] = []; - if (Array.isArray(jsonResponse.suggestions)) { - llmSuggestions = jsonResponse.suggestions.map((suggestion: any) => ({ - oldString: suggestion.oldString || "", - newString: suggestion.newString || "", - source: "llm", - })); - } - - // Combine LLM suggestions with ICE suggestions and filter out rejected ones - const allSuggestions = [...llmSuggestions, ...iceSuggestions]; - await this.saveSuggestions(firstResultCellId, text, allSuggestions); - - this.lastProcessedCellId = firstResultCellId; - this.lastSuggestions = allSuggestions; - return allSuggestions; - } - - async loadSavedSuggestions(cellId: string): Promise { - try { - const fileContent = await vscode.workspace.fs.readFile(this.smartEditsPath); - const fileString = fileContent.toString(); - const savedEdits: { [key: string]: SavedSuggestions; } = fileString - ? JSON.parse(fileString) - : {}; - const result = savedEdits[cellId] || null; - - if (result) { - // Filter out rejected suggestions - result.suggestions = result.suggestions.filter( - (suggestion) => - !result.rejectedSuggestions?.some( - (rejected) => - rejected.oldString === suggestion.oldString && - rejected.newString === suggestion.newString - ) - ); - } - - return result; - } catch (error) { - console.error("Error loading saved suggestions:", error); - return null; - } - } - - /** - * Mark a smart edit suggestion as rejected - */ - async rejectSmartSuggestion( - cellId: string, - oldString: string, - newString: string - ): Promise { - try { - const fileContent = await vscode.workspace.fs.readFile(this.smartEditsPath); - const fileString = fileContent.toString(); - const savedEdits: { [key: string]: SavedSuggestions; } = fileString - ? JSON.parse(fileString) - : {}; - - // Initialize the cell entry if it doesn't exist - if (!savedEdits[cellId]) { - savedEdits[cellId] = { - cellId, - lastCellValue: "", - suggestions: [], - rejectedSuggestions: [], - lastUpdatedDate: new Date().toISOString(), - }; - } - - const cellEdits = savedEdits[cellId]; - - debug("[RYDER] Rejecting smart suggestion for cellId:", cellId, { - oldString, - newString, - cellEdits, - savedEdits, - }); - - // Initialize rejectedSuggestions if it doesn't exist - if (!cellEdits.rejectedSuggestions) { - cellEdits.rejectedSuggestions = []; - } - - // Add to rejected suggestions if not already there - if ( - !cellEdits.rejectedSuggestions.some( - (s) => s.oldString === oldString && s.newString === newString - ) - ) { - cellEdits.rejectedSuggestions.push({ oldString, newString }); - } - - // Filter out the rejected suggestion from current suggestions - cellEdits.suggestions = cellEdits.suggestions.filter( - (s) => !(s.oldString === oldString && s.newString === newString) - ); - - // Update in-memory suggestions if this is for the last processed cell - if (this.lastProcessedCellId === cellId) { - this.lastSuggestions = this.lastSuggestions.filter( - (s) => !(s.oldString === oldString && s.newString === newString) - ); - debug("[RYDER] Updated in-memory suggestions:", this.lastSuggestions); - } - - debug("[RYDER] Rejected suggestion:", { oldString, newString }); - - savedEdits[cellId] = cellEdits; - await vscode.workspace.fs.writeFile( - this.smartEditsPath, - Buffer.from(JSON.stringify(savedEdits, null, 2)) - ); - } catch (error) { - console.error("Error rejecting smart suggestion:", error); - throw error; - } - } - - private async saveSuggestions( - cellId: string, - text: string, - suggestions: SmartSuggestion[] - ): Promise { - if (suggestions.length === 0) return; - try { - let savedEdits: { [key: string]: SavedSuggestions; } = {}; - - try { - const fileContent = await vscode.workspace.fs.readFile(this.smartEditsPath); - const fileString = fileContent.toString(); - savedEdits = fileString ? JSON.parse(fileString) : {}; - } catch (error) { - debug("No existing saved edits found, starting with empty object"); - } - - savedEdits[cellId] = { - cellId, - lastCellValue: text, - suggestions, - lastUpdatedDate: new Date().toISOString(), - }; - - await vscode.workspace.fs.writeFile( - this.smartEditsPath, - Buffer.from(JSON.stringify(savedEdits, null, 2)) - ); - } catch (error) { - console.error("Error saving suggestions:", error); - } - } - - private async findSimilarEntries(text: string): Promise { - try { - const results = await vscode.commands.executeCommand( - "codex-editor-extension.searchParallelCells", - text - ); - return results || []; - } catch (error) { - console.error("Error searching parallel cells:", error); - return []; - } - } - - private async getSimilarTexts(similarEntries: TranslationPair[]): Promise { - const similarTexts: SmartEditContext[] = []; - const allMemories = await this.readAllMemories(); - - for (const entry of similarEntries) { - if (entry.targetCell.uri) { - try { - const uri = vscode.Uri.parse(entry.targetCell.uri.toString()); - const pathSegments = uri.path.split("/").filter(Boolean); - - // Create new path segments array with modifications - const newPathSegments = pathSegments.map((segment) => { - if (segment === ".source") return ".codex"; - if (segment === "sourceTexts") return "target"; - return segment; - }); - - // Ensure we have the correct path structure - const workspaceUri = vscode.workspace.workspaceFolders?.[0]?.uri; - if (!workspaceUri) { - console.error("No workspace folder found"); - continue; - } - - // Create the target file URI by joining with workspace - const fileUri = vscode.Uri.joinPath( - workspaceUri, - "files", - "target", - pathSegments[pathSegments.length - 1].replace(".source", ".codex") - ); - - debug({ - lastPathSegments: pathSegments[pathSegments.length - 1], - fileUri, - pathSegments, - }); - - const fileContent = await vscode.workspace.fs.readFile(fileUri); - const fileString = fileContent.toString(); - const jsonContent = fileString ? JSON.parse(fileString) : { cells: [] }; - const cell = jsonContent.cells?.find( - (cell: any) => cell.metadata.id === entry.cellId - ); - if (cell) { - const context: SmartEditContext = { - cellId: entry.cellId, - currentCellValue: cell.value, - edits: cell.metadata.edits || [], - memory: allMemories[entry.cellId]?.content || "", - }; - similarTexts.push(context); - } else { - debug(`Cell not found for cellId: ${entry.cellId}`); - } - } catch (error) { - console.error(`Error reading file for cellId ${entry.cellId}:`, error); - } - } else { - debug(`No valid URI found for cellId: ${entry.cellId}`); - } - } - return similarTexts; - } - - private formatSimilarTexts(similarTexts: SmartEditContext[]): string { - const formattedTexts = similarTexts - .map((context) => { - // Alternative: Using the generic filter utility - const valueEdits = filterEditsByPath(context.edits, ["value"] as const); - if (valueEdits.length === 0) return ""; - - // TypeScript knows these are value edits with string values - const firstEdit = this.stripHtml(valueEdits[0].value as string); - const lastEdit = this.stripHtml(valueEdits[valueEdits.length - 1].value as string); - - if (valueEdits.length === 1 || firstEdit === lastEdit) return ""; - - const diff = this.generateDiff(firstEdit, lastEdit); - return `"${context.cellId}": { - revision 1: ${JSON.stringify(firstEdit)} - revision 2: ${JSON.stringify(lastEdit)} - diff: - ${diff} - memory: ${JSON.stringify(context.memory)} -}`; - }) - .filter((text) => text !== ""); - return `{\n${formattedTexts.join(",\n")}\n}`; - } - - private stripHtml(text: string): string { - // Remove HTML tags - let strippedText = text.replace(/<[^>]*>/g, ""); - // Remove common HTML entities - strippedText = strippedText.replace(/&|<|>|"|'/g, ""); - // remove and replace   entities - strippedText = strippedText.replace(/  ?/g, " "); - // Remove other numeric HTML entities - strippedText = strippedText.replace(/&#\d+;/g, ""); - // Remove any remaining & entities - strippedText = strippedText.replace(/&[a-zA-Z]+;/g, ""); - return strippedText; - } - - private generateDiff(oldText: string, newText: string): string { - const diff = diffWords(oldText, newText); - return diff - .map((part) => { - if (part.added) { - return ` + ${part.value}`; - } - if (part.removed) { - return ` - ${part.value}`; - } - return ` ${part.value}`; - }) - .join(""); - } - - private createEditMessage( - similarTextsString: string, - text: string, - history: EditHistoryEntry[] - ): string { - const historyString = - history.length > 0 - ? `\nRecent edit history for this cell:\n${history - .map( - (entry) => - `Before: ${entry.before}\nAfter: ${entry.after}\nTimestamp: ${new Date(entry.timestamp).toISOString()}` - ) - .join("\n\n")}` - : ""; - - return `Similar Texts:\n${similarTextsString}\n${historyString}\n\nEdit the following text based on the patterns you've seen in similar texts and recent edits, always return the json format specified. Do not suggest edits that are merely HTML changes. Focus on meaningful content modifications.\nText: ${text}`; - } - - async updateEditHistory(cellId: string, history: EditHistoryEntry[]): Promise { - this.editHistory[cellId] = history; - - // Record each edit in ICE edits using the new recordFullEdit method - for (const entry of history) { - await this.iceEdits.recordFullEdit(entry.before, entry.after); - } - } - - private async readAllMemories(): Promise<{ - [cellId: string]: { content: string; times_used: number; }; - }> { - try { - const fileContent = await vscode.workspace.fs.readFile(this.teachFile); - const fileString = fileContent.toString(); - return fileString ? JSON.parse(fileString) : {}; - } catch (error) { - console.error("Error reading memories:", error); - return {}; - } - } - - async getIceEdits(text: string): Promise { - debug("[ICE] Starting getIceEdits with text:", text); - // First tokenize by whitespace - const tokens = tokenizeText({ method: "whitespace", text }); - debug("[ICE] Initial tokens:", tokens); - - // Then clean each token of punctuation - const cleanTokens = tokens.map((token) => token.replace(/[.,!?;:]$/, "")); - debug("[ICE] Cleaned tokens:", cleanTokens); - - const iceSuggestions: IceSuggestion[] = []; - - // Process each word/token for ICE suggestions - for (let i = 0; i < cleanTokens.length; i++) { - const leftToken = i > 0 ? cleanTokens[i - 1] : ""; - const rightToken = i < cleanTokens.length - 1 ? cleanTokens[i + 1] : ""; - const currentToken = cleanTokens[i]; - const originalToken = tokens[i]; // Keep original for replacement - debug("[ICE] Processing token:", { currentToken, leftToken, rightToken }); - - const suggestions = await this.iceEdits.calculateSuggestions( - currentToken, - leftToken, - rightToken - ); - debug("[ICE] Got suggestions:", suggestions); - - suggestions.forEach((suggestion) => { - // Preserve the original punctuation when creating the suggestion - const punctuation = tokens[i].slice(currentToken.length); - iceSuggestions.push({ - text: originalToken, - replacement: suggestion.replacement + punctuation, - confidence: suggestion.confidence, - frequency: suggestion.frequency, - leftToken, - rightToken, - }); - }); - } - - debug("[ICE] Final suggestions:", iceSuggestions); - return iceSuggestions; - } -} diff --git a/src/smartEdits/types.ts b/src/smartEdits/types.ts deleted file mode 100644 index 468c0b147..000000000 --- a/src/smartEdits/types.ts +++ /dev/null @@ -1,7 +0,0 @@ -export interface TargetCell { - cellId: string; - targetContent: string; - id?: string; - score?: number; - sourceContent?: string; -} diff --git a/webviews/dictionary-side-panel/dist/assets/index.css b/webviews/dictionary-side-panel/dist/assets/index.css deleted file mode 100644 index 57456c771..000000000 --- a/webviews/dictionary-side-panel/dist/assets/index.css +++ /dev/null @@ -1 +0,0 @@ -.app-container{color:var(--vscode-editor-foreground);padding:20px;background-color:var(--vscode-editor-background);height:100vh;box-sizing:border-box;display:flex;flex-direction:column;align-items:center}.title{color:var(--vscode-editor-foreground);font-size:24px;margin-bottom:20px}.card{background-color:var(--vscode-editorWidget-background);box-shadow:0 2px 4px #0000001a;padding:20px;border-radius:8px;width:100%;max-width:400px;text-align:center}.entry-count{font-size:16px;margin-bottom:20px}.show-table-btn{background-color:var(--vscode-button-background);color:var(--vscode-button-foreground);border:none;padding:10px 20px;border-radius:4px;cursor:pointer;font-size:14px;transition:background-color .3s ease}.show-table-btn:hover{background-color:var(--vscode-button-hoverBackground)} diff --git a/webviews/dictionary-side-panel/dist/assets/index.js b/webviews/dictionary-side-panel/dist/assets/index.js deleted file mode 100644 index a6b63b560..000000000 --- a/webviews/dictionary-side-panel/dist/assets/index.js +++ /dev/null @@ -1,40 +0,0 @@ -var lc=Object.defineProperty;var oc=(e,n,t)=>n in e?lc(e,n,{enumerable:!0,configurable:!0,writable:!0,value:t}):e[n]=t;var Du=(e,n,t)=>oc(e,typeof n!="symbol"?n+"":n,t);(function(){const n=document.createElement("link").relList;if(n&&n.supports&&n.supports("modulepreload"))return;for(const l of document.querySelectorAll('link[rel="modulepreload"]'))r(l);new MutationObserver(l=>{for(const o of l)if(o.type==="childList")for(const u of o.addedNodes)u.tagName==="LINK"&&u.rel==="modulepreload"&&r(u)}).observe(document,{childList:!0,subtree:!0});function t(l){const o={};return l.integrity&&(o.integrity=l.integrity),l.referrerPolicy&&(o.referrerPolicy=l.referrerPolicy),l.crossOrigin==="use-credentials"?o.credentials="include":l.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function r(l){if(l.ep)return;l.ep=!0;const o=t(l);fetch(l.href,o)}})();function uc(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Qi={exports:{}},el={},Ki={exports:{}},L={};/** - * @license React - * react.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var Xt=Symbol.for("react.element"),ic=Symbol.for("react.portal"),sc=Symbol.for("react.fragment"),ac=Symbol.for("react.strict_mode"),cc=Symbol.for("react.profiler"),fc=Symbol.for("react.provider"),dc=Symbol.for("react.context"),pc=Symbol.for("react.forward_ref"),mc=Symbol.for("react.suspense"),vc=Symbol.for("react.memo"),hc=Symbol.for("react.lazy"),Iu=Symbol.iterator;function yc(e){return e===null||typeof e!="object"?null:(e=Iu&&e[Iu]||e["@@iterator"],typeof e=="function"?e:null)}var Yi={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},Xi=Object.assign,Gi={};function lt(e,n,t){this.props=e,this.context=n,this.refs=Gi,this.updater=t||Yi}lt.prototype.isReactComponent={};lt.prototype.setState=function(e,n){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,n,"setState")};lt.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function Zi(){}Zi.prototype=lt.prototype;function $o(e,n,t){this.props=e,this.context=n,this.refs=Gi,this.updater=t||Yi}var Ao=$o.prototype=new Zi;Ao.constructor=$o;Xi(Ao,lt.prototype);Ao.isPureReactComponent=!0;var Fu=Array.isArray,Ji=Object.prototype.hasOwnProperty,Vo={current:null},qi={key:!0,ref:!0,__self:!0,__source:!0};function bi(e,n,t){var r,l={},o=null,u=null;if(n!=null)for(r in n.ref!==void 0&&(u=n.ref),n.key!==void 0&&(o=""+n.key),n)Ji.call(n,r)&&!qi.hasOwnProperty(r)&&(l[r]=n[r]);var i=arguments.length-2;if(i===1)l.children=t;else if(1>>1,X=C[H];if(0>>1;Hl(gl,z))hnl(er,gl)?(C[H]=er,C[hn]=z,H=hn):(C[H]=gl,C[vn]=z,H=vn);else if(hnl(er,z))C[H]=er,C[hn]=z,H=hn;else break e}}return P}function l(C,P){var z=C.sortIndex-P.sortIndex;return z!==0?z:C.id-P.id}if(typeof performance=="object"&&typeof performance.now=="function"){var o=performance;e.unstable_now=function(){return o.now()}}else{var u=Date,i=u.now();e.unstable_now=function(){return u.now()-i}}var s=[],c=[],v=1,m=null,p=3,g=!1,w=!1,S=!1,F=typeof setTimeout=="function"?setTimeout:null,f=typeof clearTimeout=="function"?clearTimeout:null,a=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function d(C){for(var P=t(c);P!==null;){if(P.callback===null)r(c);else if(P.startTime<=C)r(c),P.sortIndex=P.expirationTime,n(s,P);else break;P=t(c)}}function h(C){if(S=!1,d(C),!w)if(t(s)!==null)w=!0,hl(E);else{var P=t(c);P!==null&&yl(h,P.startTime-C)}}function E(C,P){w=!1,S&&(S=!1,f(N),N=-1),g=!0;var z=p;try{for(d(P),m=t(s);m!==null&&(!(m.expirationTime>P)||C&&!xe());){var H=m.callback;if(typeof H=="function"){m.callback=null,p=m.priorityLevel;var X=H(m.expirationTime<=P);P=e.unstable_now(),typeof X=="function"?m.callback=X:m===t(s)&&r(s),d(P)}else r(s);m=t(s)}if(m!==null)var bt=!0;else{var vn=t(c);vn!==null&&yl(h,vn.startTime-P),bt=!1}return bt}finally{m=null,p=z,g=!1}}var _=!1,x=null,N=-1,B=5,T=-1;function xe(){return!(e.unstable_now()-TC||125H?(C.sortIndex=z,n(c,C),t(s)===null&&C===t(c)&&(S?(f(N),N=-1):S=!0,yl(h,z-H))):(C.sortIndex=X,n(s,C),w||g||(w=!0,hl(E))),C},e.unstable_shouldYield=xe,e.unstable_wrapCallback=function(C){var P=p;return function(){var z=p;p=P;try{return C.apply(this,arguments)}finally{p=z}}}})(ls);rs.exports=ls;var Lc=rs.exports;/** - * @license React - * react-dom.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var Tc=Tt,he=Lc;function y(e){for(var n="https://reactjs.org/docs/error-decoder.html?invariant="+e,t=1;t"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Kl=Object.prototype.hasOwnProperty,Rc=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,Uu={},$u={};function Oc(e){return Kl.call($u,e)?!0:Kl.call(Uu,e)?!1:Rc.test(e)?$u[e]=!0:(Uu[e]=!0,!1)}function Mc(e,n,t,r){if(t!==null&&t.type===0)return!1;switch(typeof n){case"function":case"symbol":return!0;case"boolean":return r?!1:t!==null?!t.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function Dc(e,n,t,r){if(n===null||typeof n>"u"||Mc(e,n,t,r))return!0;if(r)return!1;if(t!==null)switch(t.type){case 3:return!n;case 4:return n===!1;case 5:return isNaN(n);case 6:return isNaN(n)||1>n}return!1}function ie(e,n,t,r,l,o,u){this.acceptsBooleans=n===2||n===3||n===4,this.attributeName=r,this.attributeNamespace=l,this.mustUseProperty=t,this.propertyName=e,this.type=n,this.sanitizeURL=o,this.removeEmptyString=u}var b={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){b[e]=new ie(e,0,!1,e,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var n=e[0];b[n]=new ie(n,1,!1,e[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(e){b[e]=new ie(e,2,!1,e.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){b[e]=new ie(e,2,!1,e,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){b[e]=new ie(e,3,!1,e.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(e){b[e]=new ie(e,3,!0,e,null,!1,!1)});["capture","download"].forEach(function(e){b[e]=new ie(e,4,!1,e,null,!1,!1)});["cols","rows","size","span"].forEach(function(e){b[e]=new ie(e,6,!1,e,null,!1,!1)});["rowSpan","start"].forEach(function(e){b[e]=new ie(e,5,!1,e.toLowerCase(),null,!1,!1)});var Ho=/[\-:]([a-z])/g;function Wo(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var n=e.replace(Ho,Wo);b[n]=new ie(n,1,!1,e,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var n=e.replace(Ho,Wo);b[n]=new ie(n,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(e){var n=e.replace(Ho,Wo);b[n]=new ie(n,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(e){b[e]=new ie(e,1,!1,e.toLowerCase(),null,!1,!1)});b.xlinkHref=new ie("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(e){b[e]=new ie(e,1,!1,e.toLowerCase(),null,!0,!0)});function Qo(e,n,t,r){var l=b.hasOwnProperty(n)?b[n]:null;(l!==null?l.type!==0:r||!(2i||l[u]!==o[i]){var s=` -`+l[u].replace(" at new "," at ");return e.displayName&&s.includes("")&&(s=s.replace("",e.displayName)),s}while(1<=u&&0<=i);break}}}finally{kl=!1,Error.prepareStackTrace=t}return(e=e?e.displayName||e.name:"")?yt(e):""}function Ic(e){switch(e.tag){case 5:return yt(e.type);case 16:return yt("Lazy");case 13:return yt("Suspense");case 19:return yt("SuspenseList");case 0:case 2:case 15:return e=El(e.type,!1),e;case 11:return e=El(e.type.render,!1),e;case 1:return e=El(e.type,!0),e;default:return""}}function Zl(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case Dn:return"Fragment";case Mn:return"Portal";case Yl:return"Profiler";case Ko:return"StrictMode";case Xl:return"Suspense";case Gl:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case is:return(e.displayName||"Context")+".Consumer";case us:return(e._context.displayName||"Context")+".Provider";case Yo:var n=e.render;return e=e.displayName,e||(e=n.displayName||n.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case Xo:return n=e.displayName||null,n!==null?n:Zl(e.type)||"Memo";case Ge:n=e._payload,e=e._init;try{return Zl(e(n))}catch{}}return null}function Fc(e){var n=e.type;switch(e.tag){case 24:return"Cache";case 9:return(n.displayName||"Context")+".Consumer";case 10:return(n._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=n.render,e=e.displayName||e.name||"",n.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return n;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return Zl(n);case 8:return n===Ko?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof n=="function")return n.displayName||n.name||null;if(typeof n=="string")return n}return null}function cn(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function as(e){var n=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(n==="checkbox"||n==="radio")}function jc(e){var n=as(e)?"checked":"value",t=Object.getOwnPropertyDescriptor(e.constructor.prototype,n),r=""+e[n];if(!e.hasOwnProperty(n)&&typeof t<"u"&&typeof t.get=="function"&&typeof t.set=="function"){var l=t.get,o=t.set;return Object.defineProperty(e,n,{configurable:!0,get:function(){return l.call(this)},set:function(u){r=""+u,o.call(this,u)}}),Object.defineProperty(e,n,{enumerable:t.enumerable}),{getValue:function(){return r},setValue:function(u){r=""+u},stopTracking:function(){e._valueTracker=null,delete e[n]}}}}function rr(e){e._valueTracker||(e._valueTracker=jc(e))}function cs(e){if(!e)return!1;var n=e._valueTracker;if(!n)return!0;var t=n.getValue(),r="";return e&&(r=as(e)?e.checked?"true":"false":e.value),e=r,e!==t?(n.setValue(e),!0):!1}function Tr(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function Jl(e,n){var t=n.checked;return A({},n,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:t??e._wrapperState.initialChecked})}function Vu(e,n){var t=n.defaultValue==null?"":n.defaultValue,r=n.checked!=null?n.checked:n.defaultChecked;t=cn(n.value!=null?n.value:t),e._wrapperState={initialChecked:r,initialValue:t,controlled:n.type==="checkbox"||n.type==="radio"?n.checked!=null:n.value!=null}}functionvscode.workspace.fs(e,n){n=n.checked,n!=null&&Qo(e,"checked",n,!1)}function ql(e,n){fs(e,n);var t=cn(n.value),r=n.type;if(t!=null)r==="number"?(t===0&&e.value===""||e.value!=t)&&(e.value=""+t):e.value!==""+t&&(e.value=""+t);else if(r==="submit"||r==="reset"){e.removeAttribute("value");return}n.hasOwnProperty("value")?bl(e,n.type,t):n.hasOwnProperty("defaultValue")&&bl(e,n.type,cn(n.defaultValue)),n.checked==null&&n.defaultChecked!=null&&(e.defaultChecked=!!n.defaultChecked)}function Bu(e,n,t){if(n.hasOwnProperty("value")||n.hasOwnProperty("defaultValue")){var r=n.type;if(!(r!=="submit"&&r!=="reset"||n.value!==void 0&&n.value!==null))return;n=""+e._wrapperState.initialValue,t||n===e.value||(e.value=n),e.defaultValue=n}t=e.name,t!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,t!==""&&(e.name=t)}function bl(e,n,t){(n!=="number"||Tr(e.ownerDocument)!==e)&&(t==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+t&&(e.defaultValue=""+t))}var gt=Array.isArray;function Qn(e,n,t,r){if(e=e.options,n){n={};for(var l=0;l"+n.valueOf().toString()+"",n=lr.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;n.firstChild;)e.appendChild(n.firstChild)}});function Ot(e,n){if(n){var t=e.firstChild;if(t&&t===e.lastChild&&t.nodeType===3){t.nodeValue=n;return}}e.textContent=n}var kt={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Uc=["Webkit","ms","Moz","O"];Object.keys(kt).forEach(function(e){Uc.forEach(function(n){n=n+e.charAt(0).toUpperCase()+e.substring(1),kt[n]=kt[e]})});function vs(e,n,t){return n==null||typeof n=="boolean"||n===""?"":t||typeof n!="number"||n===0||kt.hasOwnProperty(e)&&kt[e]?(""+n).trim():n+"px"}function hs(e,n){e=e.style;for(var t in n)if(n.hasOwnProperty(t)){var r=t.indexOf("--")===0,l=vs(t,n[t],r);t==="float"&&(t="cssFloat"),r?e.setProperty(t,l):e[t]=l}}var $c=A({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function to(e,n){if(n){if($c[e]&&(n.children!=null||n.dangerouslySetInnerHTML!=null))throw Error(y(137,e));if(n.dangerouslySetInnerHTML!=null){if(n.children!=null)throw Error(y(60));if(typeof n.dangerouslySetInnerHTML!="object"||!("__html"in n.dangerouslySetInnerHTML))throw Error(y(61))}if(n.style!=null&&typeof n.style!="object")throw Error(y(62))}}function ro(e,n){if(e.indexOf("-")===-1)return typeof n.is=="string";switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var lo=null;function Go(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var oo=null,Kn=null,Yn=null;function Qu(e){if(e=Jt(e)){if(typeof oo!="function")throw Error(y(280));var n=e.stateNode;n&&(n=ol(n),oo(e.stateNode,e.type,n))}}function ys(e){Kn?Yn?Yn.push(e):Yn=[e]:Kn=e}function gs(){if(Kn){var e=Kn,n=Yn;if(Yn=Kn=null,Qu(e),n)for(e=0;e>>=0,e===0?32:31-(Zc(e)/Jc|0)|0}var or=64,ur=4194304;function wt(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function Dr(e,n){var t=e.pendingLanes;if(t===0)return 0;var r=0,l=e.suspendedLanes,o=e.pingedLanes,u=t&268435455;if(u!==0){var i=u&~l;i!==0?r=wt(i):(o&=u,o!==0&&(r=wt(o)))}else u=t&~l,u!==0?r=wt(u):o!==0&&(r=wt(o));if(r===0)return 0;if(n!==0&&n!==r&&!(n&l)&&(l=r&-r,o=n&-n,l>=o||l===16&&(o&4194240)!==0))return n;if(r&4&&(r|=t&16),n=e.entangledLanes,n!==0)for(e=e.entanglements,n&=r;0t;t++)n.push(e);return n}function Gt(e,n,t){e.pendingLanes|=n,n!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,n=31-Te(n),e[n]=t}function nf(e,n){var t=e.pendingLanes&~n;e.pendingLanes=n,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=n,e.mutableReadLanes&=n,e.entangledLanes&=n,n=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0=Ct),ei=" ",ni=!1;function Us(e,n){switch(e){case"keyup":return Tf.indexOf(n.keyCode)!==-1;case"keydown":return n.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function $s(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var In=!1;function Of(e,n){switch(e){case"compositionend":return $s(n);case"keypress":return n.which!==32?null:(ni=!0,ei);case"textInput":return e=n.data,e===ei&&ni?null:e;default:return null}}function Mf(e,n){if(In)return e==="compositionend"||!ru&&Us(e,n)?(e=Fs(),kr=eu=be=null,In=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(n.ctrlKey||n.altKey||n.metaKey)||n.ctrlKey&&n.altKey){if(n.char&&1=n)return{node:t,offset:n-e};e=r}e:{for(;t;){if(t.nextSibling){t=t.nextSibling;break e}t=t.parentNode}t=void 0}t=oi(t)}}function Hs(e,n){return e&&n?e===n?!0:e&&e.nodeType===3?!1:n&&n.nodeType===3?Hs(e,n.parentNode):"contains"in e?e.contains(n):e.compareDocumentPosition?!!(e.compareDocumentPosition(n)&16):!1:!1}function Ws(){for(var e=window,n=Tr();n instanceof e.HTMLIFrameElement;){try{var t=typeof n.contentWindow.location.href=="string"}catch{t=!1}if(t)e=n.contentWindow;else break;n=Tr(e.document)}return n}function lu(e){var n=e&&e.nodeName&&e.nodeName.toLowerCase();return n&&(n==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||n==="textarea"||e.contentEditable==="true")}function Bf(e){var n=Ws(),t=e.focusedElem,r=e.selectionRange;if(n!==t&&t&&t.ownerDocument&&Hs(t.ownerDocument.documentElement,t)){if(r!==null&&lu(t)){if(n=r.start,e=r.end,e===void 0&&(e=n),"selectionStart"in t)t.selectionStart=n,t.selectionEnd=Math.min(e,t.value.length);else if(e=(n=t.ownerDocument||document)&&n.defaultView||window,e.getSelection){e=e.getSelection();var l=t.textContent.length,o=Math.min(r.start,l);r=r.end===void 0?o:Math.min(r.end,l),!e.extend&&o>r&&(l=r,r=o,o=l),l=ui(t,o);var u=ui(t,r);l&&u&&(e.rangeCount!==1||e.anchorNode!==l.node||e.anchorOffset!==l.offset||e.focusNode!==u.node||e.focusOffset!==u.offset)&&(n=n.createRange(),n.setStart(l.node,l.offset),e.removeAllRanges(),o>r?(e.addRange(n),e.extend(u.node,u.offset)):(n.setEnd(u.node,u.offset),e.addRange(n)))}}for(n=[],e=t;e=e.parentNode;)e.nodeType===1&&n.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof t.focus=="function"&&t.focus(),t=0;t=document.documentMode,Fn=null,fo=null,xt=null,po=!1;function ii(e,n,t){var r=t.window===t?t.document:t.nodeType===9?t:t.ownerDocument;po||Fn==null||Fn!==Tr(r)||(r=Fn,"selectionStart"in r&&lu(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),xt&&Ut(xt,r)||(xt=r,r=jr(fo,"onSelect"),0$n||(e.current=wo[$n],wo[$n]=null,$n--)}function M(e,n){$n++,wo[$n]=e.current,e.current=n}var fn={},re=pn(fn),ce=pn(!1),xn=fn;function qn(e,n){var t=e.type.contextTypes;if(!t)return fn;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===n)return r.__reactInternalMemoizedMaskedChildContext;var l={},o;for(o in t)l[o]=n[o];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=n,e.__reactInternalMemoizedMaskedChildContext=l),l}function fe(e){return e=e.childContextTypes,e!=null}function $r(){I(ce),I(re)}function mi(e,n,t){if(re.current!==fn)throw Error(y(168));M(re,n),M(ce,t)}function bs(e,n,t){var r=e.stateNode;if(n=n.childContextTypes,typeof r.getChildContext!="function")return t;r=r.getChildContext();for(var l in r)if(!(l in n))throw Error(y(108,Fc(e)||"Unknown",l));return A({},t,r)}function Ar(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||fn,xn=re.current,M(re,e),M(ce,ce.current),!0}function vi(e,n,t){var r=e.stateNode;if(!r)throw Error(y(169));t?(e=bs(e,n,xn),r.__reactInternalMemoizedMergedChildContext=e,I(ce),I(re),M(re,e)):I(ce),M(ce,t)}var $e=null,ul=!1,Fl=!1;function ea(e){$e===null?$e=[e]:$e.push(e)}function ed(e){ul=!0,ea(e)}function mn(){if(!Fl&&$e!==null){Fl=!0;var e=0,n=O;try{var t=$e;for(O=1;e>=u,l-=u,Ae=1<<32-Te(n)+l|t<N?(B=x,x=null):B=x.sibling;var T=p(f,x,d[N],h);if(T===null){x===null&&(x=B);break}e&&x&&T.alternate===null&&n(f,x),a=o(T,a,N),_===null?E=T:_.sibling=T,_=T,x=B}if(N===d.length)return t(f,x),j&&yn(f,N),E;if(x===null){for(;NN?(B=x,x=null):B=x.sibling;var xe=p(f,x,T.value,h);if(xe===null){x===null&&(x=B);break}e&&x&&xe.alternate===null&&n(f,x),a=o(xe,a,N),_===null?E=xe:_.sibling=xe,_=xe,x=B}if(T.done)return t(f,x),j&&yn(f,N),E;if(x===null){for(;!T.done;N++,T=d.next())T=m(f,T.value,h),T!==null&&(a=o(T,a,N),_===null?E=T:_.sibling=T,_=T);return j&&yn(f,N),E}for(x=r(f,x);!T.done;N++,T=d.next())T=g(x,f,N,T.value,h),T!==null&&(e&&T.alternate!==null&&x.delete(T.key===null?N:T.key),a=o(T,a,N),_===null?E=T:_.sibling=T,_=T);return e&&x.forEach(function(it){return n(f,it)}),j&&yn(f,N),E}function F(f,a,d,h){if(typeof d=="object"&&d!==null&&d.type===Dn&&d.key===null&&(d=d.props.children),typeof d=="object"&&d!==null){switch(d.$$typeof){case tr:e:{for(var E=d.key,_=a;_!==null;){if(_.key===E){if(E=d.type,E===Dn){if(_.tag===7){t(f,_.sibling),a=l(_,d.props.children),a.return=f,f=a;break e}}else if(_.elementType===E||typeof E=="object"&&E!==null&&E.$$typeof===Ge&&gi(E)===_.type){t(f,_.sibling),a=l(_,d.props),a.ref=mt(f,_,d),a.return=f,f=a;break e}t(f,_);break}else n(f,_);_=_.sibling}d.type===Dn?(a=_n(d.props.children,f.mode,h,d.key),a.return=f,f=a):(h=Lr(d.type,d.key,d.props,null,f.mode,h),h.ref=mt(f,a,d),h.return=f,f=h)}return u(f);case Mn:e:{for(_=d.key;a!==null;){if(a.key===_)if(a.tag===4&&a.stateNode.containerInfo===d.containerInfo&&a.stateNode.implementation===d.implementation){t(f,a.sibling),a=l(a,d.children||[]),a.return=f,f=a;break e}else{t(f,a);break}else n(f,a);a=a.sibling}a=Wl(d,f.mode,h),a.return=f,f=a}return u(f);case Ge:return _=d._init,F(f,a,_(d._payload),h)}if(gt(d))return w(f,a,d,h);if(at(d))return S(f,a,d,h);pr(f,d)}return typeof d=="string"&&d!==""||typeof d=="number"?(d=""+d,a!==null&&a.tag===6?(t(f,a.sibling),a=l(a,d),a.return=f,f=a):(t(f,a),a=Hl(d,f.mode,h),a.return=f,f=a),u(f)):t(f,a)}return F}var et=la(!0),oa=la(!1),Hr=pn(null),Wr=null,Bn=null,su=null;function au(){su=Bn=Wr=null}function cu(e){var n=Hr.current;I(Hr),e._currentValue=n}function Eo(e,n,t){for(;e!==null;){var r=e.alternate;if((e.childLanes&n)!==n?(e.childLanes|=n,r!==null&&(r.childLanes|=n)):r!==null&&(r.childLanes&n)!==n&&(r.childLanes|=n),e===t)break;e=e.return}}function Gn(e,n){Wr=e,su=Bn=null,e=e.dependencies,e!==null&&e.firstContext!==null&&(e.lanes&n&&(ae=!0),e.firstContext=null)}function Ce(e){var n=e._currentValue;if(su!==e)if(e={context:e,memoizedValue:n,next:null},Bn===null){if(Wr===null)throw Error(y(308));Bn=e,Wr.dependencies={lanes:0,firstContext:e}}else Bn=Bn.next=e;return n}var kn=null;function fu(e){kn===null?kn=[e]:kn.push(e)}function ua(e,n,t,r){var l=n.interleaved;return l===null?(t.next=t,fu(n)):(t.next=l.next,l.next=t),n.interleaved=t,Qe(e,r)}function Qe(e,n){e.lanes|=n;var t=e.alternate;for(t!==null&&(t.lanes|=n),t=e,e=e.return;e!==null;)e.childLanes|=n,t=e.alternate,t!==null&&(t.childLanes|=n),t=e,e=e.return;return t.tag===3?t.stateNode:null}var Ze=!1;function du(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function ia(e,n){e=e.updateQueue,n.updateQueue===e&&(n.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function Be(e,n){return{eventTime:e,lane:n,tag:0,payload:null,callback:null,next:null}}function on(e,n,t){var r=e.updateQueue;if(r===null)return null;if(r=r.shared,R&2){var l=r.pending;return l===null?n.next=n:(n.next=l.next,l.next=n),r.pending=n,Qe(e,t)}return l=r.interleaved,l===null?(n.next=n,fu(r)):(n.next=l.next,l.next=n),r.interleaved=n,Qe(e,t)}function Cr(e,n,t){if(n=n.updateQueue,n!==null&&(n=n.shared,(t&4194240)!==0)){var r=n.lanes;r&=e.pendingLanes,t|=r,n.lanes=t,Jo(e,t)}}function wi(e,n){var t=e.updateQueue,r=e.alternate;if(r!==null&&(r=r.updateQueue,t===r)){var l=null,o=null;if(t=t.firstBaseUpdate,t!==null){do{var u={eventTime:t.eventTime,lane:t.lane,tag:t.tag,payload:t.payload,callback:t.callback,next:null};o===null?l=o=u:o=o.next=u,t=t.next}while(t!==null);o===null?l=o=n:o=o.next=n}else l=o=n;t={baseState:r.baseState,firstBaseUpdate:l,lastBaseUpdate:o,shared:r.shared,effects:r.effects},e.updateQueue=t;return}e=t.lastBaseUpdate,e===null?t.firstBaseUpdate=n:e.next=n,t.lastBaseUpdate=n}function Qr(e,n,t,r){var l=e.updateQueue;Ze=!1;var o=l.firstBaseUpdate,u=l.lastBaseUpdate,i=l.shared.pending;if(i!==null){l.shared.pending=null;var s=i,c=s.next;s.next=null,u===null?o=c:u.next=c,u=s;var v=e.alternate;v!==null&&(v=v.updateQueue,i=v.lastBaseUpdate,i!==u&&(i===null?v.firstBaseUpdate=c:i.next=c,v.lastBaseUpdate=s))}if(o!==null){var m=l.baseState;u=0,v=c=s=null,i=o;do{var p=i.lane,g=i.eventTime;if((r&p)===p){v!==null&&(v=v.next={eventTime:g,lane:0,tag:i.tag,payload:i.payload,callback:i.callback,next:null});e:{var w=e,S=i;switch(p=n,g=t,S.tag){case 1:if(w=S.payload,typeof w=="function"){m=w.call(g,m,p);break e}m=w;break e;case 3:w.flags=w.flags&-65537|128;case 0:if(w=S.payload,p=typeof w=="function"?w.call(g,m,p):w,p==null)break e;m=A({},m,p);break e;case 2:Ze=!0}}i.callback!==null&&i.lane!==0&&(e.flags|=64,p=l.effects,p===null?l.effects=[i]:p.push(i))}else g={eventTime:g,lane:p,tag:i.tag,payload:i.payload,callback:i.callback,next:null},v===null?(c=v=g,s=m):v=v.next=g,u|=p;if(i=i.next,i===null){if(i=l.shared.pending,i===null)break;p=i,i=p.next,p.next=null,l.lastBaseUpdate=p,l.shared.pending=null}}while(!0);if(v===null&&(s=m),l.baseState=s,l.firstBaseUpdate=c,l.lastBaseUpdate=v,n=l.shared.interleaved,n!==null){l=n;do u|=l.lane,l=l.next;while(l!==n)}else o===null&&(l.shared.lanes=0);zn|=u,e.lanes=u,e.memoizedState=m}}function Si(e,n,t){if(e=n.effects,n.effects=null,e!==null)for(n=0;nt?t:4,e(!0);var r=Ul.transition;Ul.transition={};try{e(!1),n()}finally{O=t,Ul.transition=r}}function _a(){return _e().memoizedState}function ld(e,n,t){var r=sn(e);if(t={lane:r,action:t,hasEagerState:!1,eagerState:null,next:null},xa(e))Na(n,t);else if(t=ua(e,n,t,r),t!==null){var l=oe();Re(t,e,r,l),Pa(t,n,r)}}function od(e,n,t){var r=sn(e),l={lane:r,action:t,hasEagerState:!1,eagerState:null,next:null};if(xa(e))Na(n,l);else{var o=e.alternate;if(e.lanes===0&&(o===null||o.lanes===0)&&(o=n.lastRenderedReducer,o!==null))try{var u=n.lastRenderedState,i=o(u,t);if(l.hasEagerState=!0,l.eagerState=i,Oe(i,u)){var s=n.interleaved;s===null?(l.next=l,fu(n)):(l.next=s.next,s.next=l),n.interleaved=l;return}}catch{}finally{}t=ua(e,n,l,r),t!==null&&(l=oe(),Re(t,e,r,l),Pa(t,n,r))}}function xa(e){var n=e.alternate;return e===$||n!==null&&n===$}function Na(e,n){Nt=Yr=!0;var t=e.pending;t===null?n.next=n:(n.next=t.next,t.next=n),e.pending=n}function Pa(e,n,t){if(t&4194240){var r=n.lanes;r&=e.pendingLanes,t|=r,n.lanes=t,Jo(e,t)}}var Xr={readContext:Ce,useCallback:ee,useContext:ee,useEffect:ee,useImperativeHandle:ee,useInsertionEffect:ee,useLayoutEffect:ee,useMemo:ee,useReducer:ee,useRef:ee,useState:ee,useDebugValue:ee,useDeferredValue:ee,useTransition:ee,useMutableSource:ee,useSyncExternalStore:ee,useId:ee,unstable_isNewReconciler:!1},ud={readContext:Ce,useCallback:function(e,n){return De().memoizedState=[e,n===void 0?null:n],e},useContext:Ce,useEffect:Ei,useImperativeHandle:function(e,n,t){return t=t!=null?t.concat([e]):null,xr(4194308,4,wa.bind(null,n,e),t)},useLayoutEffect:function(e,n){return xr(4194308,4,e,n)},useInsertionEffect:function(e,n){return xr(4,2,e,n)},useMemo:function(e,n){var t=De();return n=n===void 0?null:n,e=e(),t.memoizedState=[e,n],e},useReducer:function(e,n,t){var r=De();return n=t!==void 0?t(n):n,r.memoizedState=r.baseState=n,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:n},r.queue=e,e=e.dispatch=ld.bind(null,$,e),[r.memoizedState,e]},useRef:function(e){var n=De();return e={current:e},n.memoizedState=e},useState:ki,useDebugValue:Su,useDeferredValue:function(e){return De().memoizedState=e},useTransition:function(){var e=ki(!1),n=e[0];return e=rd.bind(null,e[1]),De().memoizedState=e,[n,e]},useMutableSource:function(){},useSyncExternalStore:function(e,n,t){var r=$,l=De();if(j){if(t===void 0)throw Error(y(407));t=t()}else{if(t=n(),Z===null)throw Error(y(349));Pn&30||fa(r,n,t)}l.memoizedState=t;var o={value:t,getSnapshot:n};return l.queue=o,Ei(pa.bind(null,r,o,e),[e]),r.flags|=2048,Kt(9,da.bind(null,r,o,t,n),void 0,null),t},useId:function(){var e=De(),n=Z.identifierPrefix;if(j){var t=Ve,r=Ae;t=(r&~(1<<32-Te(r)-1)).toString(32)+t,n=":"+n+"R"+t,t=Wt++,0<\/script>",e=e.removeChild(e.firstChild)):typeof r.is=="string"?e=u.createElement(t,{is:r.is}):(e=u.createElement(t),t==="select"&&(u=e,r.multiple?u.multiple=!0:r.size&&(u.size=r.size))):e=u.createElementNS(e,t),e[Ie]=n,e[Vt]=r,ja(e,n,!1,!1),n.stateNode=e;e:{switch(u=ro(t,r),t){case"dialog":D("cancel",e),D("close",e),l=r;break;case"iframe":case"object":case"embed":D("load",e),l=r;break;case"video":case"audio":for(l=0;lrt&&(n.flags|=128,r=!0,vt(o,!1),n.lanes=4194304)}else{if(!r)if(e=Kr(u),e!==null){if(n.flags|=128,r=!0,t=e.updateQueue,t!==null&&(n.updateQueue=t,n.flags|=4),vt(o,!0),o.tail===null&&o.tailMode==="hidden"&&!u.alternate&&!j)return ne(n),null}else 2*W()-o.renderingStartTime>rt&&t!==1073741824&&(n.flags|=128,r=!0,vt(o,!1),n.lanes=4194304);o.isBackwards?(u.sibling=n.child,n.child=u):(t=o.last,t!==null?t.sibling=u:n.child=u,o.last=u)}return o.tail!==null?(n=o.tail,o.rendering=n,o.tail=n.sibling,o.renderingStartTime=W(),n.sibling=null,t=U.current,M(U,r?t&1|2:t&1),n):(ne(n),null);case 22:case 23:return Nu(),r=n.memoizedState!==null,e!==null&&e.memoizedState!==null!==r&&(n.flags|=8192),r&&n.mode&1?pe&1073741824&&(ne(n),n.subtreeFlags&6&&(n.flags|=8192)):ne(n),null;case 24:return null;case 25:return null}throw Error(y(156,n.tag))}function md(e,n){switch(uu(n),n.tag){case 1:return fe(n.type)&&$r(),e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 3:return nt(),I(ce),I(re),vu(),e=n.flags,e&65536&&!(e&128)?(n.flags=e&-65537|128,n):null;case 5:return mu(n),null;case 13:if(I(U),e=n.memoizedState,e!==null&&e.dehydrated!==null){if(n.alternate===null)throw Error(y(340));bn()}return e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 19:return I(U),null;case 4:return nt(),null;case 10:return cu(n.type._context),null;case 22:case 23:return Nu(),null;case 24:return null;default:return null}}var vr=!1,te=!1,vd=typeof WeakSet=="function"?WeakSet:Set,k=null;function Hn(e,n){var t=e.ref;if(t!==null)if(typeof t=="function")try{t(null)}catch(r){V(e,n,r)}else t.current=null}function Ro(e,n,t){try{t()}catch(r){V(e,n,r)}}var Mi=!1;function hd(e,n){if(mo=Ir,e=Ws(),lu(e)){if("selectionStart"in e)var t={start:e.selectionStart,end:e.selectionEnd};else e:{t=(t=e.ownerDocument)&&t.defaultView||window;var r=t.getSelection&&t.getSelection();if(r&&r.rangeCount!==0){t=r.anchorNode;var l=r.anchorOffset,o=r.focusNode;r=r.focusOffset;try{t.nodeType,o.nodeType}catch{t=null;break e}var u=0,i=-1,s=-1,c=0,v=0,m=e,p=null;n:for(;;){for(var g;m!==t||l!==0&&m.nodeType!==3||(i=u+l),m!==o||r!==0&&m.nodeType!==3||(s=u+r),m.nodeType===3&&(u+=m.nodeValue.length),(g=m.firstChild)!==null;)p=m,m=g;for(;;){if(m===e)break n;if(p===t&&++c===l&&(i=u),p===o&&++v===r&&(s=u),(g=m.nextSibling)!==null)break;m=p,p=m.parentNode}m=g}t=i===-1||s===-1?null:{start:i,end:s}}else t=null}t=t||{start:0,end:0}}else t=null;for(vo={focusedElem:e,selectionRange:t},Ir=!1,k=n;k!==null;)if(n=k,e=n.child,(n.subtreeFlags&1028)!==0&&e!==null)e.return=n,k=e;else for(;k!==null;){n=k;try{var w=n.alternate;if(n.flags&1024)switch(n.tag){case 0:case 11:case 15:break;case 1:if(w!==null){var S=w.memoizedProps,F=w.memoizedState,f=n.stateNode,a=f.getSnapshotBeforeUpdate(n.elementType===n.type?S:Pe(n.type,S),F);f.__reactInternalSnapshotBeforeUpdate=a}break;case 3:var d=n.stateNode.containerInfo;d.nodeType===1?d.textContent="":d.nodeType===9&&d.documentElement&&d.removeChild(d.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(y(163))}}catch(h){V(n,n.return,h)}if(e=n.sibling,e!==null){e.return=n.return,k=e;break}k=n.return}return w=Mi,Mi=!1,w}function Pt(e,n,t){var r=n.updateQueue;if(r=r!==null?r.lastEffect:null,r!==null){var l=r=r.next;do{if((l.tag&e)===e){var o=l.destroy;l.destroy=void 0,o!==void 0&&Ro(n,t,o)}l=l.next}while(l!==r)}}function al(e,n){if(n=n.updateQueue,n=n!==null?n.lastEffect:null,n!==null){var t=n=n.next;do{if((t.tag&e)===e){var r=t.create;t.destroy=r()}t=t.next}while(t!==n)}}function Oo(e){var n=e.ref;if(n!==null){var t=e.stateNode;switch(e.tag){case 5:e=t;break;default:e=t}typeof n=="function"?n(e):n.current=e}}function Aa(e){var n=e.alternate;n!==null&&(e.alternate=null,Aa(n)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(n=e.stateNode,n!==null&&(delete n[Ie],delete n[Vt],delete n[go],delete n[qf],delete n[bf])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function Va(e){return e.tag===5||e.tag===3||e.tag===4}function Di(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||Va(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Mo(e,n,t){var r=e.tag;if(r===5||r===6)e=e.stateNode,n?t.nodeType===8?t.parentNode.insertBefore(e,n):t.insertBefore(e,n):(t.nodeType===8?(n=t.parentNode,n.insertBefore(e,t)):(n=t,n.appendChild(e)),t=t._reactRootContainer,t!=null||n.onclick!==null||(n.onclick=Ur));else if(r!==4&&(e=e.child,e!==null))for(Mo(e,n,t),e=e.sibling;e!==null;)Mo(e,n,t),e=e.sibling}function Do(e,n,t){var r=e.tag;if(r===5||r===6)e=e.stateNode,n?t.insertBefore(e,n):t.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(Do(e,n,t),e=e.sibling;e!==null;)Do(e,n,t),e=e.sibling}var J=null,ze=!1;function Xe(e,n,t){for(t=t.child;t!==null;)Ba(e,n,t),t=t.sibling}function Ba(e,n,t){if(Fe&&typeof Fe.onCommitFiberUnmount=="function")try{Fe.onCommitFiberUnmount(nl,t)}catch{}switch(t.tag){case 5:te||Hn(t,n);case 6:var r=J,l=ze;J=null,Xe(e,n,t),J=r,ze=l,J!==null&&(ze?(e=J,t=t.stateNode,e.nodeType===8?e.parentNode.removeChild(t):e.removeChild(t)):J.removeChild(t.stateNode));break;case 18:J!==null&&(ze?(e=J,t=t.stateNode,e.nodeType===8?Il(e.parentNode,t):e.nodeType===1&&Il(e,t),Ft(e)):Il(J,t.stateNode));break;case 4:r=J,l=ze,J=t.stateNode.containerInfo,ze=!0,Xe(e,n,t),J=r,ze=l;break;case 0:case 11:case 14:case 15:if(!te&&(r=t.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){l=r=r.next;do{var o=l,u=o.destroy;o=o.tag,u!==void 0&&(o&2||o&4)&&Ro(t,n,u),l=l.next}while(l!==r)}Xe(e,n,t);break;case 1:if(!te&&(Hn(t,n),r=t.stateNode,typeof r.componentWillUnmount=="function"))try{r.props=t.memoizedProps,r.state=t.memoizedState,r.componentWillUnmount()}catch(i){V(t,n,i)}Xe(e,n,t);break;case 21:Xe(e,n,t);break;case 22:t.mode&1?(te=(r=te)||t.memoizedState!==null,Xe(e,n,t),te=r):Xe(e,n,t);break;default:Xe(e,n,t)}}function Ii(e){var n=e.updateQueue;if(n!==null){e.updateQueue=null;var t=e.stateNode;t===null&&(t=e.stateNode=new vd),n.forEach(function(r){var l=xd.bind(null,e,r);t.has(r)||(t.add(r),r.then(l,l))})}}function Ne(e,n){var t=n.deletions;if(t!==null)for(var r=0;rl&&(l=u),r&=~o}if(r=l,r=W()-r,r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*gd(r/1960))-r,10e?16:e,en===null)var r=!1;else{if(e=en,en=null,Jr=0,R&6)throw Error(y(331));var l=R;for(R|=4,k=e.current;k!==null;){var o=k,u=o.child;if(k.flags&16){var i=o.deletions;if(i!==null){for(var s=0;sW()-_u?Cn(e,0):Cu|=t),de(e,n)}function Za(e,n){n===0&&(e.mode&1?(n=ur,ur<<=1,!(ur&130023424)&&(ur=4194304)):n=1);var t=oe();e=Qe(e,n),e!==null&&(Gt(e,n,t),de(e,t))}function _d(e){var n=e.memoizedState,t=0;n!==null&&(t=n.retryLane),Za(e,t)}function xd(e,n){var t=0;switch(e.tag){case 13:var r=e.stateNode,l=e.memoizedState;l!==null&&(t=l.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(y(314))}r!==null&&r.delete(n),Za(e,t)}var Ja;Ja=function(e,n,t){if(e!==null)if(e.memoizedProps!==n.pendingProps||ce.current)ae=!0;else{if(!(e.lanes&t)&&!(n.flags&128))return ae=!1,dd(e,n,t);ae=!!(e.flags&131072)}else ae=!1,j&&n.flags&1048576&&na(n,Br,n.index);switch(n.lanes=0,n.tag){case 2:var r=n.type;Nr(e,n),e=n.pendingProps;var l=qn(n,re.current);Gn(n,t),l=yu(null,n,r,e,l,t);var o=gu();return n.flags|=1,typeof l=="object"&&l!==null&&typeof l.render=="function"&&l.$$typeof===void 0?(n.tag=1,n.memoizedState=null,n.updateQueue=null,fe(r)?(o=!0,Ar(n)):o=!1,n.memoizedState=l.state!==null&&l.state!==void 0?l.state:null,du(n),l.updater=sl,n.stateNode=l,l._reactInternals=n,_o(n,r,e,t),n=Po(null,n,r,!0,o,t)):(n.tag=0,j&&o&&ou(n),le(null,n,l,t),n=n.child),n;case 16:r=n.elementType;e:{switch(Nr(e,n),e=n.pendingProps,l=r._init,r=l(r._payload),n.type=r,l=n.tag=Pd(r),e=Pe(r,e),l){case 0:n=No(null,n,r,e,t);break e;case 1:n=Ti(null,n,r,e,t);break e;case 11:n=zi(null,n,r,e,t);break e;case 14:n=Li(null,n,r,Pe(r.type,e),t);break e}throw Error(y(306,r,""))}return n;case 0:return r=n.type,l=n.pendingProps,l=n.elementType===r?l:Pe(r,l),No(e,n,r,l,t);case 1:return r=n.type,l=n.pendingProps,l=n.elementType===r?l:Pe(r,l),Ti(e,n,r,l,t);case 3:e:{if(Da(n),e===null)throw Error(y(387));r=n.pendingProps,o=n.memoizedState,l=o.element,ia(e,n),Qr(n,r,null,t);var u=n.memoizedState;if(r=u.element,o.isDehydrated)if(o={element:r,isDehydrated:!1,cache:u.cache,pendingSuspenseBoundaries:u.pendingSuspenseBoundaries,transitions:u.transitions},n.updateQueue.baseState=o,n.memoizedState=o,n.flags&256){l=tt(Error(y(423)),n),n=Ri(e,n,r,t,l);break e}else if(r!==l){l=tt(Error(y(424)),n),n=Ri(e,n,r,t,l);break e}else for(me=ln(n.stateNode.containerInfo.firstChild),ve=n,j=!0,Le=null,t=oa(n,null,r,t),n.child=t;t;)t.flags=t.flags&-3|4096,t=t.sibling;else{if(bn(),r===l){n=Ke(e,n,t);break e}le(e,n,r,t)}n=n.child}return n;case 5:return sa(n),e===null&&ko(n),r=n.type,l=n.pendingProps,o=e!==null?e.memoizedProps:null,u=l.children,ho(r,l)?u=null:o!==null&&ho(r,o)&&(n.flags|=32),Ma(e,n),le(e,n,u,t),n.child;case 6:return e===null&&ko(n),null;case 13:return Ia(e,n,t);case 4:return pu(n,n.stateNode.containerInfo),r=n.pendingProps,e===null?n.child=et(n,null,r,t):le(e,n,r,t),n.child;case 11:return r=n.type,l=n.pendingProps,l=n.elementType===r?l:Pe(r,l),zi(e,n,r,l,t);case 7:return le(e,n,n.pendingProps,t),n.child;case 8:return le(e,n,n.pendingProps.children,t),n.child;case 12:return le(e,n,n.pendingProps.children,t),n.child;case 10:e:{if(r=n.type._context,l=n.pendingProps,o=n.memoizedProps,u=l.value,M(Hr,r._currentValue),r._currentValue=u,o!==null)if(Oe(o.value,u)){if(o.children===l.children&&!ce.current){n=Ke(e,n,t);break e}}else for(o=n.child,o!==null&&(o.return=n);o!==null;){var i=o.dependencies;if(i!==null){u=o.child;for(var s=i.firstContext;s!==null;){if(s.context===r){if(o.tag===1){s=Be(-1,t&-t),s.tag=2;var c=o.updateQueue;if(c!==null){c=c.shared;var v=c.pending;v===null?s.next=s:(s.next=v.next,v.next=s),c.pending=s}}o.lanes|=t,s=o.alternate,s!==null&&(s.lanes|=t),Eo(o.return,t,n),i.lanes|=t;break}s=s.next}}else if(o.tag===10)u=o.type===n.type?null:o.child;else if(o.tag===18){if(u=o.return,u===null)throw Error(y(341));u.lanes|=t,i=u.alternate,i!==null&&(i.lanes|=t),Eo(u,t,n),u=o.sibling}else u=o.child;if(u!==null)u.return=o;else for(u=o;u!==null;){if(u===n){u=null;break}if(o=u.sibling,o!==null){o.return=u.return,u=o;break}u=u.return}o=u}le(e,n,l.children,t),n=n.child}return n;case 9:return l=n.type,r=n.pendingProps.children,Gn(n,t),l=Ce(l),r=r(l),n.flags|=1,le(e,n,r,t),n.child;case 14:return r=n.type,l=Pe(r,n.pendingProps),l=Pe(r.type,l),Li(e,n,r,l,t);case 15:return Ra(e,n,n.type,n.pendingProps,t);case 17:return r=n.type,l=n.pendingProps,l=n.elementType===r?l:Pe(r,l),Nr(e,n),n.tag=1,fe(r)?(e=!0,Ar(n)):e=!1,Gn(n,t),za(n,r,l),_o(n,r,l,t),Po(null,n,r,!0,e,t);case 19:return Fa(e,n,t);case 22:return Oa(e,n,t)}throw Error(y(156,n.tag))};function qa(e,n){return xs(e,n)}function Nd(e,n,t,r){this.tag=e,this.key=t,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=n,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function ke(e,n,t,r){return new Nd(e,n,t,r)}function zu(e){return e=e.prototype,!(!e||!e.isReactComponent)}function Pd(e){if(typeof e=="function")return zu(e)?1:0;if(e!=null){if(e=e.$$typeof,e===Yo)return 11;if(e===Xo)return 14}return 2}function an(e,n){var t=e.alternate;return t===null?(t=ke(e.tag,n,e.key,e.mode),t.elementType=e.elementType,t.type=e.type,t.stateNode=e.stateNode,t.alternate=e,e.alternate=t):(t.pendingProps=n,t.type=e.type,t.flags=0,t.subtreeFlags=0,t.deletions=null),t.flags=e.flags&14680064,t.childLanes=e.childLanes,t.lanes=e.lanes,t.child=e.child,t.memoizedProps=e.memoizedProps,t.memoizedState=e.memoizedState,t.updateQueue=e.updateQueue,n=e.dependencies,t.dependencies=n===null?null:{lanes:n.lanes,firstContext:n.firstContext},t.sibling=e.sibling,t.index=e.index,t.ref=e.ref,t}function Lr(e,n,t,r,l,o){var u=2;if(r=e,typeof e=="function")zu(e)&&(u=1);else if(typeof e=="string")u=5;else e:switch(e){case Dn:return _n(t.children,l,o,n);case Ko:u=8,l|=8;break;case Yl:return e=ke(12,t,n,l|2),e.elementType=Yl,e.lanes=o,e;case Xl:return e=ke(13,t,n,l),e.elementType=Xl,e.lanes=o,e;case Gl:return e=ke(19,t,n,l),e.elementType=Gl,e.lanes=o,e;case ss:return fl(t,l,o,n);default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case us:u=10;break e;case is:u=9;break e;case Yo:u=11;break e;case Xo:u=14;break e;case Ge:u=16,r=null;break e}throw Error(y(130,e==null?e:typeof e,""))}return n=ke(u,t,n,l),n.elementType=e,n.type=r,n.lanes=o,n}function _n(e,n,t,r){return e=ke(7,e,r,n),e.lanes=t,e}function fl(e,n,t,r){return e=ke(22,e,r,n),e.elementType=ss,e.lanes=t,e.stateNode={isHidden:!1},e}function Hl(e,n,t){return e=ke(6,e,null,n),e.lanes=t,e}function Wl(e,n,t){return n=ke(4,e.children!==null?e.children:[],e.key,n),n.lanes=t,n.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},n}function zd(e,n,t,r,l){this.tag=n,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=_l(0),this.expirationTimes=_l(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=_l(0),this.identifierPrefix=r,this.onRecoverableError=l,this.mutableSourceEagerHydrationData=null}function Lu(e,n,t,r,l,o,u,i,s){return e=new zd(e,n,t,i,s),n===1?(n=1,o===!0&&(n|=8)):n=0,o=ke(3,null,null,n),e.current=o,o.stateNode=e,o.memoizedState={element:r,isDehydrated:t,cache:null,transitions:null,pendingSuspenseBoundaries:null},du(o),e}function Ld(e,n,t){var r=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(tc)}catch(e){console.error(e)}}tc(),ts.exports=ye;var Dd=ts.exports,Hi=Dd;Ql.createRoot=Hi.createRoot,Ql.hydrateRoot=Hi.hydrateRoot;class Id{constructor(){Du(this,"vsCodeApi");typeof acquireVsCodeApi=="function"&&(this.vsCodeApi=acquireVsCodeApi())}postMessage(n){this.vsCodeApi?this.vsCodeApi.postMessage(n):console.log(n)}getState(){if(this.vsCodeApi)return this.vsCodeApi.getState();{const n=localStorage.getItem("vscodeState");return n?JSON.parse(n):void 0}}setState(n){return this.vsCodeApi?this.vsCodeApi.setState(n):(localStorage.setItem("vscodeState",JSON.stringify(n)),n)}}const Wi=new Id;function Fd(e){return e.entries.length}function jd(){const[e,n]=Tt.useState(0);return Tt.useEffect(()=>{const t=r=>{const l=r.data;switch(l.command){case"sendData":{const o=l.data;n(Fd(o));break}case"updateEntryCount":{n(l.count),console.log("Entry count updated to:",l.count);break}}};return window.addEventListener("message",t),()=>{window.removeEventListener("message",t)}},[]),Wi.postMessage({command:"updateData"}),wn.jsxs("div",{className:"app-container",children:[wn.jsx("h1",{className:"title",children:"Dictionary Summary"}),wn.jsxs("div",{className:"card",children:[wn.jsxs("p",{className:"entry-count",children:["Entries in dictionary: ",e]}),wn.jsx("button",{className:"show-table-btn",onClick:()=>{Wi.postMessage({command:"showDictionaryTable"})},children:"Show Dictionary Table"})]})]})}Ql.createRoot(document.getElementById("root")).render(wn.jsx(Ec.StrictMode,{children:wn.jsx(jd,{})})); diff --git a/webviews/dictionary-side-panel/dist/index.html b/webviews/dictionary-side-panel/dist/index.html deleted file mode 100644 index 46d0d8fd3..000000000 --- a/webviews/dictionary-side-panel/dist/index.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - Vite + React + TS - - - - -
- - diff --git a/webviews/dictionary-side-panel/dist/vite.svg b/webviews/dictionary-side-panel/dist/vite.svg deleted file mode 100644 index e7b8dfb1b..000000000 --- a/webviews/dictionary-side-panel/dist/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/webviews/editable-react-table/dist/assets/index.css b/webviews/editable-react-table/dist/assets/index.css deleted file mode 100644 index 851197f53..000000000 --- a/webviews/editable-react-table/dist/assets/index.css +++ /dev/null @@ -1 +0,0 @@ -html,body,#root{height:100%;margin:0;padding:0;overflow:hidden}*,*:before,*:after{box-sizing:inherit}*{margin:0;padding:0;font-family:var(--vscode-font-family, "Inter", sans-serif);color:var(--vscode-editor-foreground);background-color:var(--vscode-editor-background)}.transition-fade-enter{opacity:0}.transition-fade-enter-active{opacity:1;transition:opacity .3s}.transition-fade-exit{opacity:1}.transition-fade-exit-active{opacity:0;transition:opacity .3s}.svg-icon svg{position:relative;height:1.5em;width:1.5em;background-color:var(--vscode-button-background);fill:var(--vscode-button-foreground);display:flex;align-items:center}.svg-text svg{stroke:#424242}.svg-180 svg{transform:rotate(180deg)}.form-input{padding:.375rem;background-color:var(--vscode-input-background);border:1px solid var(--vscode-input-border);border-radius:var(--vscode-input-borderRadius);font-size:.875rem;color:var(--vscode-input-foreground)}.form-input:focus{outline:none;box-shadow:0 0 1px 2px var(--vscode-focusBorder)}.is-fullwidth{width:100%}.bg-white{background-color:var(--vscode-editor-background)}.data-input{white-space:pre-wrap;border:none;padding:.5rem;color:var(--vscode-input-foreground);font-size:1rem;border-radius:var(--vscode-input-borderRadius);resize:none;background-color:var(--vscode-input-background);box-sizing:border-box;flex:1 1 auto}.data-input:focus{outline:none}.shadow-5{box-shadow:var(--vscode-shadow)}.svg-icon-sm svg{position:relative;height:1rem;width:1rem;top:.125rem}.svg-gray svg{stroke:#fff}.option-input{width:100%;font-size:1rem;border:none;background-color:transparent}.option-input:focus{outline:none}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.overlay{position:fixed;top:0;left:0;height:100vh;width:100vw;z-index:2;overflow:hidden;background-color:#00000080}.sort-button{padding:.25rem .75rem;width:100%;background-color:transparent;border:0;font-size:.875rem;color:var(--vscode-button-foreground);cursor:pointer;text-align:left;display:flex;align-items:center}.sort-button:hover{background-color:var(--vscode-button-hoverBackground)}.search-bar{margin-bottom:20px;padding:8px;font-size:16px;border:1px solid var(--vscode-input-border);border-radius:4px;background-color:var(--vscode-input-background);color:var(--vscode-input-foreground);width:100%;box-sizing:border-box}.remove-button{background:none;border:none;cursor:pointer;padding:5px;display:flex;justify-content:center;align-items:center;z-index:10}.remove-button svg{height:36px;width:36px;margin-right:20px;fill:var( --vscode-button-foreground )}.remove-button:disabled{cursor:not-allowed;opacity:.5}.remove-button:hover:not(:disabled){background-color:var( --vscode-button-hoverBackground )}.app-container{display:flex;flex-direction:column;height:100%;overflow-y:auto;margin-bottom:70px;flex:1;width:100%}.table{display:flex;flex-flow:column;margin-top:60px}.table-header{display:flex;flex-flow:column;position:absolute;z-index:1001}.table-container{margin-bottom:40px;flex:1;width:100%}.checkbox-container{display:flex;align-items:center;justify-content:center;height:100%}.checkbox-large{transform:scale(2.5);margin:5px}.add-row{background-color:var(--vscode-button-background);color:var(--vscode-button-foreground);padding:.5rem;display:flex;align-items:center;justify-content:center;font-size:.875rem;cursor:pointer;height:30px;border:1px solid var(--vscode-button-border);border-radius:4px;transition:background-color .3s ease;position:fixed;bottom:0;left:0;right:0;z-index:10}.add-row:hover{background-color:var(--vscode-button-hoverBackground)}.resizer{display:inline-block;background:transparent;width:8px;height:100%;position:absolute;right:0;top:0;transform:translate(50%);z-index:1;cursor:col-resize;touch-action:none}.resizer:hover{background-color:var(--vscode-editor-selectionBackground)}h1{font-size:2rem;color:var(--vscode-editor-foreground)}.tr{display:flex;align-items:center;margin:0}.td,.th{padding:1px;margin:0;border-right:1px solid var(--vscode-editor-lineHighlightBackground);border-bottom:1px solid var(--vscode-editor-lineHighlightBackground);white-space:nowrap;position:relative;color:var(--vscode-editor-foreground);background-color:var(--vscode-editorWidget-background);font-weight:500;font-size:1rem;cursor:pointer}.td:last-child,.th:last-child{border-right:none}.tr:last-child .td{border-bottom:none}.td-content,.th-content{display:block;padding:1px;overflow-x:hidden;text-overflow:ellipsis;display:flex;align-items:center;height:50px}.th:hover{background-color:var(--vscode-list-hoverBackground)}.text-align-right{text-align:right}.cell-padding{padding:.5rem}.d-flex{display:flex}.d-inline-block{display:inline-block}.cursor-default{cursor:default}.align-items-center{align-items:center}.flex-wrap-wrap{flex-wrap:wrap}.border-radius-md{border-radius:5px}.cursor-pointer{cursor:pointer}.icon-margin{margin-right:4px}.font-weight-600{font-weight:600}.font-weight-400{font-weight:400}.font-size-75{font-size:.75rem}.flex-1{flex:1}.mt-5{margin-top:.5rem}.mr-auto{margin-right:auto}.ml-auto{margin-left:auto}.mr-5{margin-right:.5rem}.justify-content-center{justify-content:center}.flex-column{flex-direction:column}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-y-hidden{overflow-y:hidden}.list-padding{padding:4px 0;border:1px solid var(--vscode-editor-lineHighlightBackground)}.bg-grey-200{background-color:var(--vscode-editor-background)}.color-grey-800{color:var(--vscode-editor-foreground)}.color-grey-600{color:var(--vscode-editorWidget-foreground)}.color-grey-500{color:var(--vscode-editor-inactiveSelectionBackground)}.border-radius-sm{border-radius:4px}.text-transform-uppercase{text-transform:uppercase}.text-transform-capitalize{text-transform:capitalize} diff --git a/webviews/editable-react-table/dist/assets/index.js b/webviews/editable-react-table/dist/assets/index.js deleted file mode 100644 index 584efdff4..000000000 --- a/webviews/editable-react-table/dist/assets/index.js +++ /dev/null @@ -1,41 +0,0 @@ -(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const o of document.querySelectorAll('link[rel="modulepreload"]'))r(o);new MutationObserver(o=>{for(const l of o)if(l.type==="childList")for(const u of l.addedNodes)u.tagName==="LINK"&&u.rel==="modulepreload"&&r(u)}).observe(document,{childList:!0,subtree:!0});function n(o){const l={};return o.integrity&&(l.integrity=o.integrity),o.referrerPolicy&&(l.referrerPolicy=o.referrerPolicy),o.crossOrigin==="use-credentials"?l.credentials="include":o.crossOrigin==="anonymous"?l.credentials="omit":l.credentials="same-origin",l}function r(o){if(o.ep)return;o.ep=!0;const l=n(o);fetch(o.href,l)}})();var je=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Co(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var df={exports:{}},xo={};/* -object-assign -(c) Sindre Sorhus -@license MIT -*/var Os=Object.getOwnPropertySymbols,Hv=Object.prototype.hasOwnProperty,$v=Object.prototype.propertyIsEnumerable;function Uv(e){if(e==null)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}function bv(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de",Object.getOwnPropertyNames(e)[0]==="5")return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;var r=Object.getOwnPropertyNames(t).map(function(l){return t[l]});if(r.join("")!=="0123456789")return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach(function(l){o[l]=l}),Object.keys(Object.assign({},o)).join("")==="abcdefghijklmnopqrst"}catch{return!1}}var pf=bv()?Object.assign:function(e,t){for(var n,r=Uv(e),o,l=1;l"u"||typeof MessageChannel!="function"){var d=null,c=null,R=function(){if(d!==null)try{var b=e.unstable_now();d(!0,b),d=null}catch(ee){throw setTimeout(R,0),ee}};t=function(b){d!==null?setTimeout(t,0,b):(d=b,setTimeout(R,0))},n=function(b,ee){c=setTimeout(b,ee)},r=function(){clearTimeout(c)},e.unstable_shouldYield=function(){return!1},o=e.unstable_forceFrameRate=function(){}}else{var P=window.setTimeout,S=window.clearTimeout;if(typeof console<"u"){var k=window.cancelAnimationFrame;typeof window.requestAnimationFrame!="function"&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),typeof k!="function"&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills")}var I=!1,O=null,h=-1,m=5,y=0;e.unstable_shouldYield=function(){return e.unstable_now()>=y},o=function(){},e.unstable_forceFrameRate=function(b){0>b||125>>1,Se=b[we];if(Se!==void 0&&0C(lt,fe))ht!==void 0&&0>C(ht,lt)?(b[we]=ht,b[et]=fe,we=et):(b[we]=lt,b[Je]=fe,we=Je);else if(ht!==void 0&&0>C(ht,fe))b[we]=ht,b[et]=fe,we=et;else break e}}return ee}return null}function C(b,ee){var fe=b.sortIndex-ee.sortIndex;return fe!==0?fe:b.id-ee.id}var B=[],X=[],J=1,ce=null,re=3,Re=!1,Ne=!1,Pe=!1;function He(b){for(var ee=T(X);ee!==null;){if(ee.callback===null)E(X);else if(ee.startTime<=b)E(X),ee.sortIndex=ee.expirationTime,D(B,ee);else break;ee=T(X)}}function it(b){if(Pe=!1,He(b),!Ne)if(T(B)!==null)Ne=!0,t(Ze);else{var ee=T(X);ee!==null&&n(it,ee.startTime-b)}}function Ze(b,ee){Ne=!1,Pe&&(Pe=!1,r()),Re=!0;var fe=re;try{for(He(ee),ce=T(B);ce!==null&&(!(ce.expirationTime>ee)||b&&!e.unstable_shouldYield());){var we=ce.callback;if(typeof we=="function"){ce.callback=null,re=ce.priorityLevel;var Se=we(ce.expirationTime<=ee);ee=e.unstable_now(),typeof Se=="function"?ce.callback=Se:ce===T(B)&&E(B),He(ee)}else E(B);ce=T(B)}if(ce!==null)var Je=!0;else{var lt=T(X);lt!==null&&n(it,lt.startTime-ee),Je=!1}return Je}finally{ce=null,re=fe,Re=!1}}var Ot=o;e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(b){b.callback=null},e.unstable_continueExecution=function(){Ne||Re||(Ne=!0,t(Ze))},e.unstable_getCurrentPriorityLevel=function(){return re},e.unstable_getFirstCallbackNode=function(){return T(B)},e.unstable_next=function(b){switch(re){case 1:case 2:case 3:var ee=3;break;default:ee=re}var fe=re;re=ee;try{return b()}finally{re=fe}},e.unstable_pauseExecution=function(){},e.unstable_requestPaint=Ot,e.unstable_runWithPriority=function(b,ee){switch(b){case 1:case 2:case 3:case 4:case 5:break;default:b=3}var fe=re;re=b;try{return ee()}finally{re=fe}},e.unstable_scheduleCallback=function(b,ee,fe){var we=e.unstable_now();switch(typeof fe=="object"&&fe!==null?(fe=fe.delay,fe=typeof fe=="number"&&0we?(b.sortIndex=fe,D(X,b),T(B)===null&&b===T(X)&&(Pe?r():Pe=!0,n(it,fe-we))):(b.sortIndex=Se,D(B,b),Ne||Re||(Ne=!0,t(Ze))),b},e.unstable_wrapCallback=function(b){var ee=re;return function(){var fe=re;re=ee;try{return b.apply(this,arguments)}finally{re=fe}}}})(Bf);Mf.exports=Bf;var em=Mf.exports;/** @license React v17.0.2 - * react-dom.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var $i=ae,Te=pf,be=em;function H(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),tm=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,Ls=Object.prototype.hasOwnProperty,Ms={},Bs={};function nm(e){return Ls.call(Bs,e)?!0:Ls.call(Ms,e)?!1:tm.test(e)?Bs[e]=!0:(Ms[e]=!0,!1)}function rm(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return r?!1:n!==null?!n.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function om(e,t,n,r){if(t===null||typeof t>"u"||rm(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return t===!1;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function ot(e,t,n,r,o,l,u){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=o,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=l,this.removeEmptyString=u}var Xe={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){Xe[e]=new ot(e,0,!1,e,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];Xe[t]=new ot(t,1,!1,e[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(e){Xe[e]=new ot(e,2,!1,e.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){Xe[e]=new ot(e,2,!1,e,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){Xe[e]=new ot(e,3,!1,e.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(e){Xe[e]=new ot(e,3,!0,e,null,!1,!1)});["capture","download"].forEach(function(e){Xe[e]=new ot(e,4,!1,e,null,!1,!1)});["cols","rows","size","span"].forEach(function(e){Xe[e]=new ot(e,6,!1,e,null,!1,!1)});["rowSpan","start"].forEach(function(e){Xe[e]=new ot(e,5,!1,e.toLowerCase(),null,!1,!1)});var Uu=/[\-:]([a-z])/g;function bu(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(Uu,bu);Xe[t]=new ot(t,1,!1,e,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(Uu,bu);Xe[t]=new ot(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(Uu,bu);Xe[t]=new ot(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(e){Xe[e]=new ot(e,1,!1,e.toLowerCase(),null,!1,!1)});Xe.xlinkHref=new ot("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(e){Xe[e]=new ot(e,1,!1,e.toLowerCase(),null,!0,!0)});function Gu(e,t,n,r){var o=Xe.hasOwnProperty(t)?Xe[t]:null,l=o!==null?o.type===0:r?!1:!(!(2a||o[u]!==l[a])return` -`+o[u].replace(" at new "," at ");while(1<=u&&0<=a);break}}}finally{Sl=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?Hr(e):""}function im(e){switch(e.tag){case 5:return Hr(e.type);case 16:return Hr("Lazy");case 13:return Hr("Suspense");case 19:return Hr("SuspenseList");case 0:case 2:case 15:return e=bo(e.type,!1),e;case 11:return e=bo(e.type.render,!1),e;case 22:return e=bo(e.type._render,!1),e;case 1:return e=bo(e.type,!0),e;default:return""}}function Xn(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case Jt:return"Fragment";case Cn:return"Portal";case Gr:return"Profiler";case Vu:return"StrictMode";case Vr:return"Suspense";case hi:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case Qu:return(e.displayName||"Context")+".Consumer";case Xu:return(e._context.displayName||"Context")+".Provider";case Ui:var t=e.render;return t=t.displayName||t.name||"",e.displayName||(t!==""?"ForwardRef("+t+")":"ForwardRef");case bi:return Xn(e.type);case Yu:return Xn(e._render);case Ku:t=e._payload,e=e._init;try{return Xn(e(t))}catch{}}return null}function dn(e){switch(typeof e){case"boolean":case"number":case"object":case"string":case"undefined":return e;default:return""}}function Ff(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function lm(e){var t=Ff(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&typeof n<"u"&&typeof n.get=="function"&&typeof n.set=="function"){var o=n.get,l=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return o.call(this)},set:function(u){r=""+u,l.call(this,u)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(u){r=""+u},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function Go(e){e._valueTracker||(e._valueTracker=lm(e))}function zf(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=Ff(e)?e.checked?"true":"false":e.value),e=r,e!==n?(t.setValue(e),!0):!1}function gi(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function Vl(e,t){var n=t.checked;return Te({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function Ds(e,t){var n=t.defaultValue==null?"":t.defaultValue,r=t.checked!=null?t.checked:t.defaultChecked;n=dn(t.value!=null?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type==="checkbox"||t.type==="radio"?t.checked!=null:t.value!=null}}function jf(e,t){t=t.checked,t!=null&&Gu(e,"checked",t,!1)}function Xl(e,t){jf(e,t);var n=dn(t.value),r=t.type;if(n!=null)r==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if(r==="submit"||r==="reset"){e.removeAttribute("value");return}t.hasOwnProperty("value")?Ql(e,t.type,n):t.hasOwnProperty("defaultValue")&&Ql(e,t.type,dn(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}functionvscode.workspace.fs(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!(r!=="submit"&&r!=="reset"||t.value!==void 0&&t.value!==null))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,n!==""&&(e.name=n)}function Ql(e,t,n){(t!=="number"||gi(e.ownerDocument)!==e)&&(n==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}function um(e){var t="";return $i.Children.forEach(e,function(n){n!=null&&(t+=n)}),t}function Kl(e,t){return e=Te({children:void 0},t),(t=um(t.children))&&(e.children=t),e}function Qn(e,t,n,r){if(e=e.options,t){t={};for(var o=0;o=n.length))throw Error(H(93));n=n[0]}t=n}t==null&&(t=""),n=t}e._wrapperState={initialValue:dn(n)}}function Wf(e,t){var n=dn(t.value),r=dn(t.defaultValue);n!=null&&(n=""+n,n!==e.value&&(e.value=n),t.defaultValue==null&&e.defaultValue!==n&&(e.defaultValue=n)),r!=null&&(e.defaultValue=""+r)}function js(e){var t=e.textContent;t===e._wrapperState.initialValue&&t!==""&&t!==null&&(e.value=t)}var ql={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"};function Hf(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function Zl(e,t){return e==null||e==="http://www.w3.org/1999/xhtml"?Hf(t):e==="http://www.w3.org/2000/svg"&&t==="foreignObject"?"http://www.w3.org/1999/xhtml":e}var Vo,$f=function(e){return typeof MSApp<"u"&&MSApp.execUnsafeLocalFunction?function(t,n,r,o){MSApp.execUnsafeLocalFunction(function(){return e(t,n,r,o)})}:e}(function(e,t){if(e.namespaceURI!==ql.svg||"innerHTML"in e)e.innerHTML=t;else{for(Vo=Vo||document.createElement("div"),Vo.innerHTML=""+t.valueOf().toString()+"",t=Vo.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function lo(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var Xr={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},am=["Webkit","ms","Moz","O"];Object.keys(Xr).forEach(function(e){am.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Xr[t]=Xr[e]})});function Uf(e,t,n){return t==null||typeof t=="boolean"||t===""?"":n||typeof t!="number"||t===0||Xr.hasOwnProperty(e)&&Xr[e]?(""+t).trim():t+"px"}function bf(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=n.indexOf("--")===0,o=Uf(n,t[n],r);n==="float"&&(n="cssFloat"),r?e.setProperty(n,o):e[n]=o}}var sm=Te({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function Jl(e,t){if(t){if(sm[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(H(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(H(60));if(!(typeof t.dangerouslySetInnerHTML=="object"&&"__html"in t.dangerouslySetInnerHTML))throw Error(H(61))}if(t.style!=null&&typeof t.style!="object")throw Error(H(62))}}function eu(e,t){if(e.indexOf("-")===-1)return typeof t.is=="string";switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}function Ju(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var tu=null,Kn=null,Yn=null;function Ws(e){if(e=_o(e)){if(typeof tu!="function")throw Error(H(280));var t=e.stateNode;t&&(t=Yi(t),tu(e.stateNode,e.type,t))}}function Gf(e){Kn?Yn?Yn.push(e):Yn=[e]:Kn=e}function Vf(){if(Kn){var e=Kn,t=Yn;if(Yn=Kn=null,Ws(e),t)for(e=0;er?0:1<n;n++)t.push(e);return t}function Vi(e,t,n){e.pendingLanes|=t;var r=t-1;e.suspendedLanes&=r,e.pingedLanes&=r,e=e.eventTimes,t=31-pn(t),e[t]=n}var pn=Math.clz32?Math.clz32:km,xm=Math.log,Rm=Math.LN2;function km(e){return e===0?32:31-(xm(e)/Rm|0)|0}var _m=be.unstable_UserBlockingPriority,Pm=be.unstable_runWithPriority,ii=!0;function Om(e,t,n,r){xn||ta();var o=la,l=xn;xn=!0;try{Xf(o,e,t,n,r)}finally{(xn=l)||na()}}function Tm(e,t,n,r){Pm(_m,la.bind(null,e,t,n,r))}function la(e,t,n,r){if(ii){var o;if((o=(t&4)===0)&&0=Kr),Ys=String.fromCharCode(32),qs=!1;function cd(e,t){switch(e){case"keyup":return Zm.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function fd(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var $n=!1;function eh(e,t){switch(e){case"compositionend":return fd(t);case"keypress":return t.which!==32?null:(qs=!0,Ys);case"textInput":return e=t.data,e===Ys&&qs?null:e;default:return null}}function th(e,t){if($n)return e==="compositionend"||!fa&&cd(e,t)?(e=ad(),li=aa=en=null,$n=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=tc(n)}}function md(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?md(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function rc(){for(var e=window,t=gi();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href=="string"}catch{n=!1}if(n)e=t.contentWindow;else break;t=gi(e.document)}return t}function lu(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}var fh=Qt&&"documentMode"in document&&11>=document.documentMode,Un=null,uu=null,qr=null,au=!1;function oc(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;au||Un==null||Un!==gi(r)||(r=Un,"selectionStart"in r&&lu(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),qr&&po(qr,r)||(qr=r,r=Ei(uu,"onSelect"),0Gn||(e.current=cu[Gn],cu[Gn]=null,Gn--)}function Me(e,t){Gn++,cu[Gn]=e.current,e.current=t}var vn={},qe=yn(vn),st=yn(!1),Tn=vn;function or(e,t){var n=e.type.contextTypes;if(!n)return vn;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var o={},l;for(l in n)o[l]=t[l];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function ct(e){return e=e.childContextTypes,e!=null}function Ri(){_e(st),_e(qe)}function pc(e,t,n){if(qe.current!==vn)throw Error(H(168));Me(qe,t),Me(st,n)}function xd(e,t,n){var r=e.stateNode;if(e=t.childContextTypes,typeof r.getChildContext!="function")return n;r=r.getChildContext();for(var o in r)if(!(o in e))throw Error(H(108,Xn(t)||"Unknown",o));return Te({},n,r)}function ai(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||vn,Tn=qe.current,Me(qe,e),Me(st,st.current),!0}function vc(e,t,n){var r=e.stateNode;if(!r)throw Error(H(169));n?(e=xd(e,t,Tn),r.__reactInternalMemoizedMergedChildContext=e,_e(st),_e(qe),Me(qe,e)):_e(st),Me(st,n)}var pa=null,Pn=null,vh=be.unstable_runWithPriority,va=be.unstable_scheduleCallback,fu=be.unstable_cancelCallback,mh=be.unstable_shouldYield,mc=be.unstable_requestPaint,du=be.unstable_now,hh=be.unstable_getCurrentPriorityLevel,qi=be.unstable_ImmediatePriority,Rd=be.unstable_UserBlockingPriority,kd=be.unstable_NormalPriority,_d=be.unstable_LowPriority,Pd=be.unstable_IdlePriority,Ml={},gh=mc!==void 0?mc:function(){},Ut=null,si=null,Bl=!1,hc=du(),Ke=1e4>hc?du:function(){return du()-hc};function ir(){switch(hh()){case qi:return 99;case Rd:return 98;case kd:return 97;case _d:return 96;case Pd:return 95;default:throw Error(H(332))}}function Od(e){switch(e){case 99:return qi;case 98:return Rd;case 97:return kd;case 96:return _d;case 95:return Pd;default:throw Error(H(332))}}function Nn(e,t){return e=Od(e),vh(e,t)}function mo(e,t,n){return e=Od(e),va(e,t,n)}function jt(){if(si!==null){var e=si;si=null,fu(e)}Td()}function Td(){if(!Bl&&Ut!==null){Bl=!0;var e=0;try{var t=Ut;Nn(99,function(){for(;eE?(C=T,T=null):C=T.sibling;var B=S(h,T,y[E],x);if(B===null){T===null&&(T=C);break}e&&T&&B.alternate===null&&t(h,T),m=l(B,m,E),D===null?_=B:D.sibling=B,D=B,T=C}if(E===y.length)return n(h,T),_;if(T===null){for(;EE?(C=T,T=null):C=T.sibling;var X=S(h,T,B.value,x);if(X===null){T===null&&(T=C);break}e&&T&&X.alternate===null&&t(h,T),m=l(X,m,E),D===null?_=X:D.sibling=X,D=X,T=C}if(B.done)return n(h,T),_;if(T===null){for(;!B.done;E++,B=y.next())B=P(h,B.value,x),B!==null&&(m=l(B,m,E),D===null?_=B:D.sibling=B,D=B);return _}for(T=r(h,T);!B.done;E++,B=y.next())B=k(T,h,E,B.value,x),B!==null&&(e&&B.alternate!==null&&T.delete(B.key===null?E:B.key),m=l(B,m,E),D===null?_=B:D.sibling=B,D=B);return e&&T.forEach(function(J){return t(h,J)}),_}return function(h,m,y,x){var _=typeof y=="object"&&y!==null&&y.type===Jt&&y.key===null;_&&(y=y.props.children);var D=typeof y=="object"&&y!==null;if(D)switch(y.$$typeof){case Wr:e:{for(D=y.key,_=m;_!==null;){if(_.key===D){switch(_.tag){case 7:if(y.type===Jt){n(h,_.sibling),m=o(_,y.props.children),m.return=h,h=m;break e}break;default:if(_.elementType===y.type){n(h,_.sibling),m=o(_,y.props),m.ref=Lr(h,_,y),m.return=h,h=m;break e}}n(h,_);break}else t(h,_);_=_.sibling}y.type===Jt?(m=nr(y.props.children,h.mode,x,y.key),m.return=h,h=m):(x=pi(y.type,y.key,y.props,null,h.mode,x),x.ref=Lr(h,m,y),x.return=h,h=x)}return u(h);case Cn:e:{for(_=y.key;m!==null;){if(m.key===_)if(m.tag===4&&m.stateNode.containerInfo===y.containerInfo&&m.stateNode.implementation===y.implementation){n(h,m.sibling),m=o(m,y.children||[]),m.return=h,h=m;break e}else{n(h,m);break}else t(h,m);m=m.sibling}m=Wl(y,h.mode,x),m.return=h,h=m}return u(h)}if(typeof y=="string"||typeof y=="number")return y=""+y,m!==null&&m.tag===6?(n(h,m.sibling),m=o(m,y),m.return=h,h=m):(n(h,m),m=jl(y,h.mode,x),m.return=h,h=m),u(h);if(Ko(y))return I(h,m,y,x);if(_r(y))return O(h,m,y,x);if(D&&Yo(h,y),typeof y>"u"&&!_)switch(h.tag){case 1:case 22:case 0:case 11:case 15:throw Error(H(152,Xn(h.type)||"Component"))}return n(h,m)}}var Ti=Bd(!0),Ad=Bd(!1),Po={},At=yn(Po),go=yn(Po),yo=yn(Po);function kn(e){if(e===Po)throw Error(H(174));return e}function vu(e,t){switch(Me(yo,t),Me(go,e),Me(At,Po),e=t.nodeType,e){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:Zl(null,"");break;default:e=e===8?t.parentNode:t,t=e.namespaceURI||null,e=e.tagName,t=Zl(t,e)}_e(At),Me(At,t)}function lr(){_e(At),_e(go),_e(yo)}function Ec(e){kn(yo.current);var t=kn(At.current),n=Zl(t,e.type);t!==n&&(Me(go,e),Me(At,n))}function ya(e){go.current===e&&(_e(At),_e(go))}var Le=yn(0);function Ni(e){for(var t=e;t!==null;){if(t.tag===13){var n=t.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||n.data==="$?"||n.data==="$!"))return t}else if(t.tag===19&&t.memoizedProps.revealOrder!==void 0){if(t.flags&64)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Gt=null,nn=null,Dt=!1;function Dd(e,t){var n=St(5,null,null,0);n.elementType="DELETED",n.type="DELETED",n.stateNode=t,n.return=e,n.flags=8,e.lastEffect!==null?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Cc(e,t){switch(e.tag){case 5:var n=e.type;return t=t.nodeType!==1||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t,t!==null?(e.stateNode=t,!0):!1;case 6:return t=e.pendingProps===""||t.nodeType!==3?null:t,t!==null?(e.stateNode=t,!0):!1;case 13:return!1;default:return!1}}function mu(e){if(Dt){var t=nn;if(t){var n=t;if(!Cc(e,t)){if(t=qn(n.nextSibling),!t||!Cc(e,t)){e.flags=e.flags&-1025|2,Dt=!1,Gt=e;return}Dd(Gt,n)}Gt=e,nn=qn(t.firstChild)}else e.flags=e.flags&-1025|2,Dt=!1,Gt=e}}function xc(e){for(e=e.return;e!==null&&e.tag!==5&&e.tag!==3&&e.tag!==13;)e=e.return;Gt=e}function qo(e){if(e!==Gt)return!1;if(!Dt)return xc(e),Dt=!0,!1;var t=e.type;if(e.tag!==5||t!=="head"&&t!=="body"&&!su(t,e.memoizedProps))for(t=nn;t;)Dd(e,t),t=qn(t.nextSibling);if(xc(e),e.tag===13){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(H(317));e:{for(e=e.nextSibling,t=0;e;){if(e.nodeType===8){var n=e.data;if(n==="/$"){if(t===0){nn=qn(e.nextSibling);break e}t--}else n!=="$"&&n!=="$!"&&n!=="$?"||t++}e=e.nextSibling}nn=null}}else nn=Gt?qn(e.stateNode.nextSibling):null;return!0}function Al(){nn=Gt=null,Dt=!1}var Jn=[];function wa(){for(var e=0;el))throw Error(H(301));l+=1,Ge=Qe=null,t.updateQueue=null,Zr.current=Ch,e=n(r,o)}while(Jr)}if(Zr.current=Ai,t=Qe!==null&&Qe.next!==null,wo=0,Ge=Qe=Be=null,Ii=!1,t)throw Error(H(300));return e}function _n(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return Ge===null?Be.memoizedState=Ge=e:Ge=Ge.next=e,Ge}function Dn(){if(Qe===null){var e=Be.alternate;e=e!==null?e.memoizedState:null}else e=Qe.next;var t=Ge===null?Be.memoizedState:Ge.next;if(t!==null)Ge=t,Qe=e;else{if(e===null)throw Error(H(310));Qe=e,e={memoizedState:Qe.memoizedState,baseState:Qe.baseState,baseQueue:Qe.baseQueue,queue:Qe.queue,next:null},Ge===null?Be.memoizedState=Ge=e:Ge=Ge.next=e}return Ge}function Mt(e,t){return typeof t=="function"?t(e):t}function Mr(e){var t=Dn(),n=t.queue;if(n===null)throw Error(H(311));n.lastRenderedReducer=e;var r=Qe,o=r.baseQueue,l=n.pending;if(l!==null){if(o!==null){var u=o.next;o.next=l.next,l.next=u}r.baseQueue=o=l,n.pending=null}if(o!==null){o=o.next,r=r.baseState;var a=u=l=null,d=o;do{var c=d.lane;if((wo&c)===c)a!==null&&(a=a.next={lane:0,action:d.action,eagerReducer:d.eagerReducer,eagerState:d.eagerState,next:null}),r=d.eagerReducer===e?d.eagerState:e(r,d.action);else{var R={lane:c,action:d.action,eagerReducer:d.eagerReducer,eagerState:d.eagerState,next:null};a===null?(u=a=R,l=r):a=a.next=R,Be.lanes|=c,Oo|=c}d=d.next}while(d!==null&&d!==o);a===null?l=r:a.next=u,wt(r,t.memoizedState)||(It=!0),t.memoizedState=r,t.baseState=l,t.baseQueue=a,n.lastRenderedState=r}return[t.memoizedState,n.dispatch]}function Br(e){var t=Dn(),n=t.queue;if(n===null)throw Error(H(311));n.lastRenderedReducer=e;var r=n.dispatch,o=n.pending,l=t.memoizedState;if(o!==null){n.pending=null;var u=o=o.next;do l=e(l,u.action),u=u.next;while(u!==o);wt(l,t.memoizedState)||(It=!0),t.memoizedState=l,t.baseQueue===null&&(t.baseState=l),n.lastRenderedState=l}return[l,r]}function Rc(e,t,n){var r=t._getVersion;r=r(t._source);var o=t._workInProgressVersionPrimary;if(o!==null?e=o===r:(e=e.mutableReadLanes,(e=(wo&e)===e)&&(t._workInProgressVersionPrimary=r,Jn.push(t))),e)return n(t._source);throw Jn.push(t),Error(H(350))}function Fd(e,t,n,r){var o=rt;if(o===null)throw Error(H(349));var l=t._getVersion,u=l(t._source),a=Zr.current,d=a.useState(function(){return Rc(o,t,n)}),c=d[1],R=d[0];d=Ge;var P=e.memoizedState,S=P.refs,k=S.getSnapshot,I=P.source;P=P.subscribe;var O=Be;return e.memoizedState={refs:S,source:t,subscribe:r},a.useEffect(function(){S.getSnapshot=n,S.setSnapshot=c;var h=l(t._source);if(!wt(u,h)){h=n(t._source),wt(R,h)||(c(h),h=sn(O),o.mutableReadLanes|=h&o.pendingLanes),h=o.mutableReadLanes,o.entangledLanes|=h;for(var m=o.entanglements,y=h;0n?98:n,function(){e(!0)}),Nn(97<\/script>",e=e.removeChild(e.firstChild)):typeof r.is=="string"?e=u.createElement(n,{is:r.is}):(e=u.createElement(n),n==="select"&&(u=e,r.multiple?u.multiple=!0:r.size&&(u.size=r.size))):e=u.createElementNS(e,n),e[tn]=t,e[xi]=r,Vd(e,t,!1,!1),t.stateNode=e,u=eu(n,r),n){case"dialog":ke("cancel",e),ke("close",e),o=r;break;case"iframe":case"object":case"embed":ke("load",e),o=r;break;case"video":case"audio":for(o=0;o<$r.length;o++)ke($r[o],e);o=r;break;case"source":ke("error",e),o=r;break;case"img":case"image":case"link":ke("error",e),ke("load",e),o=r;break;case"details":ke("toggle",e),o=r;break;case"input":Ds(e,r),o=Vl(e,r),ke("invalid",e);break;case"option":o=Kl(e,r);break;case"select":e._wrapperState={wasMultiple:!!r.multiple},o=Te({},r,{value:void 0}),ke("invalid",e);break;case"textarea":zs(e,r),o=Yl(e,r),ke("invalid",e);break;default:o=r}Jl(n,o);var a=o;for(l in a)if(a.hasOwnProperty(l)){var d=a[l];l==="style"?bf(e,d):l==="dangerouslySetInnerHTML"?(d=d?d.__html:void 0,d!=null&&$f(e,d)):l==="children"?typeof d=="string"?(n!=="textarea"||d!=="")&&lo(e,d):typeof d=="number"&&lo(e,""+d):l!=="suppressContentEditableWarning"&&l!=="suppressHydrationWarning"&&l!=="autoFocus"&&(io.hasOwnProperty(l)?d!=null&&l==="onScroll"&&ke("scroll",e):d!=null&&Gu(e,l,d,u))}switch(n){case"input":Go(e),Fs(e,r,!1);break;case"textarea":Go(e),js(e);break;case"option":r.value!=null&&e.setAttribute("value",""+dn(r.value));break;case"select":e.multiple=!!r.multiple,l=r.value,l!=null?Qn(e,!!r.multiple,l,!1):r.defaultValue!=null&&Qn(e,!!r.multiple,r.defaultValue,!0);break;default:typeof o.onClick=="function"&&(e.onclick=Ci)}Ed(n,r)&&(t.flags|=4)}t.ref!==null&&(t.flags|=128)}return null;case 6:if(e&&t.stateNode!=null)Qd(e,t,e.memoizedProps,r);else{if(typeof r!="string"&&t.stateNode===null)throw Error(H(166));n=kn(yo.current),kn(At.current),qo(t)?(r=t.stateNode,n=t.memoizedProps,r[tn]=t,r.nodeValue!==n&&(t.flags|=4)):(r=(n.nodeType===9?n:n.ownerDocument).createTextNode(r),r[tn]=t,t.stateNode=r)}return null;case 13:return _e(Le),r=t.memoizedState,t.flags&64?(t.lanes=n,t):(r=r!==null,n=!1,e===null?t.memoizedProps.fallback!==void 0&&qo(t):n=e.memoizedState!==null,r&&!n&&t.mode&2&&(e===null&&t.memoizedProps.unstable_avoidThisFallback!==!0||Le.current&1?Ve===0&&(Ve=3):((Ve===0||Ve===3)&&(Ve=4),rt===null||!(Oo&134217727)&&!(hr&134217727)||er(rt,Ye))),(r||n)&&(t.flags|=4),null);case 4:return lr(),wu(t),e===null&&yd(t.stateNode.containerInfo),null;case 10:return ha(t),null;case 17:return ct(t.type)&&Ri(),null;case 19:if(_e(Le),r=t.memoizedState,r===null)return null;if(l=(t.flags&64)!==0,u=r.rendering,u===null)if(l)Dr(r,!1);else{if(Ve!==0||e!==null&&e.flags&64)for(e=t.child;e!==null;){if(u=Ni(e),u!==null){for(t.flags|=64,Dr(r,!1),l=u.updateQueue,l!==null&&(t.updateQueue=l,t.flags|=4),r.lastEffect===null&&(t.firstEffect=null),t.lastEffect=r.lastEffect,r=n,n=t.child;n!==null;)l=n,e=r,l.flags&=2,l.nextEffect=null,l.firstEffect=null,l.lastEffect=null,u=l.alternate,u===null?(l.childLanes=0,l.lanes=e,l.child=null,l.memoizedProps=null,l.memoizedState=null,l.updateQueue=null,l.dependencies=null,l.stateNode=null):(l.childLanes=u.childLanes,l.lanes=u.lanes,l.child=u.child,l.memoizedProps=u.memoizedProps,l.memoizedState=u.memoizedState,l.updateQueue=u.updateQueue,l.type=u.type,e=u.dependencies,l.dependencies=e===null?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return Me(Le,Le.current&1|2),t.child}e=e.sibling}r.tail!==null&&Ke()>ku&&(t.flags|=64,l=!0,Dr(r,!1),t.lanes=33554432)}else{if(!l)if(e=Ni(u),e!==null){if(t.flags|=64,l=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),Dr(r,!0),r.tail===null&&r.tailMode==="hidden"&&!u.alternate&&!Dt)return t=t.lastEffect=r.lastEffect,t!==null&&(t.nextEffect=null),null}else 2*Ke()-r.renderingStartTime>ku&&n!==1073741824&&(t.flags|=64,l=!0,Dr(r,!1),t.lanes=33554432);r.isBackwards?(u.sibling=t.child,t.child=u):(n=r.last,n!==null?n.sibling=u:t.child=u,r.last=u)}return r.tail!==null?(n=r.tail,r.rendering=n,r.tail=n.sibling,r.lastEffect=t.lastEffect,r.renderingStartTime=Ke(),n.sibling=null,t=Le.current,Me(Le,l?t&1|2:t&1),n):null;case 23:case 24:return Ta(),e!==null&&e.memoizedState!==null!=(t.memoizedState!==null)&&r.mode!=="unstable-defer-without-hiding"&&(t.flags|=4),null}throw Error(H(156,t.tag))}function kh(e){switch(e.tag){case 1:ct(e.type)&&Ri();var t=e.flags;return t&4096?(e.flags=t&-4097|64,e):null;case 3:if(lr(),_e(st),_e(qe),wa(),t=e.flags,t&64)throw Error(H(285));return e.flags=t&-4097|64,e;case 5:return ya(e),null;case 13:return _e(Le),t=e.flags,t&4096?(e.flags=t&-4097|64,e):null;case 19:return _e(Le),null;case 4:return lr(),null;case 10:return ha(e),null;case 23:case 24:return Ta(),null;default:return null}}function ka(e,t){try{var n="",r=t;do n+=im(r),r=r.return;while(r);var o=n}catch(l){o=` -Error generating stack: `+l.message+` -`+l.stack}return{value:e,source:t,stack:o}}function Su(e,t){try{console.error(t.value)}catch(n){setTimeout(function(){throw n})}}var _h=typeof WeakMap=="function"?WeakMap:Map;function Kd(e,t,n){n=un(-1,n),n.tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){Fi||(Fi=!0,_u=r),Su(e,t)},n}function Yd(e,t,n){n=un(-1,n),n.tag=3;var r=e.type.getDerivedStateFromError;if(typeof r=="function"){var o=t.value;n.payload=function(){return Su(e,t),r(o)}}var l=e.stateNode;return l!==null&&typeof l.componentDidCatch=="function"&&(n.callback=function(){typeof r!="function"&&(Bt===null?Bt=new Set([this]):Bt.add(this),Su(e,t));var u=t.stack;this.componentDidCatch(t.value,{componentStack:u!==null?u:""})}),n}var Ph=typeof WeakSet=="function"?WeakSet:Set;function Fc(e){var t=e.ref;if(t!==null)if(typeof t=="function")try{t(null)}catch(n){fn(e,n)}else t.current=null}function Oh(e,t){switch(t.tag){case 0:case 11:case 15:case 22:return;case 1:if(t.flags&256&&e!==null){var n=e.memoizedProps,r=e.memoizedState;e=t.stateNode,t=e.getSnapshotBeforeUpdate(t.elementType===t.type?n:Nt(t.type,n),r),e.__reactInternalSnapshotBeforeUpdate=t}return;case 3:t.flags&256&&da(t.stateNode.containerInfo);return;case 5:case 6:case 4:case 17:return}throw Error(H(163))}function Th(e,t,n){switch(n.tag){case 0:case 11:case 15:case 22:if(t=n.updateQueue,t=t!==null?t.lastEffect:null,t!==null){e=t=t.next;do{if((e.tag&3)===3){var r=e.create;e.destroy=r()}e=e.next}while(e!==t)}if(t=n.updateQueue,t=t!==null?t.lastEffect:null,t!==null){e=t=t.next;do{var o=e;r=o.next,o=o.tag,o&4&&o&1&&(ip(n,e),Fh(n,e)),e=r}while(e!==t)}return;case 1:e=n.stateNode,n.flags&4&&(t===null?e.componentDidMount():(r=n.elementType===n.type?t.memoizedProps:Nt(n.type,t.memoizedProps),e.componentDidUpdate(r,t.memoizedState,e.__reactInternalSnapshotBeforeUpdate))),t=n.updateQueue,t!==null&&yc(n,t,e);return;case 3:if(t=n.updateQueue,t!==null){if(e=null,n.child!==null)switch(n.child.tag){case 5:e=n.child.stateNode;break;case 1:e=n.child.stateNode}yc(n,t,e)}return;case 5:e=n.stateNode,t===null&&n.flags&4&&Ed(n.type,n.memoizedProps)&&e.focus();return;case 6:return;case 4:return;case 12:return;case 13:n.memoizedState===null&&(n=n.alternate,n!==null&&(n=n.memoizedState,n!==null&&(n=n.dehydrated,n!==null&&ed(n))));return;case 19:case 17:case 20:case 21:case 23:case 24:return}throw Error(H(163))}function zc(e,t){for(var n=e;;){if(n.tag===5){var r=n.stateNode;if(t)r=r.style,typeof r.setProperty=="function"?r.setProperty("display","none","important"):r.display="none";else{r=n.stateNode;var o=n.memoizedProps.style;o=o!=null&&o.hasOwnProperty("display")?o.display:null,r.style.display=Uf("display",o)}}else if(n.tag===6)n.stateNode.nodeValue=t?"":n.memoizedProps;else if((n.tag!==23&&n.tag!==24||n.memoizedState===null||n===e)&&n.child!==null){n.child.return=n,n=n.child;continue}if(n===e)break;for(;n.sibling===null;){if(n.return===null||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function jc(e,t){if(Pn&&typeof Pn.onCommitFiberUnmount=="function")try{Pn.onCommitFiberUnmount(pa,t)}catch{}switch(t.tag){case 0:case 11:case 14:case 15:case 22:if(e=t.updateQueue,e!==null&&(e=e.lastEffect,e!==null)){var n=e=e.next;do{var r=n,o=r.destroy;if(r=r.tag,o!==void 0)if(r&4)ip(t,n);else{r=t;try{o()}catch(l){fn(r,l)}}n=n.next}while(n!==e)}break;case 1:if(Fc(t),e=t.stateNode,typeof e.componentWillUnmount=="function")try{e.props=t.memoizedProps,e.state=t.memoizedState,e.componentWillUnmount()}catch(l){fn(t,l)}break;case 5:Fc(t);break;case 4:qd(e,t)}}function Wc(e){e.alternate=null,e.child=null,e.dependencies=null,e.firstEffect=null,e.lastEffect=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.return=null,e.updateQueue=null}function Hc(e){return e.tag===5||e.tag===3||e.tag===4}function $c(e){e:{for(var t=e.return;t!==null;){if(Hc(t))break e;t=t.return}throw Error(H(160))}var n=t;switch(t=n.stateNode,n.tag){case 5:var r=!1;break;case 3:t=t.containerInfo,r=!0;break;case 4:t=t.containerInfo,r=!0;break;default:throw Error(H(161))}n.flags&16&&(lo(t,""),n.flags&=-17);e:t:for(n=e;;){for(;n.sibling===null;){if(n.return===null||Hc(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;n.tag!==5&&n.tag!==6&&n.tag!==18;){if(n.flags&2||n.child===null||n.tag===4)continue t;n.child.return=n,n=n.child}if(!(n.flags&2)){n=n.stateNode;break e}}r?Eu(e,n,t):Cu(e,n,t)}function Eu(e,t,n){var r=e.tag,o=r===5||r===6;if(o)e=o?e.stateNode:e.stateNode.instance,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=Ci));else if(r!==4&&(e=e.child,e!==null))for(Eu(e,t,n),e=e.sibling;e!==null;)Eu(e,t,n),e=e.sibling}function Cu(e,t,n){var r=e.tag,o=r===5||r===6;if(o)e=o?e.stateNode:e.stateNode.instance,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(Cu(e,t,n),e=e.sibling;e!==null;)Cu(e,t,n),e=e.sibling}function qd(e,t){for(var n=t,r=!1,o,l;;){if(!r){r=n.return;e:for(;;){if(r===null)throw Error(H(160));switch(o=r.stateNode,r.tag){case 5:l=!1;break e;case 3:o=o.containerInfo,l=!0;break e;case 4:o=o.containerInfo,l=!0;break e}r=r.return}r=!0}if(n.tag===5||n.tag===6){e:for(var u=e,a=n,d=a;;)if(jc(u,d),d.child!==null&&d.tag!==4)d.child.return=d,d=d.child;else{if(d===a)break e;for(;d.sibling===null;){if(d.return===null||d.return===a)break e;d=d.return}d.sibling.return=d.return,d=d.sibling}l?(u=o,a=n.stateNode,u.nodeType===8?u.parentNode.removeChild(a):u.removeChild(a)):o.removeChild(n.stateNode)}else if(n.tag===4){if(n.child!==null){o=n.stateNode.containerInfo,l=!0,n.child.return=n,n=n.child;continue}}else if(jc(e,n),n.child!==null){n.child.return=n,n=n.child;continue}if(n===t)break;for(;n.sibling===null;){if(n.return===null||n.return===t)return;n=n.return,n.tag===4&&(r=!1)}n.sibling.return=n.return,n=n.sibling}}function zl(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 22:var n=t.updateQueue;if(n=n!==null?n.lastEffect:null,n!==null){var r=n=n.next;do(r.tag&3)===3&&(e=r.destroy,r.destroy=void 0,e!==void 0&&e()),r=r.next;while(r!==n)}return;case 1:return;case 5:if(n=t.stateNode,n!=null){r=t.memoizedProps;var o=e!==null?e.memoizedProps:r;e=t.type;var l=t.updateQueue;if(t.updateQueue=null,l!==null){for(n[xi]=r,e==="input"&&r.type==="radio"&&r.name!=null&&jf(n,r),eu(e,o),t=eu(e,r),o=0;oo&&(o=u),n&=~l}if(n=o,n=Ke()-n,n=(120>n?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Ih(n/1960))-n,10 component higher in the tree to provide a loading indicator or placeholder to display.`)}Ve!==5&&(Ve=2),d=ka(d,a),S=u;do{switch(S.tag){case 3:l=d,S.flags|=4096,t&=-t,S.lanes|=t;var D=Kd(S,l,t);gc(S,D);break e;case 1:l=d;var T=S.type,E=S.stateNode;if(!(S.flags&64)&&(typeof T.getDerivedStateFromError=="function"||E!==null&&typeof E.componentDidCatch=="function"&&(Bt===null||!Bt.has(E)))){S.flags|=4096,t&=-t,S.lanes|=t;var C=Yd(S,l,t);gc(S,C);break e}}S=S.return}while(S!==null)}op(n)}catch(B){t=B,We===n&&n!==null&&(We=n=n.return);continue}break}while(1)}function np(){var e=Di.current;return Di.current=Ai,e===null?Ai:e}function br(e,t){var n=se;se|=16;var r=np();rt===e&&Ye===t||tr(e,t);do try{Mh();break}catch(o){tp(e,o)}while(1);if(ma(),se=n,Di.current=r,We!==null)throw Error(H(261));return rt=null,Ye=0,Ve}function Mh(){for(;We!==null;)rp(We)}function Bh(){for(;We!==null&&!mh();)rp(We)}function rp(e){var t=lp(e.alternate,e,In);e.memoizedProps=e.pendingProps,t===null?op(e):We=t,_a.current=null}function op(e){var t=e;do{var n=t.alternate;if(e=t.return,t.flags&2048){if(n=kh(t),n!==null){n.flags&=2047,We=n;return}e!==null&&(e.firstEffect=e.lastEffect=null,e.flags|=2048)}else{if(n=Rh(n,t,In),n!==null){We=n;return}if(n=t,n.tag!==24&&n.tag!==23||n.memoizedState===null||In&1073741824||!(n.mode&4)){for(var r=0,o=n.child;o!==null;)r|=o.lanes|o.childLanes,o=o.sibling;n.childLanes=r}e!==null&&!(e.flags&2048)&&(e.firstEffect===null&&(e.firstEffect=t.firstEffect),t.lastEffect!==null&&(e.lastEffect!==null&&(e.lastEffect.nextEffect=t.firstEffect),e.lastEffect=t.lastEffect),1u&&(a=u,u=D,D=a),a=nc(y,D),l=nc(y,u),a&&l&&(_.rangeCount!==1||_.anchorNode!==a.node||_.anchorOffset!==a.offset||_.focusNode!==l.node||_.focusOffset!==l.offset)&&(x=x.createRange(),x.setStart(a.node,a.offset),_.removeAllRanges(),D>u?(_.addRange(x),_.extend(l.node,l.offset)):(x.setEnd(l.node,l.offset),_.addRange(x)))))),x=[],_=y;_=_.parentNode;)_.nodeType===1&&x.push({element:_,left:_.scrollLeft,top:_.scrollTop});for(typeof y.focus=="function"&&y.focus(),y=0;yKe()-Oa?tr(e,0):Pa|=n),Rt(e,t)}function Wh(e,t){var n=e.stateNode;n!==null&&n.delete(t),t=0,t===0&&(t=e.mode,t&2?t&4?(bt===0&&(bt=mr),t=Wn(62914560&~bt),t===0&&(t=4194304)):t=ir()===99?1:2:t=1),n=pt(),e=el(e,t),e!==null&&(Vi(e,t,n),Rt(e,n))}var lp;lp=function(e,t,n){var r=t.lanes;if(e!==null)if(e.memoizedProps!==t.pendingProps||st.current)It=!0;else if(n&r)It=!!(e.flags&16384);else{switch(It=!1,t.tag){case 3:Nc(t),Al();break;case 5:Ec(t);break;case 1:ct(t.type)&&ai(t);break;case 4:vu(t,t.stateNode.containerInfo);break;case 10:r=t.memoizedProps.value;var o=t.type._context;Me(ki,o._currentValue),o._currentValue=r;break;case 13:if(t.memoizedState!==null)return n&t.child.childLanes?Ic(e,t,n):(Me(Le,Le.current&1),t=Vt(e,t,n),t!==null?t.sibling:null);Me(Le,Le.current&1);break;case 19:if(r=(n&t.childLanes)!==0,e.flags&64){if(r)return Dc(e,t,n);t.flags|=64}if(o=t.memoizedState,o!==null&&(o.rendering=null,o.tail=null,o.lastEffect=null),Me(Le,Le.current),r)break;return null;case 23:case 24:return t.lanes=0,Dl(e,t,n)}return Vt(e,t,n)}else It=!1;switch(t.lanes=0,t.tag){case 2:if(r=t.type,e!==null&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,o=or(t,qe.current),Zn(t,n),o=Ea(null,t,r,e,o,n),t.flags|=1,typeof o=="object"&&o!==null&&typeof o.render=="function"&&o.$$typeof===void 0){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,ct(r)){var l=!0;ai(t)}else l=!1;t.memoizedState=o.state!==null&&o.state!==void 0?o.state:null,ga(t);var u=r.getDerivedStateFromProps;typeof u=="function"&&Oi(t,r,u,e),o.updater=Zi,t.stateNode=o,o._reactInternals=t,pu(t,r,e,n),t=yu(null,t,r,!0,l,n)}else t.tag=0,at(null,t,o,n),t=t.child;return t;case 16:o=t.elementType;e:{switch(e!==null&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,l=o._init,o=l(o._payload),t.type=o,l=t.tag=$h(o),e=Nt(o,e),l){case 0:t=gu(null,t,o,e,n);break e;case 1:t=Tc(null,t,o,e,n);break e;case 11:t=Pc(null,t,o,e,n);break e;case 14:t=Oc(null,t,o,Nt(o.type,e),r,n);break e}throw Error(H(306,o,""))}return t;case 0:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:Nt(r,o),gu(e,t,r,o,n);case 1:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:Nt(r,o),Tc(e,t,r,o,n);case 3:if(Nc(t),r=t.updateQueue,e===null||r===null)throw Error(H(282));if(r=t.pendingProps,o=t.memoizedState,o=o!==null?o.element:null,Id(e,t),ho(t,r,null,n),r=t.memoizedState.element,r===o)Al(),t=Vt(e,t,n);else{if(o=t.stateNode,(l=o.hydrate)&&(nn=qn(t.stateNode.containerInfo.firstChild),Gt=t,l=Dt=!0),l){if(e=o.mutableSourceEagerHydrationData,e!=null)for(o=0;o"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(ap)}catch(e){console.error(e)}}ap(),Lf.exports=Pt;var Ba=Lf.exports;const Kh=Co(Ba);class Yh{constructor(){typeof acquireVsCodeApi=="function"&&(this.vsCodeApi=acquireVsCodeApi())}postMessage(t){this.vsCodeApi?this.vsCodeApi.postMessage(t):console.log(t)}getState(){if(this.vsCodeApi)return this.vsCodeApi.getState();{const t=localStorage.getItem("vscodeState");return t?JSON.parse(t):void 0}}setState(t){return this.vsCodeApi?this.vsCodeApi.setState(t):(localStorage.setItem("vscodeState",JSON.stringify(t)),t)}}const Vc=new Yh;var sp={exports:{}},Iu={exports:{}};(function(e,t){(function(n,r){r(t,ae)})(je,function(n,r){function o(i,s,f,p,g,v,w){try{var N=i[v](w),L=N.value}catch(M){return void f(M)}N.done?s(L):Promise.resolve(L).then(p,g)}function l(i){return function(){var s=this,f=arguments;return new Promise(function(p,g){var v=i.apply(s,f);function w(L){o(v,p,g,w,N,"next",L)}function N(L){o(v,p,g,w,N,"throw",L)}w(void 0)})}}function u(){return(u=Object.assign||function(i){for(var s=1;s=0||(g[f]=i[f]);return g}function d(i){var s=function(f,p){if(typeof f!="object"||f===null)return f;var g=f[Symbol.toPrimitive];if(g!==void 0){var v=g.call(f,p||"default");if(typeof v!="object")return v;throw new TypeError("@@toPrimitive must return a primitive value.")}return(p==="string"?String:Number)(f)}(i,"string");return typeof s=="symbol"?s:String(s)}r=r&&Object.prototype.hasOwnProperty.call(r,"default")?r.default:r;var c={init:"init"},R=function(i){var s=i.value;return s===void 0?"":s},P=function(){return r.createElement(r.Fragment,null," ")},S={Cell:R,width:150,minWidth:0,maxWidth:Number.MAX_SAFE_INTEGER};function k(){for(var i=arguments.length,s=new Array(i),f=0;f(v=typeof v=="number"?v:1/0)){var w=g;g=v,v=w}return i.filter(function(N){return s.some(function(L){var M=N.values[L];return M>=g&&M<=v})})};Za.autoRemove=function(i){return!i||typeof i[0]!="number"&&typeof i[1]!="number"};var Rr=Object.freeze({__proto__:null,text:Ua,exactText:ba,exactTextCase:Ga,includes:Va,includesAll:Xa,includesSome:Qa,includesValue:Ka,exact:Ya,equals:qa,between:Za});c.resetFilters="resetFilters",c.setFilter="setFilter",c.setAllFilters="setAllFilters";var Ja=function(i){i.stateReducers.push(Ap),i.useInstance.push(Dp)};function Ap(i,s,f,p){if(s.type===c.init)return u({filters:[]},i);if(s.type===c.resetFilters)return u({},i,{filters:p.initialState.filters||[]});if(s.type===c.setFilter){var g=s.columnId,v=s.filterValue,w=p.allColumns,N=p.filterTypes,L=w.find(function(G){return G.id===g});if(!L)throw new Error("React-Table: Could not find a column with id: "+g);var M=it(L.filter,N||{},Rr),$=i.filters.find(function(G){return G.id===g}),z=y(v,$&&$.value);return Ze(M.autoRemove,z,L)?u({},i,{filters:i.filters.filter(function(G){return G.id!==g})}):u({},i,$?{filters:i.filters.map(function(G){return G.id===g?{id:g,value:z}:G})}:{filters:[].concat(i.filters,[{id:g,value:z}])})}if(s.type===c.setAllFilters){var j=s.filters,A=p.allColumns,W=p.filterTypes;return u({},i,{filters:y(j,i.filters).filter(function(G){var V=A.find(function(q){return q.id===G.id});return!Ze(it(V.filter,W||{},Rr).autoRemove,G.value,V)})})}}function Dp(i){var s=i.data,f=i.rows,p=i.flatRows,g=i.rowsById,v=i.allColumns,w=i.filterTypes,N=i.manualFilters,L=i.defaultCanFilter,M=L!==void 0&&L,$=i.disableFilters,z=i.state.filters,j=i.dispatch,A=i.autoResetFilters,W=A===void 0||A,G=r.useCallback(function(Q,ie){j({type:c.setFilter,columnId:Q,filterValue:ie})},[j]),V=r.useCallback(function(Q){j({type:c.setAllFilters,filters:Q})},[j]);v.forEach(function(Q){var ie=Q.id,pe=Q.accessor,te=Q.defaultCanFilter,oe=Q.disableFilters;Q.canFilter=pe?Re(oe!==!0&&void 0,$!==!0&&void 0,!0):Re(te,M,!1),Q.setFilter=function(le){return G(Q.id,le)};var ge=z.find(function(le){return le.id===ie});Q.filterValue=ge&&ge.value});var q=r.useMemo(function(){if(N||!z.length)return[f,p,g];var Q=[],ie={};return[function pe(te,oe){oe===void 0&&(oe=0);var ge=te;return(ge=z.reduce(function(le,he){var me=he.id,Ee=he.value,Z=v.find(function(Ie){return Ie.id===me});if(!Z)return le;oe===0&&(Z.preFilteredRows=le);var ve=it(Z.filter,w||{},Rr);return ve?(Z.filteredRows=ve(le,[me],Ee),Z.filteredRows):(console.warn("Could not find a valid 'column.filter' for column with the ID: "+Z.id+"."),le)},te)).forEach(function(le){Q.push(le),ie[le.id]=le,le.subRows&&(le.subRows=le.subRows&&le.subRows.length>0?pe(le.subRows,oe+1):le.subRows)}),ge}(f),Q,ie]},[N,z,f,p,g,v,w]),de=q[0],Y=q[1],U=q[2];r.useMemo(function(){v.filter(function(Q){return!z.find(function(ie){return ie.id===Q.id})}).forEach(function(Q){Q.preFilteredRows=de,Q.filteredRows=de})},[de,z,v]);var ue=x(W);D(function(){ue()&&j({type:c.resetFilters})},[j,N?null:s]),Object.assign(i,{preFilteredRows:f,preFilteredFlatRows:p,preFilteredRowsById:g,filteredRows:de,filteredFlatRows:Y,filteredRowsById:U,rows:de,flatRows:Y,rowsById:U,setFilter:G,setAllFilters:V})}Ja.pluginName="useFilters",c.resetGlobalFilter="resetGlobalFilter",c.setGlobalFilter="setGlobalFilter";var es=function(i){i.stateReducers.push(Fp),i.useInstance.push(zp)};function Fp(i,s,f,p){if(s.type===c.resetGlobalFilter)return u({},i,{globalFilter:p.initialState.globalFilter||void 0});if(s.type===c.setGlobalFilter){var g=s.filterValue,v=p.userFilterTypes,w=it(p.globalFilter,v||{},Rr),N=y(g,i.globalFilter);return Ze(w.autoRemove,N)?(i.globalFilter,a(i,["globalFilter"])):u({},i,{globalFilter:N})}}function zp(i){var s=i.data,f=i.rows,p=i.flatRows,g=i.rowsById,v=i.allColumns,w=i.filterTypes,N=i.globalFilter,L=i.manualGlobalFilter,M=i.state.globalFilter,$=i.dispatch,z=i.autoResetGlobalFilter,j=z===void 0||z,A=i.disableGlobalFilter,W=r.useCallback(function(U){$({type:c.setGlobalFilter,filterValue:U})},[$]),G=r.useMemo(function(){if(L||M===void 0)return[f,p,g];var U=[],ue={},Q=it(N,w||{},Rr);if(!Q)return console.warn("Could not find a valid 'globalFilter' option."),f;v.forEach(function(pe){var te=pe.disableGlobalFilter;pe.canFilter=Re(te!==!0&&void 0,A!==!0&&void 0,!0)});var ie=v.filter(function(pe){return pe.canFilter===!0});return[function pe(te){return(te=Q(te,ie.map(function(oe){return oe.id}),M)).forEach(function(oe){U.push(oe),ue[oe.id]=oe,oe.subRows=oe.subRows&&oe.subRows.length?pe(oe.subRows):oe.subRows}),te}(f),U,ue]},[L,M,N,w,v,f,p,g,A]),V=G[0],q=G[1],de=G[2],Y=x(j);D(function(){Y()&&$({type:c.resetGlobalFilter})},[$,L?null:s]),Object.assign(i,{preGlobalFilteredRows:f,preGlobalFilteredFlatRows:p,preGlobalFilteredRowsById:g,globalFilteredRows:V,globalFilteredFlatRows:q,globalFilteredRowsById:de,rows:V,flatRows:q,rowsById:de,setGlobalFilter:W,disableGlobalFilter:A})}function ts(i,s){return s.reduce(function(f,p){return f+(typeof p=="number"?p:0)},0)}es.pluginName="useGlobalFilter";var ns=Object.freeze({__proto__:null,sum:ts,min:function(i){var s=i[0]||0;return i.forEach(function(f){typeof f=="number"&&(s=Math.min(s,f))}),s},max:function(i){var s=i[0]||0;return i.forEach(function(f){typeof f=="number"&&(s=Math.max(s,f))}),s},minMax:function(i){var s=i[0]||0,f=i[0]||0;return i.forEach(function(p){typeof p=="number"&&(s=Math.min(s,p),f=Math.max(f,p))}),s+".."+f},average:function(i){return ts(0,i)/i.length},median:function(i){if(!i.length)return null;var s=Math.floor(i.length/2),f=[].concat(i).sort(function(p,g){return p-g});return i.length%2!=0?f[s]:(f[s-1]+f[s])/2},unique:function(i){return Array.from(new Set(i).values())},uniqueCount:function(i){return new Set(i).size},count:function(i){return i.length}}),jp=[],Wp={};c.resetGroupBy="resetGroupBy",c.setGroupBy="setGroupBy",c.toggleGroupBy="toggleGroupBy";var rs=function(i){i.getGroupByToggleProps=[Hp],i.stateReducers.push($p),i.visibleColumnsDeps.push(function(s,f){var p=f.instance;return[].concat(s,[p.state.groupBy])}),i.visibleColumns.push(Up),i.useInstance.push(Gp),i.prepareRow.push(Vp)};rs.pluginName="useGroupBy";var Hp=function(i,s){var f=s.header;return[i,{onClick:f.canGroupBy?function(p){p.persist(),f.toggleGroupBy()}:void 0,style:{cursor:f.canGroupBy?"pointer":void 0},title:"Toggle GroupBy"}]};function $p(i,s,f,p){if(s.type===c.init)return u({groupBy:[]},i);if(s.type===c.resetGroupBy)return u({},i,{groupBy:p.initialState.groupBy||[]});if(s.type===c.setGroupBy)return u({},i,{groupBy:s.value});if(s.type===c.toggleGroupBy){var g=s.columnId,v=s.value,w=v!==void 0?v:!i.groupBy.includes(g);return u({},i,w?{groupBy:[].concat(i.groupBy,[g])}:{groupBy:i.groupBy.filter(function(N){return N!==g})})}}function Up(i,s){var f=s.instance.state.groupBy,p=f.map(function(v){return i.find(function(w){return w.id===v})}).filter(Boolean),g=i.filter(function(v){return!f.includes(v.id)});return(i=[].concat(p,g)).forEach(function(v){v.isGrouped=f.includes(v.id),v.groupedIndex=f.indexOf(v.id)}),i}var bp={};function Gp(i){var s=i.data,f=i.rows,p=i.flatRows,g=i.rowsById,v=i.allColumns,w=i.flatHeaders,N=i.groupByFn,L=N===void 0?os:N,M=i.manualGroupBy,$=i.aggregations,z=$===void 0?bp:$,j=i.plugins,A=i.state.groupBy,W=i.dispatch,G=i.autoResetGroupBy,V=G===void 0||G,q=i.disableGroupBy,de=i.defaultCanGroupBy,Y=i.getHooks;m(j,["useColumnOrder","useFilters"],"useGroupBy");var U=x(i);v.forEach(function(Z){var ve=Z.accessor,Ie=Z.defaultGroupBy,tt=Z.disableGroupBy;Z.canGroupBy=ve?Re(Z.canGroupBy,tt!==!0&&void 0,q!==!0&&void 0,!0):Re(Z.canGroupBy,Ie,de,!1),Z.canGroupBy&&(Z.toggleGroupBy=function(){return i.toggleGroupBy(Z.id)}),Z.Aggregated=Z.Aggregated||Z.Cell});var ue=r.useCallback(function(Z,ve){W({type:c.toggleGroupBy,columnId:Z,value:ve})},[W]),Q=r.useCallback(function(Z){W({type:c.setGroupBy,value:Z})},[W]);w.forEach(function(Z){Z.getGroupByToggleProps=I(Y().getGroupByToggleProps,{instance:U(),header:Z})});var ie=r.useMemo(function(){if(M||!A.length)return[f,p,g,jp,Wp,p,g];var Z=A.filter(function($e){return v.find(function(qt){return qt.id===$e})}),ve=[],Ie={},tt=[],ne={},Oe=[],Ae={},nt=function $e(qt,Ht,Cs){if(Ht===void 0&&(Ht=0),Ht===Z.length)return qt.map(function(zo){return u({},zo,{depth:Ht})});var ml=Z[Ht],Bv=L(qt,ml);return Object.entries(Bv).map(function(zo,Av){var xs=zo[0],jo=zo[1],Wo=ml+":"+xs,Rs=$e(jo,Ht+1,Wo=Cs?Cs+">"+Wo:Wo),ks=Ht?Pe(jo,"leafRows"):jo,Dv=function(gt,hl,zv){var Ho={};return v.forEach(function(De){if(Z.includes(De.id))Ho[De.id]=hl[0]?hl[0].values[De.id]:null;else{var _s=typeof De.aggregate=="function"?De.aggregate:z[De.aggregate]||ns[De.aggregate];if(_s){var jv=hl.map(function($o){return $o.values[De.id]}),Wv=gt.map(function($o){var gl=$o.values[De.id];if(!zv&&De.aggregateValue){var Ps=typeof De.aggregateValue=="function"?De.aggregateValue:z[De.aggregateValue]||ns[De.aggregateValue];if(!Ps)throw console.info({column:De}),new Error("React Table: Invalid column.aggregateValue option for column listed above");gl=Ps(gl,$o,De)}return gl});Ho[De.id]=_s(Wv,jv)}else{if(De.aggregate)throw console.info({column:De}),new Error("React Table: Invalid column.aggregate option for column listed above");Ho[De.id]=null}}}),Ho}(ks,jo,Ht),Fv={id:Wo,isGrouped:!0,groupByID:ml,groupByVal:xs,values:Dv,subRows:Rs,leafRows:ks,depth:Ht,index:Av};return Rs.forEach(function(gt){ve.push(gt),Ie[gt.id]=gt,gt.isGrouped?(tt.push(gt),ne[gt.id]=gt):(Oe.push(gt),Ae[gt.id]=gt)}),Fv})}(f);return nt.forEach(function($e){ve.push($e),Ie[$e.id]=$e,$e.isGrouped?(tt.push($e),ne[$e.id]=$e):(Oe.push($e),Ae[$e.id]=$e)}),[nt,ve,Ie,tt,ne,Oe,Ae]},[M,A,f,p,g,v,z,L]),pe=ie[0],te=ie[1],oe=ie[2],ge=ie[3],le=ie[4],he=ie[5],me=ie[6],Ee=x(V);D(function(){Ee()&&W({type:c.resetGroupBy})},[W,M?null:s]),Object.assign(i,{preGroupedRows:f,preGroupedFlatRow:p,preGroupedRowsById:g,groupedRows:pe,groupedFlatRows:te,groupedRowsById:oe,onlyGroupedFlatRows:ge,onlyGroupedRowsById:le,nonGroupedFlatRows:he,nonGroupedRowsById:me,rows:pe,flatRows:te,rowsById:oe,toggleGroupBy:ue,setGroupBy:Q})}function Vp(i){i.allCells.forEach(function(s){var f;s.isGrouped=s.column.isGrouped&&s.column.id===i.groupByID,s.isPlaceholder=!s.isGrouped&&s.column.isGrouped,s.isAggregated=!s.isGrouped&&!s.isPlaceholder&&((f=i.subRows)==null?void 0:f.length)})}function os(i,s){return i.reduce(function(f,p,g){var v=""+p.values[s];return f[v]=Array.isArray(f[v])?f[v]:[],f[v].push(p),f},{})}var is=/([0-9]+)/gm;function sl(i,s){return i===s?0:i>s?1:-1}function kr(i,s,f){return[i.values[f],s.values[f]]}function ls(i){return typeof i=="number"?isNaN(i)||i===1/0||i===-1/0?"":String(i):typeof i=="string"?i:""}var Xp=Object.freeze({__proto__:null,alphanumeric:function(i,s,f){var p=kr(i,s,f),g=p[0],v=p[1];for(g=ls(g),v=ls(v),g=g.split(is).filter(Boolean),v=v.split(is).filter(Boolean);g.length&&v.length;){var w=g.shift(),N=v.shift(),L=parseInt(w,10),M=parseInt(N,10),$=[L,M].sort();if(isNaN($[0])){if(w>N)return 1;if(N>w)return-1}else{if(isNaN($[1]))return isNaN(L)?-1:1;if(L>M)return 1;if(M>L)return-1}}return g.length-v.length},datetime:function(i,s,f){var p=kr(i,s,f),g=p[0],v=p[1];return sl(g=g.getTime(),v=v.getTime())},basic:function(i,s,f){var p=kr(i,s,f);return sl(p[0],p[1])},string:function(i,s,f){var p=kr(i,s,f),g=p[0],v=p[1];for(g=g.split("").filter(Boolean),v=v.split("").filter(Boolean);g.length&&v.length;){var w=g.shift(),N=v.shift(),L=w.toLowerCase(),M=N.toLowerCase();if(L>M)return 1;if(M>L)return-1;if(w>N)return 1;if(N>w)return-1}return g.length-v.length},number:function(i,s,f){var p=kr(i,s,f),g=p[0],v=p[1],w=/[^0-9.]/gi;return sl(g=Number(String(g).replace(w,"")),v=Number(String(v).replace(w,"")))}});c.resetSortBy="resetSortBy",c.setSortBy="setSortBy",c.toggleSortBy="toggleSortBy",c.clearSortBy="clearSortBy",S.sortType="alphanumeric",S.sortDescFirst=!1;var us=function(i){i.getSortByToggleProps=[Qp],i.stateReducers.push(Kp),i.useInstance.push(Yp)};us.pluginName="useSortBy";var Qp=function(i,s){var f=s.instance,p=s.column,g=f.isMultiSortEvent,v=g===void 0?function(w){return w.shiftKey}:g;return[i,{onClick:p.canSort?function(w){w.persist(),p.toggleSortBy(void 0,!f.disableMultiSort&&v(w))}:void 0,style:{cursor:p.canSort?"pointer":void 0},title:p.canSort?"Toggle SortBy":void 0}]};function Kp(i,s,f,p){if(s.type===c.init)return u({sortBy:[]},i);if(s.type===c.resetSortBy)return u({},i,{sortBy:p.initialState.sortBy||[]});if(s.type===c.clearSortBy)return u({},i,{sortBy:i.sortBy.filter(function(U){return U.id!==s.columnId})});if(s.type===c.setSortBy)return u({},i,{sortBy:s.sortBy});if(s.type===c.toggleSortBy){var g,v=s.columnId,w=s.desc,N=s.multi,L=p.allColumns,M=p.disableMultiSort,$=p.disableSortRemove,z=p.disableMultiRemove,j=p.maxMultiSortColCount,A=j===void 0?Number.MAX_SAFE_INTEGER:j,W=i.sortBy,G=L.find(function(U){return U.id===v}).sortDescFirst,V=W.find(function(U){return U.id===v}),q=W.findIndex(function(U){return U.id===v}),de=w!=null,Y=[];return(g=!M&&N?V?"toggle":"add":q!==W.length-1||W.length!==1?"replace":V?"toggle":"replace")!="toggle"||$||de||N&&z||!(V&&V.desc&&!G||!V.desc&&G)||(g="remove"),g==="replace"?Y=[{id:v,desc:de?w:G}]:g==="add"?(Y=[].concat(W,[{id:v,desc:de?w:G}])).splice(0,Y.length-A):g==="toggle"?Y=W.map(function(U){return U.id===v?u({},U,{desc:de?w:!V.desc}):U}):g==="remove"&&(Y=W.filter(function(U){return U.id!==v})),u({},i,{sortBy:Y})}}function Yp(i){var s=i.data,f=i.rows,p=i.flatRows,g=i.allColumns,v=i.orderByFn,w=v===void 0?as:v,N=i.sortTypes,L=i.manualSortBy,M=i.defaultCanSort,$=i.disableSortBy,z=i.flatHeaders,j=i.state.sortBy,A=i.dispatch,W=i.plugins,G=i.getHooks,V=i.autoResetSortBy,q=V===void 0||V;m(W,["useFilters","useGlobalFilter","useGroupBy","usePivotColumns"],"useSortBy");var de=r.useCallback(function(te){A({type:c.setSortBy,sortBy:te})},[A]),Y=r.useCallback(function(te,oe,ge){A({type:c.toggleSortBy,columnId:te,desc:oe,multi:ge})},[A]),U=x(i);z.forEach(function(te){var oe=te.accessor,ge=te.canSort,le=te.disableSortBy,he=te.id,me=oe?Re(le!==!0&&void 0,$!==!0&&void 0,!0):Re(M,ge,!1);te.canSort=me,te.canSort&&(te.toggleSortBy=function(Z,ve){return Y(te.id,Z,ve)},te.clearSortBy=function(){A({type:c.clearSortBy,columnId:te.id})}),te.getSortByToggleProps=I(G().getSortByToggleProps,{instance:U(),column:te});var Ee=j.find(function(Z){return Z.id===he});te.isSorted=!!Ee,te.sortedIndex=j.findIndex(function(Z){return Z.id===he}),te.isSortedDesc=te.isSorted?Ee.desc:void 0});var ue=r.useMemo(function(){if(L||!j.length)return[f,p];var te=[],oe=j.filter(function(ge){return g.find(function(le){return le.id===ge.id})});return[function ge(le){var he=w(le,oe.map(function(me){var Ee=g.find(function(Ie){return Ie.id===me.id});if(!Ee)throw new Error("React-Table: Could not find a column with id: "+me.id+" while sorting");var Z=Ee.sortType,ve=Ne(Z)||(N||{})[Z]||Xp[Z];if(!ve)throw new Error("React-Table: Could not find a valid sortType of '"+Z+"' for column '"+me.id+"'.");return function(Ie,tt){return ve(Ie,tt,me.id,me.desc)}}),oe.map(function(me){var Ee=g.find(function(Z){return Z.id===me.id});return Ee&&Ee.sortInverted?me.desc:!me.desc}));return he.forEach(function(me){te.push(me),me.subRows&&me.subRows.length!==0&&(me.subRows=ge(me.subRows))}),he}(f),te]},[L,j,f,p,g,w,N]),Q=ue[0],ie=ue[1],pe=x(q);D(function(){pe()&&A({type:c.resetSortBy})},[L?null:s]),Object.assign(i,{preSortedRows:f,preSortedFlatRows:p,sortedRows:Q,sortedFlatRows:ie,rows:Q,flatRows:ie,setSortBy:de,toggleSortBy:Y})}function as(i,s,f){return[].concat(i).sort(function(p,g){for(var v=0;vi.pageIndex?N=g===-1?v.length>=i.pageSize:w-1),N?u({},i,{pageIndex:w}):i}if(s.type===c.setPageSize){var L=s.pageSize,M=i.pageSize*i.pageIndex;return u({},i,{pageIndex:Math.floor(M/L),pageSize:L})}}function Zp(i){var s=i.rows,f=i.autoResetPage,p=f===void 0||f,g=i.manualExpandedKey,v=g===void 0?"expanded":g,w=i.plugins,N=i.pageCount,L=i.paginateExpandedRows,M=L===void 0||L,$=i.expandSubRows,z=$===void 0||$,j=i.state,A=j.pageSize,W=j.pageIndex,G=j.expanded,V=j.globalFilter,q=j.filters,de=j.groupBy,Y=j.sortBy,U=i.dispatch,ue=i.data,Q=i.manualPagination;m(w,["useGlobalFilter","useFilters","useGroupBy","useSortBy","useExpanded"],"usePagination");var ie=x(p);D(function(){ie()&&U({type:c.resetPage})},[U,Q?null:ue,V,q,de,Y]);var pe=Q?N:Math.ceil(s.length/A),te=r.useMemo(function(){return pe>0?[].concat(new Array(pe)).fill(null).map(function(ve,Ie){return Ie}):[]},[pe]),oe=r.useMemo(function(){var ve;if(Q)ve=s;else{var Ie=A*W,tt=Ie+A;ve=s.slice(Ie,tt)}return M?ve:He(ve,{manualExpandedKey:v,expanded:G,expandSubRows:z})},[z,G,v,Q,W,A,M,s]),ge=W>0,le=pe===-1?oe.length>=A:W-1&&v.push(g.splice(L,1)[0])};g.length&&p.length;)w();return[].concat(v,g)}function Ev(i){var s=i.dispatch;i.setColumnOrder=r.useCallback(function(f){return s({type:c.setColumnOrder,columnOrder:f})},[s])}hs.pluginName="useColumnOrder",S.canResize=!0,c.columnStartResizing="columnStartResizing",c.columnResizing="columnResizing",c.columnDoneResizing="columnDoneResizing",c.resetResize="resetResize";var gs=function(i){i.getResizerProps=[Cv],i.getHeaderProps.push({style:{position:"relative"}}),i.stateReducers.push(xv),i.useInstance.push(kv),i.useInstanceBeforeDimensions.push(Rv)},Cv=function(i,s){var f=s.instance,p=s.header,g=f.dispatch,v=function(w,N){var L=!1;if(w.type==="touchstart"){if(w.touches&&w.touches.length>1)return;L=!0}var M,$,z=function(Y){var U=[];return function ue(Q){Q.columns&&Q.columns.length&&Q.columns.map(ue),U.push(Q)}(Y),U}(N).map(function(Y){return[Y.id,Y.totalWidth]}),j=L?Math.round(w.touches[0].clientX):w.clientX,A=function(){window.cancelAnimationFrame(M),M=null,g({type:c.columnDoneResizing})},W=function(){window.cancelAnimationFrame(M),M=null,g({type:c.columnResizing,clientX:$})},G=function(Y){$=Y,M||(M=window.requestAnimationFrame(W))},V={mouse:{moveEvent:"mousemove",moveHandler:function(Y){return G(Y.clientX)},upEvent:"mouseup",upHandler:function(Y){document.removeEventListener("mousemove",V.mouse.moveHandler),document.removeEventListener("mouseup",V.mouse.upHandler),A()}},touch:{moveEvent:"touchmove",moveHandler:function(Y){return Y.cancelable&&(Y.preventDefault(),Y.stopPropagation()),G(Y.touches[0].clientX),!1},upEvent:"touchend",upHandler:function(Y){document.removeEventListener(V.touch.moveEvent,V.touch.moveHandler),document.removeEventListener(V.touch.upEvent,V.touch.moveHandler),A()}}},q=L?V.touch:V.mouse,de=!!function(){if(typeof b=="boolean")return b;var Y=!1;try{var U={get passive(){return Y=!0,!1}};window.addEventListener("test",null,U),window.removeEventListener("test",null,U)}catch{Y=!1}return b=Y}()&&{passive:!1};document.addEventListener(q.moveEvent,q.moveHandler,de),document.addEventListener(q.upEvent,q.upHandler,de),g({type:c.columnStartResizing,columnId:N.id,columnWidth:N.totalWidth,headerIdWidths:z,clientX:j})};return[i,{onMouseDown:function(w){return w.persist()||v(w,p)},onTouchStart:function(w){return w.persist()||v(w,p)},style:{cursor:"col-resize"},draggable:!1,role:"separator"}]};function xv(i,s){if(s.type===c.init)return u({columnResizing:{columnWidths:{}}},i);if(s.type===c.resetResize)return u({},i,{columnResizing:{columnWidths:{}}});if(s.type===c.columnStartResizing){var f=s.clientX,p=s.columnId,g=s.columnWidth,v=s.headerIdWidths;return u({},i,{columnResizing:u({},i.columnResizing,{startX:f,headerIdWidths:v,columnWidth:g,isResizingColumn:p})})}if(s.type===c.columnResizing){var w=s.clientX,N=i.columnResizing,L=N.startX,M=N.columnWidth,$=N.headerIdWidths,z=(w-L)/M,j={};return($===void 0?[]:$).forEach(function(A){var W=A[0],G=A[1];j[W]=Math.max(G+G*z,0)}),u({},i,{columnResizing:u({},i.columnResizing,{columnWidths:u({},i.columnResizing.columnWidths,{},j)})})}return s.type===c.columnDoneResizing?u({},i,{columnResizing:u({},i.columnResizing,{startX:null,isResizingColumn:null})}):void 0}gs.pluginName="useResizeColumns";var Rv=function(i){var s=i.flatHeaders,f=i.disableResizing,p=i.getHooks,g=i.state.columnResizing,v=x(i);s.forEach(function(w){var N=Re(w.disableResizing!==!0&&void 0,f!==!0&&void 0,!0);w.canResize=N,w.width=g.columnWidths[w.id]||w.originalWidth||w.width,w.isResizing=g.isResizingColumn===w.id,N&&(w.getResizerProps=I(p().getResizerProps,{instance:v(),header:w}))})};function kv(i){var s=i.plugins,f=i.dispatch,p=i.autoResetResize,g=p===void 0||p,v=i.columns;m(s,["useAbsoluteLayout"],"useResizeColumns");var w=x(g);D(function(){w()&&f({type:c.resetResize})},[v]);var N=r.useCallback(function(){return f({type:c.resetResize})},[f]);Object.assign(i,{resetResizing:N})}var cl={position:"absolute",top:0},ys=function(i){i.getTableBodyProps.push(Fo),i.getRowProps.push(Fo),i.getHeaderGroupProps.push(Fo),i.getFooterGroupProps.push(Fo),i.getHeaderProps.push(function(s,f){var p=f.column;return[s,{style:u({},cl,{left:p.totalLeft+"px",width:p.totalWidth+"px"})}]}),i.getCellProps.push(function(s,f){var p=f.cell;return[s,{style:u({},cl,{left:p.column.totalLeft+"px",width:p.column.totalWidth+"px"})}]}),i.getFooterProps.push(function(s,f){var p=f.column;return[s,{style:u({},cl,{left:p.totalLeft+"px",width:p.totalWidth+"px"})}]})};ys.pluginName="useAbsoluteLayout";var Fo=function(i,s){return[i,{style:{position:"relative",width:s.instance.totalColumnsWidth+"px"}}]},fl={display:"inline-block",boxSizing:"border-box"},dl=function(i,s){return[i,{style:{display:"flex",width:s.instance.totalColumnsWidth+"px"}}]},ws=function(i){i.getRowProps.push(dl),i.getHeaderGroupProps.push(dl),i.getFooterGroupProps.push(dl),i.getHeaderProps.push(function(s,f){var p=f.column;return[s,{style:u({},fl,{width:p.totalWidth+"px"})}]}),i.getCellProps.push(function(s,f){var p=f.cell;return[s,{style:u({},fl,{width:p.column.totalWidth+"px"})}]}),i.getFooterProps.push(function(s,f){var p=f.column;return[s,{style:u({},fl,{width:p.totalWidth+"px"})}]})};function Ss(i){i.getTableProps.push(_v),i.getRowProps.push(pl),i.getHeaderGroupProps.push(pl),i.getFooterGroupProps.push(pl),i.getHeaderProps.push(Pv),i.getCellProps.push(Ov),i.getFooterProps.push(Tv)}ws.pluginName="useBlockLayout",Ss.pluginName="useFlexLayout";var _v=function(i,s){return[i,{style:{minWidth:s.instance.totalColumnsMinWidth+"px"}}]},pl=function(i,s){return[i,{style:{display:"flex",flex:"1 0 auto",minWidth:s.instance.totalColumnsMinWidth+"px"}}]},Pv=function(i,s){var f=s.column;return[i,{style:{boxSizing:"border-box",flex:f.totalFlexWidth?f.totalFlexWidth+" 0 auto":void 0,minWidth:f.totalMinWidth+"px",width:f.totalWidth+"px"}}]},Ov=function(i,s){var f=s.cell;return[i,{style:{boxSizing:"border-box",flex:f.column.totalFlexWidth+" 0 auto",minWidth:f.column.totalMinWidth+"px",width:f.column.totalWidth+"px"}}]},Tv=function(i,s){var f=s.column;return[i,{style:{boxSizing:"border-box",flex:f.totalFlexWidth?f.totalFlexWidth+" 0 auto":void 0,minWidth:f.totalMinWidth+"px",width:f.totalWidth+"px"}}]};function Es(i){i.stateReducers.push(Mv),i.getTableProps.push(Nv),i.getHeaderProps.push(Iv),i.getRowProps.push(Lv)}c.columnStartResizing="columnStartResizing",c.columnResizing="columnResizing",c.columnDoneResizing="columnDoneResizing",c.resetResize="resetResize",Es.pluginName="useGridLayout";var Nv=function(i,s){var f=s.instance;return[i,{style:{display:"grid",gridTemplateColumns:f.visibleColumns.map(function(p){var g;return f.state.gridLayout.columnWidths[p.id]?f.state.gridLayout.columnWidths[p.id]+"px":(g=f.state.columnResizing)!=null&&g.isResizingColumn?f.state.gridLayout.startWidths[p.id]+"px":typeof p.width=="number"?p.width+"px":p.width}).join(" ")}}]},Iv=function(i,s){var f=s.column;return[i,{id:"header-cell-"+f.id,style:{position:"sticky",gridColumn:"span "+f.totalVisibleHeaderCount}}]},Lv=function(i,s){var f=s.row;return f.isExpanded?[i,{style:{gridColumn:"1 / "+(f.cells.length+1)}}]:[i,{}]};function Mv(i,s,f,p){if(s.type===c.init)return u({gridLayout:{columnWidths:{}}},i);if(s.type===c.resetResize)return u({},i,{gridLayout:{columnWidths:{}}});if(s.type===c.columnStartResizing){var g=s.columnId,v=s.headerIdWidths,w=vl(g);if(w!==void 0){var N=p.visibleColumns.reduce(function(U,ue){var Q;return u({},U,((Q={})[ue.id]=vl(ue.id),Q))},{}),L=p.visibleColumns.reduce(function(U,ue){var Q;return u({},U,((Q={})[ue.id]=ue.minWidth,Q))},{}),M=p.visibleColumns.reduce(function(U,ue){var Q;return u({},U,((Q={})[ue.id]=ue.maxWidth,Q))},{}),$=v.map(function(U){var ue=U[0];return[ue,vl(ue)]});return u({},i,{gridLayout:u({},i.gridLayout,{startWidths:N,minWidths:L,maxWidths:M,headerIdGridWidths:$,columnWidth:w})})}return i}if(s.type===c.columnResizing){var z=s.clientX,j=i.columnResizing.startX,A=i.gridLayout,W=A.columnWidth,G=A.minWidths,V=A.maxWidths,q=A.headerIdGridWidths,de=(z-j)/W,Y={};return(q===void 0?[]:q).forEach(function(U){var ue=U[0],Q=U[1];Y[ue]=Math.min(Math.max(G[ue],Q+Q*de),V[ue])}),u({},i,{gridLayout:u({},i.gridLayout,{columnWidths:u({},i.gridLayout.columnWidths,{},Y)})})}return s.type===c.columnDoneResizing?u({},i,{gridLayout:u({},i.gridLayout,{startWidths:{},minWidths:{},maxWidths:{}})}):void 0}function vl(i){var s,f=(s=document.getElementById("header-cell-"+i))==null?void 0:s.offsetWidth;if(f!==void 0)return f}n._UNSTABLE_usePivotColumns=cs,n.actions=c,n.defaultColumn=S,n.defaultGroupByFn=os,n.defaultOrderByFn=as,n.defaultRenderer=R,n.emptyRenderer=P,n.ensurePluginOrder=m,n.flexRender=E,n.functionalUpdate=y,n.loopHooks=h,n.makePropGetter=I,n.makeRenderer=T,n.reduceHooks=O,n.safeUseLayoutEffect=_,n.useAbsoluteLayout=ys,n.useAsyncDebounce=function(i,s){s===void 0&&(s=0);var f=r.useRef({}),p=x(i),g=x(s);return r.useCallback(function(){var v=l(regeneratorRuntime.mark(function w(){var N,L,M,$=arguments;return regeneratorRuntime.wrap(function(z){for(;;)switch(z.prev=z.next){case 0:for(N=$.length,L=new Array(N),M=0;M1?s-1:0),p=1;p(e.ADD_OPTION_TO_COLUMN="add_option_to_column",e.ADD_ROW="add_row",e.UPDATE_COLUMN_TYPE="update_column_type",e.UPDATE_COLUMN_HEADER="update_column_header",e.UPDATE_CELL="update_cell",e.ADD_COLUMN_TO_LEFT="add_column_to_left",e.ADD_COLUMN_TO_RIGHT="add_column_to_right",e.DELETE_COLUMN="delete_column",e.ENABLE_RESET="enable_reset",e.LOAD_DATA="loaddata",e.REMOVE_CHECKED_ROWS="remove_checked_rows",e.RESIZE_COLUMN_WIDTHS="resize_column_widths",e))(Ce||{}),ze=(e=>(e.NUMBER="number",e.TEXT="text",e.SELECT="select",e.CHECKBOX="checkbox",e))(ze||{});const gn={ADD_COLUMN_ID:999999,CHECKBOX_COLUMN_ID:"checkbox_column"};function ji(){return"_"+Math.random().toString(36).substr(2,9)}function Lu(){return`hsl(${Math.floor(Math.random()*360)}, 95%, 90%)`}function Zh(e){let t=e.entries.map(o=>({...o,metadata:typeof o.metadata=="string"?o.metadata:JSON.stringify(o.metadata)})),n=[],r={id:gn.CHECKBOX_COLUMN_ID,label:" ",accessor:"checkbox_column",minWidth:40,width:40,dataType:"checkbox"};if(t.length>0){const o=t[0];n=Object.keys(o).map(l=>({id:l,label:l.replace(/([A-Z])/g," $1").charAt(0).toUpperCase()+l.replace(/([A-Z])/g," $1").slice(1),accessor:l,minWidth:200,dataType:"text",options:[]})),n.push(r)}return{columns:n,data:t,skipReset:!1}}function Jh(e,t){return t.entries=e.data.map(n=>{const r={...n};return delete r[gn.CHECKBOX_COLUMN_ID],r}),t}var cp={},eg=function e(t,n){if(t===n)return!0;if(t&&n&&typeof t=="object"&&typeof n=="object"){if(t.constructor!==n.constructor)return!1;var r,o,l;if(Array.isArray(t)){if(r=t.length,r!=n.length)return!1;for(o=r;o--!==0;)if(!e(t[o],n[o]))return!1;return!0}if(t.constructor===RegExp)return t.source===n.source&&t.flags===n.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===n.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===n.toString();if(l=Object.keys(t),r=l.length,r!==Object.keys(n).length)return!1;for(o=r;o--!==0;)if(!Object.prototype.hasOwnProperty.call(n,l[o]))return!1;for(o=r;o--!==0;){var u=l[o];if(!e(t[u],n[u]))return!1}return!0}return t!==t&&n!==n},fp={exports:{}},tg="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED",ng=tg,rg=ng;function dp(){}function pp(){}pp.resetWarningCache=dp;var og=function(){function e(r,o,l,u,a,d){if(d!==rg){var c=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw c.name="Invariant Violation",c}}e.isRequired=e;function t(){return e}var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:pp,resetWarningCache:dp};return n.PropTypes=n,n};fp.exports=og();var ig=fp.exports,lg=je&&je.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,o){r.__proto__=o}||function(r,o){for(var l in o)Object.prototype.hasOwnProperty.call(o,l)&&(r[l]=o[l])},e(t,n)};return function(t,n){if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),Wi=je&&je.__assign||function(){return Wi=Object.assign||function(e){for(var t,n=1,r=arguments.length;n/g,"
")}function dg(e){var t=document.createTextNode("");e.appendChild(t);var n=document.activeElement===e;if(t!==null&&t.nodeValue!==null&&n){var r=window.getSelection();if(r!==null){var o=document.createRange();o.setStart(t,t.nodeValue.length),o.collapse(!0),r.removeAllRanges(),r.addRange(o)}e instanceof HTMLElement&&e.focus()}}var pg=function(e){lg(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.lastHtml=n.props.html,n.el=typeof n.props.innerRef=="function"?{current:null}:$l.createRef(),n.getEl=function(){return(n.props.innerRef&&typeof n.props.innerRef!="function"?n.props.innerRef:n.el).current},n.emitChange=function(r){var o=n.getEl();if(o){var l=o.innerHTML;if(n.props.onChange&&l!==n.lastHtml){var u=Object.assign({},r,{target:{value:l}});n.props.onChange(u)}n.lastHtml=l}},n}return t.prototype.render=function(){var n=this,r=this.props,o=r.tagName,l=r.html,u=r.innerRef,a=sg(r,["tagName","html","innerRef"]);return $l.createElement(o||"div",Wi(Wi({},a),{ref:typeof u=="function"?function(d){u(d),n.el.current=d}:u||this.el,onInput:this.emitChange,onBlur:this.props.onBlur||this.emitChange,onKeyUp:this.props.onKeyUp||this.emitChange,onKeyDown:this.props.onKeyDown||this.emitChange,contentEditable:!this.props.disabled,dangerouslySetInnerHTML:{__html:l}}),this.props.children)},t.prototype.shouldComponentUpdate=function(n){var r=this.props,o=this.getEl();return!o||Xc(n.html)!==Xc(o.innerHTML)?!0:r.disabled!==n.disabled||r.tagName!==n.tagName||r.className!==n.className||r.innerRef!==n.innerRef||r.placeholder!==n.placeholder||!(0,fg.default)(r.style,n.style)},t.prototype.componentDidUpdate=function(){var n=this.getEl();n&&(this.props.html!==n.innerHTML&&(n.innerHTML=this.props.html),this.lastHtml=this.props.html,dg(n))},t.propTypes={html:$t.string.isRequired,onChange:$t.func,disabled:$t.bool,tagName:$t.string,className:$t.string,style:$t.object,innerRef:$t.oneOfType([$t.object,$t.func])},t}($l.Component),mp=cp.default=pg;function vg({initialValue:e,columnId:t,rowIndex:n,dataDispatch:r}){const[o,l]=ae.useState({value:e,update:!1});function u(d){const c=d.currentTarget;l({value:c.innerText,update:!1})}function a(){l(d=>({...d,update:!0}))}return ae.useEffect(()=>{l({value:e,update:!1})},[e]),ae.useEffect(()=>{o.update&&r&&r({type:Ce.UPDATE_CELL,columnId:t,rowIndex:n,value:o.value})},[o.update,t,n]),F(mp,{html:o.value&&o.value.toString()||"",onChange:u,onBlur:a,className:"data-input"})}function mg({initialValue:e,columnId:t,rowIndex:n,dataDispatch:r}){const[o,l]=ae.useState({value:e,update:!1}),u=d=>{const c=d.currentTarget;l({value:c.innerText,update:!1})},a=()=>{l(d=>({...d,update:!0}))};return ae.useEffect(()=>{l({value:e,update:!1})},[e]),ae.useEffect(()=>{o.update&&r&&r({type:Ce.UPDATE_CELL,columnId:t,rowIndex:n,value:o.value})},[o.update,t,n]),F(mp,{html:o.value&&o.value.toString()||"",onChange:u,onBlur:a,className:"data-input text-align-right"})}var Qc=function(t){return t.reduce(function(n,r){var o=r[0],l=r[1];return n[o]=l,n},{})},Kc=typeof window<"u"&&window.document&&window.document.createElement?ae.useLayoutEffect:ae.useEffect,ft="top",kt="bottom",_t="right",dt="left",Aa="auto",No=[ft,kt,_t,dt],ur="start",So="end",hg="clippingParents",hp="viewport",zr="popper",gg="reference",Yc=No.reduce(function(e,t){return e.concat([t+"-"+ur,t+"-"+So])},[]),gp=[].concat(No,[Aa]).reduce(function(e,t){return e.concat([t,t+"-"+ur,t+"-"+So])},[]),yg="beforeRead",wg="read",Sg="afterRead",Eg="beforeMain",Cg="main",xg="afterMain",Rg="beforeWrite",kg="write",_g="afterWrite",Pg=[yg,wg,Sg,Eg,Cg,xg,Rg,kg,_g];function zt(e){return e?(e.nodeName||"").toLowerCase():null}function vt(e){if(e==null)return window;if(e.toString()!=="[object Window]"){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function Ln(e){var t=vt(e).Element;return e instanceof t||e instanceof Element}function Ct(e){var t=vt(e).HTMLElement;return e instanceof t||e instanceof HTMLElement}function Da(e){if(typeof ShadowRoot>"u")return!1;var t=vt(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function Og(e){var t=e.state;Object.keys(t.elements).forEach(function(n){var r=t.styles[n]||{},o=t.attributes[n]||{},l=t.elements[n];!Ct(l)||!zt(l)||(Object.assign(l.style,r),Object.keys(o).forEach(function(u){var a=o[u];a===!1?l.removeAttribute(u):l.setAttribute(u,a===!0?"":a)}))})}function Tg(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach(function(r){var o=t.elements[r],l=t.attributes[r]||{},u=Object.keys(t.styles.hasOwnProperty(r)?t.styles[r]:n[r]),a=u.reduce(function(d,c){return d[c]="",d},{});!Ct(o)||!zt(o)||(Object.assign(o.style,a),Object.keys(l).forEach(function(d){o.removeAttribute(d)}))})}}const Ng={name:"applyStyles",enabled:!0,phase:"write",fn:Og,effect:Tg,requires:["computeStyles"]};function Ft(e){return e.split("-")[0]}var On=Math.max,Hi=Math.min,ar=Math.round;function Mu(){var e=navigator.userAgentData;return e!=null&&e.brands&&Array.isArray(e.brands)?e.brands.map(function(t){return t.brand+"/"+t.version}).join(" "):navigator.userAgent}function yp(){return!/^((?!chrome|android).)*safari/i.test(Mu())}function sr(e,t,n){t===void 0&&(t=!1),n===void 0&&(n=!1);var r=e.getBoundingClientRect(),o=1,l=1;t&&Ct(e)&&(o=e.offsetWidth>0&&ar(r.width)/e.offsetWidth||1,l=e.offsetHeight>0&&ar(r.height)/e.offsetHeight||1);var u=Ln(e)?vt(e):window,a=u.visualViewport,d=!yp()&&n,c=(r.left+(d&&a?a.offsetLeft:0))/o,R=(r.top+(d&&a?a.offsetTop:0))/l,P=r.width/o,S=r.height/l;return{width:P,height:S,top:R,right:c+P,bottom:R+S,left:c,x:c,y:R}}function Fa(e){var t=sr(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function wp(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&Da(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function Kt(e){return vt(e).getComputedStyle(e)}function Ig(e){return["table","td","th"].indexOf(zt(e))>=0}function Sn(e){return((Ln(e)?e.ownerDocument:e.document)||window.document).documentElement}function nl(e){return zt(e)==="html"?e:e.assignedSlot||e.parentNode||(Da(e)?e.host:null)||Sn(e)}function qc(e){return!Ct(e)||Kt(e).position==="fixed"?null:e.offsetParent}function Lg(e){var t=/firefox/i.test(Mu()),n=/Trident/i.test(Mu());if(n&&Ct(e)){var r=Kt(e);if(r.position==="fixed")return null}var o=nl(e);for(Da(o)&&(o=o.host);Ct(o)&&["html","body"].indexOf(zt(o))<0;){var l=Kt(o);if(l.transform!=="none"||l.perspective!=="none"||l.contain==="paint"||["transform","perspective"].indexOf(l.willChange)!==-1||t&&l.willChange==="filter"||t&&l.filter&&l.filter!=="none")return o;o=o.parentNode}return null}function Io(e){for(var t=vt(e),n=qc(e);n&&Ig(n)&&Kt(n).position==="static";)n=qc(n);return n&&(zt(n)==="html"||zt(n)==="body"&&Kt(n).position==="static")?t:n||Lg(e)||t}function za(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function ro(e,t,n){return On(e,Hi(t,n))}function Mg(e,t,n){var r=ro(e,t,n);return r>n?n:r}function Sp(){return{top:0,right:0,bottom:0,left:0}}function Ep(e){return Object.assign({},Sp(),e)}function Cp(e,t){return t.reduce(function(n,r){return n[r]=e,n},{})}var Bg=function(t,n){return t=typeof t=="function"?t(Object.assign({},n.rects,{placement:n.placement})):t,Ep(typeof t!="number"?t:Cp(t,No))};function Ag(e){var t,n=e.state,r=e.name,o=e.options,l=n.elements.arrow,u=n.modifiersData.popperOffsets,a=Ft(n.placement),d=za(a),c=[dt,_t].indexOf(a)>=0,R=c?"height":"width";if(!(!l||!u)){var P=Bg(o.padding,n),S=Fa(l),k=d==="y"?ft:dt,I=d==="y"?kt:_t,O=n.rects.reference[R]+n.rects.reference[d]-u[d]-n.rects.popper[R],h=u[d]-n.rects.reference[d],m=Io(l),y=m?d==="y"?m.clientHeight||0:m.clientWidth||0:0,x=O/2-h/2,_=P[k],D=y-S[R]-P[I],T=y/2-S[R]/2+x,E=ro(_,T,D),C=d;n.modifiersData[r]=(t={},t[C]=E,t.centerOffset=E-T,t)}}function Dg(e){var t=e.state,n=e.options,r=n.element,o=r===void 0?"[data-popper-arrow]":r;o!=null&&(typeof o=="string"&&(o=t.elements.popper.querySelector(o),!o)||wp(t.elements.popper,o)&&(t.elements.arrow=o))}const Fg={name:"arrow",enabled:!0,phase:"main",fn:Ag,effect:Dg,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function cr(e){return e.split("-")[1]}var zg={top:"auto",right:"auto",bottom:"auto",left:"auto"};function jg(e,t){var n=e.x,r=e.y,o=t.devicePixelRatio||1;return{x:ar(n*o)/o||0,y:ar(r*o)/o||0}}function Zc(e){var t,n=e.popper,r=e.popperRect,o=e.placement,l=e.variation,u=e.offsets,a=e.position,d=e.gpuAcceleration,c=e.adaptive,R=e.roundOffsets,P=e.isFixed,S=u.x,k=S===void 0?0:S,I=u.y,O=I===void 0?0:I,h=typeof R=="function"?R({x:k,y:O}):{x:k,y:O};k=h.x,O=h.y;var m=u.hasOwnProperty("x"),y=u.hasOwnProperty("y"),x=dt,_=ft,D=window;if(c){var T=Io(n),E="clientHeight",C="clientWidth";if(T===vt(n)&&(T=Sn(n),Kt(T).position!=="static"&&a==="absolute"&&(E="scrollHeight",C="scrollWidth")),T=T,o===ft||(o===dt||o===_t)&&l===So){_=kt;var B=P&&T===D&&D.visualViewport?D.visualViewport.height:T[E];O-=B-r.height,O*=d?1:-1}if(o===dt||(o===ft||o===kt)&&l===So){x=_t;var X=P&&T===D&&D.visualViewport?D.visualViewport.width:T[C];k-=X-r.width,k*=d?1:-1}}var J=Object.assign({position:a},c&&zg),ce=R===!0?jg({x:k,y:O},vt(n)):{x:k,y:O};if(k=ce.x,O=ce.y,d){var re;return Object.assign({},J,(re={},re[_]=y?"0":"",re[x]=m?"0":"",re.transform=(D.devicePixelRatio||1)<=1?"translate("+k+"px, "+O+"px)":"translate3d("+k+"px, "+O+"px, 0)",re))}return Object.assign({},J,(t={},t[_]=y?O+"px":"",t[x]=m?k+"px":"",t.transform="",t))}function Wg(e){var t=e.state,n=e.options,r=n.gpuAcceleration,o=r===void 0?!0:r,l=n.adaptive,u=l===void 0?!0:l,a=n.roundOffsets,d=a===void 0?!0:a,c={placement:Ft(t.placement),variation:cr(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:o,isFixed:t.options.strategy==="fixed"};t.modifiersData.popperOffsets!=null&&(t.styles.popper=Object.assign({},t.styles.popper,Zc(Object.assign({},c,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:u,roundOffsets:d})))),t.modifiersData.arrow!=null&&(t.styles.arrow=Object.assign({},t.styles.arrow,Zc(Object.assign({},c,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:d})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}const Hg={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:Wg,data:{}};var ni={passive:!0};function $g(e){var t=e.state,n=e.instance,r=e.options,o=r.scroll,l=o===void 0?!0:o,u=r.resize,a=u===void 0?!0:u,d=vt(t.elements.popper),c=[].concat(t.scrollParents.reference,t.scrollParents.popper);return l&&c.forEach(function(R){R.addEventListener("scroll",n.update,ni)}),a&&d.addEventListener("resize",n.update,ni),function(){l&&c.forEach(function(R){R.removeEventListener("scroll",n.update,ni)}),a&&d.removeEventListener("resize",n.update,ni)}}const Ug={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:$g,data:{}};var bg={left:"right",right:"left",bottom:"top",top:"bottom"};function vi(e){return e.replace(/left|right|bottom|top/g,function(t){return bg[t]})}var Gg={start:"end",end:"start"};function Jc(e){return e.replace(/start|end/g,function(t){return Gg[t]})}function ja(e){var t=vt(e),n=t.pageXOffset,r=t.pageYOffset;return{scrollLeft:n,scrollTop:r}}function Wa(e){return sr(Sn(e)).left+ja(e).scrollLeft}function Vg(e,t){var n=vt(e),r=Sn(e),o=n.visualViewport,l=r.clientWidth,u=r.clientHeight,a=0,d=0;if(o){l=o.width,u=o.height;var c=yp();(c||!c&&t==="fixed")&&(a=o.offsetLeft,d=o.offsetTop)}return{width:l,height:u,x:a+Wa(e),y:d}}function Xg(e){var t,n=Sn(e),r=ja(e),o=(t=e.ownerDocument)==null?void 0:t.body,l=On(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),u=On(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),a=-r.scrollLeft+Wa(e),d=-r.scrollTop;return Kt(o||n).direction==="rtl"&&(a+=On(n.clientWidth,o?o.clientWidth:0)-l),{width:l,height:u,x:a,y:d}}function Ha(e){var t=Kt(e),n=t.overflow,r=t.overflowX,o=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+o+r)}function xp(e){return["html","body","#document"].indexOf(zt(e))>=0?e.ownerDocument.body:Ct(e)&&Ha(e)?e:xp(nl(e))}function oo(e,t){var n;t===void 0&&(t=[]);var r=xp(e),o=r===((n=e.ownerDocument)==null?void 0:n.body),l=vt(r),u=o?[l].concat(l.visualViewport||[],Ha(r)?r:[]):r,a=t.concat(u);return o?a:a.concat(oo(nl(u)))}function Bu(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function Qg(e,t){var n=sr(e,!1,t==="fixed");return n.top=n.top+e.clientTop,n.left=n.left+e.clientLeft,n.bottom=n.top+e.clientHeight,n.right=n.left+e.clientWidth,n.width=e.clientWidth,n.height=e.clientHeight,n.x=n.left,n.y=n.top,n}function ef(e,t,n){return t===hp?Bu(Vg(e,n)):Ln(t)?Qg(t,n):Bu(Xg(Sn(e)))}function Kg(e){var t=oo(nl(e)),n=["absolute","fixed"].indexOf(Kt(e).position)>=0,r=n&&Ct(e)?Io(e):e;return Ln(r)?t.filter(function(o){return Ln(o)&&wp(o,r)&&zt(o)!=="body"}):[]}function Yg(e,t,n,r){var o=t==="clippingParents"?Kg(e):[].concat(t),l=[].concat(o,[n]),u=l[0],a=l.reduce(function(d,c){var R=ef(e,c,r);return d.top=On(R.top,d.top),d.right=Hi(R.right,d.right),d.bottom=Hi(R.bottom,d.bottom),d.left=On(R.left,d.left),d},ef(e,u,r));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}function Rp(e){var t=e.reference,n=e.element,r=e.placement,o=r?Ft(r):null,l=r?cr(r):null,u=t.x+t.width/2-n.width/2,a=t.y+t.height/2-n.height/2,d;switch(o){case ft:d={x:u,y:t.y-n.height};break;case kt:d={x:u,y:t.y+t.height};break;case _t:d={x:t.x+t.width,y:a};break;case dt:d={x:t.x-n.width,y:a};break;default:d={x:t.x,y:t.y}}var c=o?za(o):null;if(c!=null){var R=c==="y"?"height":"width";switch(l){case ur:d[c]=d[c]-(t[R]/2-n[R]/2);break;case So:d[c]=d[c]+(t[R]/2-n[R]/2);break}}return d}function Eo(e,t){t===void 0&&(t={});var n=t,r=n.placement,o=r===void 0?e.placement:r,l=n.strategy,u=l===void 0?e.strategy:l,a=n.boundary,d=a===void 0?hg:a,c=n.rootBoundary,R=c===void 0?hp:c,P=n.elementContext,S=P===void 0?zr:P,k=n.altBoundary,I=k===void 0?!1:k,O=n.padding,h=O===void 0?0:O,m=Ep(typeof h!="number"?h:Cp(h,No)),y=S===zr?gg:zr,x=e.rects.popper,_=e.elements[I?y:S],D=Yg(Ln(_)?_:_.contextElement||Sn(e.elements.popper),d,R,u),T=sr(e.elements.reference),E=Rp({reference:T,element:x,strategy:"absolute",placement:o}),C=Bu(Object.assign({},x,E)),B=S===zr?C:T,X={top:D.top-B.top+m.top,bottom:B.bottom-D.bottom+m.bottom,left:D.left-B.left+m.left,right:B.right-D.right+m.right},J=e.modifiersData.offset;if(S===zr&&J){var ce=J[o];Object.keys(X).forEach(function(re){var Re=[_t,kt].indexOf(re)>=0?1:-1,Ne=[ft,kt].indexOf(re)>=0?"y":"x";X[re]+=ce[Ne]*Re})}return X}function qg(e,t){t===void 0&&(t={});var n=t,r=n.placement,o=n.boundary,l=n.rootBoundary,u=n.padding,a=n.flipVariations,d=n.allowedAutoPlacements,c=d===void 0?gp:d,R=cr(r),P=R?a?Yc:Yc.filter(function(I){return cr(I)===R}):No,S=P.filter(function(I){return c.indexOf(I)>=0});S.length===0&&(S=P);var k=S.reduce(function(I,O){return I[O]=Eo(e,{placement:O,boundary:o,rootBoundary:l,padding:u})[Ft(O)],I},{});return Object.keys(k).sort(function(I,O){return k[I]-k[O]})}function Zg(e){if(Ft(e)===Aa)return[];var t=vi(e);return[Jc(e),t,Jc(t)]}function Jg(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var o=n.mainAxis,l=o===void 0?!0:o,u=n.altAxis,a=u===void 0?!0:u,d=n.fallbackPlacements,c=n.padding,R=n.boundary,P=n.rootBoundary,S=n.altBoundary,k=n.flipVariations,I=k===void 0?!0:k,O=n.allowedAutoPlacements,h=t.options.placement,m=Ft(h),y=m===h,x=d||(y||!I?[vi(h)]:Zg(h)),_=[h].concat(x).reduce(function(we,Se){return we.concat(Ft(Se)===Aa?qg(t,{placement:Se,boundary:R,rootBoundary:P,padding:c,flipVariations:I,allowedAutoPlacements:O}):Se)},[]),D=t.rects.reference,T=t.rects.popper,E=new Map,C=!0,B=_[0],X=0;X<_.length;X++){var J=_[X],ce=Ft(J),re=cr(J)===ur,Re=[ft,kt].indexOf(ce)>=0,Ne=Re?"width":"height",Pe=Eo(t,{placement:J,boundary:R,rootBoundary:P,altBoundary:S,padding:c}),He=Re?re?_t:dt:re?kt:ft;D[Ne]>T[Ne]&&(He=vi(He));var it=vi(He),Ze=[];if(l&&Ze.push(Pe[ce]<=0),a&&Ze.push(Pe[He]<=0,Pe[it]<=0),Ze.every(function(we){return we})){B=J,C=!1;break}E.set(J,Ze)}if(C)for(var Ot=I?3:1,b=function(Se){var Je=_.find(function(lt){var et=E.get(lt);if(et)return et.slice(0,Se).every(function(ht){return ht})});if(Je)return B=Je,"break"},ee=Ot;ee>0;ee--){var fe=b(ee);if(fe==="break")break}t.placement!==B&&(t.modifiersData[r]._skip=!0,t.placement=B,t.reset=!0)}}const ey={name:"flip",enabled:!0,phase:"main",fn:Jg,requiresIfExists:["offset"],data:{_skip:!1}};function tf(e,t,n){return n===void 0&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function nf(e){return[ft,_t,kt,dt].some(function(t){return e[t]>=0})}function ty(e){var t=e.state,n=e.name,r=t.rects.reference,o=t.rects.popper,l=t.modifiersData.preventOverflow,u=Eo(t,{elementContext:"reference"}),a=Eo(t,{altBoundary:!0}),d=tf(u,r),c=tf(a,o,l),R=nf(d),P=nf(c);t.modifiersData[n]={referenceClippingOffsets:d,popperEscapeOffsets:c,isReferenceHidden:R,hasPopperEscaped:P},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":R,"data-popper-escaped":P})}const ny={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:ty};function ry(e,t,n){var r=Ft(e),o=[dt,ft].indexOf(r)>=0?-1:1,l=typeof n=="function"?n(Object.assign({},t,{placement:e})):n,u=l[0],a=l[1];return u=u||0,a=(a||0)*o,[dt,_t].indexOf(r)>=0?{x:a,y:u}:{x:u,y:a}}function oy(e){var t=e.state,n=e.options,r=e.name,o=n.offset,l=o===void 0?[0,0]:o,u=gp.reduce(function(R,P){return R[P]=ry(P,t.rects,l),R},{}),a=u[t.placement],d=a.x,c=a.y;t.modifiersData.popperOffsets!=null&&(t.modifiersData.popperOffsets.x+=d,t.modifiersData.popperOffsets.y+=c),t.modifiersData[r]=u}const iy={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:oy};function ly(e){var t=e.state,n=e.name;t.modifiersData[n]=Rp({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})}const uy={name:"popperOffsets",enabled:!0,phase:"read",fn:ly,data:{}};function ay(e){return e==="x"?"y":"x"}function sy(e){var t=e.state,n=e.options,r=e.name,o=n.mainAxis,l=o===void 0?!0:o,u=n.altAxis,a=u===void 0?!1:u,d=n.boundary,c=n.rootBoundary,R=n.altBoundary,P=n.padding,S=n.tether,k=S===void 0?!0:S,I=n.tetherOffset,O=I===void 0?0:I,h=Eo(t,{boundary:d,rootBoundary:c,padding:P,altBoundary:R}),m=Ft(t.placement),y=cr(t.placement),x=!y,_=za(m),D=ay(_),T=t.modifiersData.popperOffsets,E=t.rects.reference,C=t.rects.popper,B=typeof O=="function"?O(Object.assign({},t.rects,{placement:t.placement})):O,X=typeof B=="number"?{mainAxis:B,altAxis:B}:Object.assign({mainAxis:0,altAxis:0},B),J=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,ce={x:0,y:0};if(T){if(l){var re,Re=_==="y"?ft:dt,Ne=_==="y"?kt:_t,Pe=_==="y"?"height":"width",He=T[_],it=He+h[Re],Ze=He-h[Ne],Ot=k?-C[Pe]/2:0,b=y===ur?E[Pe]:C[Pe],ee=y===ur?-C[Pe]:-E[Pe],fe=t.elements.arrow,we=k&&fe?Fa(fe):{width:0,height:0},Se=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:Sp(),Je=Se[Re],lt=Se[Ne],et=ro(0,E[Pe],we[Pe]),ht=x?E[Pe]/2-Ot-et-Je-X.mainAxis:b-et-Je-X.mainAxis,rl=x?-E[Pe]/2+Ot+et+lt+X.mainAxis:ee+et+lt+X.mainAxis,yr=t.elements.arrow&&Io(t.elements.arrow),ol=yr?_==="y"?yr.clientTop||0:yr.clientLeft||0:0,wr=(re=J==null?void 0:J[_])!=null?re:0,il=He+ht-wr-ol,ll=He+rl-wr,Lo=ro(k?Hi(it,il):it,He,k?On(Ze,ll):Ze);T[_]=Lo,ce[_]=Lo-He}if(a){var Mo,ul=_==="x"?ft:dt,al=_==="x"?kt:_t,Wt=T[D],Fn=D==="y"?"height":"width",Bo=Wt+h[ul],Ao=Wt-h[al],Sr=[ft,dt].indexOf(m)!==-1,Er=(Mo=J==null?void 0:J[D])!=null?Mo:0,Cr=Sr?Bo:Wt-E[Fn]-C[Fn]-Er+X.altAxis,Do=Sr?Wt+E[Fn]+C[Fn]-Er-X.altAxis:Ao,xr=k&&Sr?Mg(Cr,Wt,Do):ro(k?Cr:Bo,Wt,k?Do:Ao);T[D]=xr,ce[D]=xr-Wt}t.modifiersData[r]=ce}}const cy={name:"preventOverflow",enabled:!0,phase:"main",fn:sy,requiresIfExists:["offset"]};function fy(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}function dy(e){return e===vt(e)||!Ct(e)?ja(e):fy(e)}function py(e){var t=e.getBoundingClientRect(),n=ar(t.width)/e.offsetWidth||1,r=ar(t.height)/e.offsetHeight||1;return n!==1||r!==1}function vy(e,t,n){n===void 0&&(n=!1);var r=Ct(t),o=Ct(t)&&py(t),l=Sn(t),u=sr(e,o,n),a={scrollLeft:0,scrollTop:0},d={x:0,y:0};return(r||!r&&!n)&&((zt(t)!=="body"||Ha(l))&&(a=dy(t)),Ct(t)?(d=sr(t,!0),d.x+=t.clientLeft,d.y+=t.clientTop):l&&(d.x=Wa(l))),{x:u.left+a.scrollLeft-d.x,y:u.top+a.scrollTop-d.y,width:u.width,height:u.height}}function my(e){var t=new Map,n=new Set,r=[];e.forEach(function(l){t.set(l.name,l)});function o(l){n.add(l.name);var u=[].concat(l.requires||[],l.requiresIfExists||[]);u.forEach(function(a){if(!n.has(a)){var d=t.get(a);d&&o(d)}}),r.push(l)}return e.forEach(function(l){n.has(l.name)||o(l)}),r}function hy(e){var t=my(e);return Pg.reduce(function(n,r){return n.concat(t.filter(function(o){return o.phase===r}))},[])}function gy(e){var t;return function(){return t||(t=new Promise(function(n){Promise.resolve().then(function(){t=void 0,n(e())})})),t}}function yy(e){var t=e.reduce(function(n,r){var o=n[r.name];return n[r.name]=o?Object.assign({},o,r,{options:Object.assign({},o.options,r.options),data:Object.assign({},o.data,r.data)}):r,n},{});return Object.keys(t).map(function(n){return t[n]})}var rf={placement:"bottom",modifiers:[],strategy:"absolute"};function of(){for(var e=arguments.length,t=new Array(e),n=0;nF("span",{className:"font-weight-400 d-inline-block color-grey-800 border-radius-sm text-transform-capitalize",style:{backgroundColor:t,padding:"2px 6px"},children:e});function Au(e){return{50:"#fafafa",100:"#f5f5f5",200:"#eeeeee",300:"#e0e0e0",400:"#bdbdbd",500:"#9e9e9e",600:"#757575",700:"#616161",800:"#424242",900:"#212121"}[e]}const $a=()=>Fe("svg",{xmlns:"http://www.w3.org/2000/svg",className:"icon icon-tabler icon-tabler-plus",width:"44",height:"44",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"#2c3e50",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[F("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),F("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),F("line",{x1:"5",y1:"12",x2:"19",y2:"12"})]});function Ty({initialValue:e,options:t,columnId:n,rowIndex:r,dataDispatch:o}){const[l,u]=ae.useState(null),[a,d]=ae.useState(null),[c,R]=ae.useState(!1),[P,S]=ae.useState(!1),[k,I]=ae.useState(null),{styles:O,attributes:h}=kp(l,a,{placement:"bottom-start",strategy:"fixed"}),[m,y]=ae.useState({value:e,update:!1});ae.useEffect(()=>{y({value:e,update:!1})},[e]),ae.useEffect(()=>{m.update&&o&&o({type:Ce.UPDATE_CELL,columnId:n,rowIndex:r,value:m.value})},[m,n,r]),ae.useEffect(()=>{k&&P&&k.focus()},[k,P]);function x(){let C=t==null?void 0:t.find(B=>B.label===m.value);return(C==null?void 0:C.backgroundColor)??Au(200)}function _(){S(!0)}function D(C){if(C.key==="Enter"){const B=C.target;B.value!==""&&o&&o({type:Ce.ADD_OPTION_TO_COLUMN,option:B.value,backgroundColor:Lu(),columnId:n}),S(!1)}}function T(C){C.target.value!==""&&o&&o({type:Ce.ADD_OPTION_TO_COLUMN,option:C.target.value,backgroundColor:Lu(),columnId:n}),S(!1)}function E(C){y({value:C.label,update:!0}),R(!1)}return ae.useEffect(()=>{k&&P&&k.focus()},[k,P]),Fe(If,{children:[F("div",{ref:u,className:"cell-padding d-flex cursor-default align-items-center flex-1",onClick:()=>R(!0),children:m.value&&F(Ul,{value:m.value,backgroundColor:x()})}),c&&F("div",{className:"overlay",onClick:()=>R(!1)}),c&&Ba.createPortal(F("div",{className:"shadow-5 bg-white border-radius-md",ref:d,...h.popper,style:{...O.popper,zIndex:4,minWidth:200,maxWidth:320,maxHeight:400,padding:"0.75rem",overflow:"auto"},children:Fe("div",{className:"d-flex flex-wrap-wrap",style:{marginTop:"-0.5rem"},children:[t==null?void 0:t.map(C=>F("div",{className:"cursor-pointer mr-5 mt-5",onClick:()=>E(C),children:F(Ul,{value:C.label,backgroundColor:C.backgroundColor})})),P&&F("div",{className:"mr-5 mt-5 bg-grey-200 border-radius-sm",style:{width:120,padding:"2px 4px"},children:F("input",{type:"text",className:"option-input",onBlur:T,ref:I,onKeyDown:D})}),F("div",{className:"cursor-pointer mr-5 mt-5",onClick:_,children:F(Ul,{value:F("span",{className:"svg-icon-sm svg-text",children:F($a,{})}),backgroundColor:Au(200)})})]})}),document.querySelector("#popper-portal"))]})}function Ny({initialValue:e,columnId:t,rowIndex:n,dataDispatch:r}){const[o,l]=ae.useState(e);return F("div",{className:"checkbox-container",children:F("input",{type:"checkbox",checked:o,onChange:a=>{l(a.target.checked),r&&r({type:Ce.UPDATE_CELL,columnId:t,rowIndex:n,value:a.target.checked})},className:"checkbox-large"})})}function Iy({value:e,row:{index:t},column:{id:n,dataType:r,options:o},dataDispatch:l}){function u(){switch(r){case ze.TEXT:return F(vg,{initialValue:e,rowIndex:t,columnId:n,dataDispatch:l});case ze.NUMBER:return F(mg,{initialValue:e,rowIndex:t,columnId:n,dataDispatch:l});case ze.SELECT:return F(Ty,{initialValue:e,options:o,rowIndex:t,columnId:n,dataDispatch:l});case ze.CHECKBOX:return F(Ny,{initialValue:e,rowIndex:t,columnId:n,dataDispatch:l});default:return F("span",{})}}return u()}function Ly({getHeaderProps:e,dataDispatch:t}){return F("div",{...e(),className:"th noselect d-inline-block",children:F("div",{className:"th-content d-flex justify-content-center",onClick:n=>t({type:Ce.ADD_COLUMN_TO_LEFT,columnId:gn.ADD_COLUMN_ID,focus:!0}),children:F("span",{className:"svg-icon-sm svg-gray",children:F($a,{})})})})}const My=()=>Fe("svg",{width:"44",height:"44",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"#2c3e50",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[F("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),F("line",{x1:"4",y1:"6",x2:"20",y2:"6"}),F("line",{x1:"4",y1:"12",x2:"14",y2:"12"}),F("line",{x1:"4",y1:"18",x2:"18",y2:"18"})]}),By=()=>Fe("svg",{width:"44",height:"44",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"#2c3e50",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[F("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),F("rect",{x:"7",y:"3",width:"14",height:"14",rx:"2"}),F("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"})]}),Ay=()=>Fe("svg",{width:"44",height:"44",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"#2c3e50",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[F("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),F("line",{x1:"5",y1:"9",x2:"19",y2:"9"}),F("line",{x1:"5",y1:"15",x2:"19",y2:"15"}),F("line",{x1:"11",y1:"4",x2:"7",y2:"20"}),F("line",{x1:"17",y1:"4",x2:"13",y2:"20"})]});function Dy({dataType:e}){function t(n){switch(n){case ze.NUMBER:return F(Ay,{});case ze.TEXT:return F(My,{});case ze.SELECT:return F(By,{});default:return null}}return t(e)}const Fy=()=>Fe("svg",{width:"48",height:"48",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"#2c3e50",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[F("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),F("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),F("line",{x1:"18",y1:"11",x2:"12",y2:"5"}),F("line",{x1:"6",y1:"11",x2:"12",y2:"5"})]}),zy=()=>Fe("svg",{width:"44",height:"44",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"#2c3e50",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[F("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),F("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),F("line",{x1:"18",y1:"13",x2:"12",y2:"19"}),F("line",{x1:"6",y1:"13",x2:"12",y2:"19"})]});function jy({label:e,dataType:t,columnId:n,setSortBy:r,popper:o,popperRef:l,dataDispatch:u,setShowHeaderMenu:a}){const[d,c]=ae.useState(e);ae.useEffect(()=>{c(e)},[e]);const R=[{onClick:()=>{u({type:Ce.UPDATE_COLUMN_HEADER,columnId:n,label:d}),r([{id:n,desc:!1}]),a(!1)},icon:F(Fy,{}),label:"Sort ascending"},{onClick:()=>{u({type:Ce.UPDATE_COLUMN_HEADER,columnId:n,label:d}),r([{id:n,desc:!0}]),a(!1)},icon:F(zy,{}),label:"Sort descending"}];return F("div",{ref:l,style:{...o.styles.popper,zIndex:3},...o.attributes.popper,children:Fe("div",{className:"bg-white shadow-5 border-radius-md",style:{width:240},children:[F("div",{style:{paddingTop:"0.75rem",paddingLeft:"0.75rem",paddingRight:"0.75rem"}}),F("div",{style:{borderTop:`2px solid ${Au(200)}`}}),F("div",{className:"list-padding",children:R.map(P=>Fe("button",{type:"button",className:"sort-button",onMouseDown:P.onClick,children:[F("span",{className:"svg-icon svg-text icon-margin",children:P.icon}),P.label]},ji()))})]})})}function Wy({column:{id:e,created:t,label:n,dataType:r,getResizerProps:o,getHeaderProps:l},setSortBy:u,dataDispatch:a}){const[d,c]=ae.useState(t||!1),[R,P]=ae.useState(null),[S,k]=ae.useState(null),I=kp(R,S,{placement:"bottom",strategy:"absolute"});ae.useEffect(()=>{t&&c(!0)},[t]);function O(){return e===gn.ADD_COLUMN_ID?F(Ly,{dataDispatch:a,getHeaderProps:l}):e===gn.CHECKBOX_COLUMN_ID?F("div",{...l(),className:"th noselect d-inline-block",children:F("div",{className:"th-content",children:n})}):Fe(If,{children:[Fe("div",{...l(),className:"th noselect d-inline-block",children:[Fe("div",{className:"th-content",onClick:()=>c(!0),ref:P,children:[F("span",{className:"svg-icon svg-gray icon-margin",children:F(Dy,{dataType:ze[r]})}),n]}),F("div",{...o(),className:"resizer"})]}),d&&F("div",{className:"overlay",onClick:()=>c(!1)}),d&&F(jy,{label:n,dataType:r,popper:I,popperRef:k,dataDispatch:a,setSortBy:u,columnId:e.toString(),setShowHeaderMenu:c})]})}return O()}const Hy={minWidth:50,width:150,maxWidth:400,Cell:Iy,Header:Wy,sortType:"alphanumericFalsyLast"};function $y({columns:e,data:t,dispatch:n,skipReset:r}){const o=ae.useMemo(()=>({alphanumericFalsyLast(k,I,O,h){return!k.values[O]&&!I.values[O]?0:k.values[O]?I.values[O]?isNaN(k.values[O])?k.values[O].localeCompare(I.values[O]):k.values[O]-I.values[O]:h?1:-1:h?-1:1}}),[]),{getTableProps:l,getTableBodyProps:u,headerGroups:a,rows:d,prepareRow:c,totalColumnsWidth:R}=ti.useTable({columns:e,data:t,defaultColumn:Hy,dataDispatch:n,autoResetSortBy:!r,autoResetFilters:!r,autoResetRowState:!r,sortTypes:o},ti.useFlexLayout,ti.useResizeColumns,ti.useSortBy),P=Of.useCallback(({index:k,style:I})=>{var h;const O=d[k];return c(O),F("div",{...(h=O==null?void 0:O.getRowProps)==null?void 0:h.call(O,{style:I}),className:"tr",children:O.cells.map((m,y)=>ae.createElement("div",{...m.getCellProps(),key:y,className:"td",style:{width:`${m.column.width}px`}},m.render("Cell")))})},[c,d]),S=()=>F("div",{children:d.map((k,I)=>{var O;return P({index:I,style:(O=k==null?void 0:k.getRowProps)==null?void 0:O.call(k).style})})});return Fe("div",{style:{maxWidth:"100vw",overflow:"auto"},children:[F("div",{className:"table-header",children:F("div",{children:a.map((k,I)=>ae.createElement("div",{...k.getHeaderGroupProps(),key:I,className:"tr"},k.headers.map((O,h)=>ae.createElement("div",{...O.getHeaderProps(),key:h,className:"th"},O.render("Header")))))})}),Fe("div",{className:"table",children:[F("div",{children:F("div",{...u(),children:F(S,{})})}),Fe("div",{className:"tr add-row",onClick:()=>n&&n({type:Ce.ADD_ROW}),style:{marginTop:30,width:"fit-content",minWidth:"90px"},children:[F("span",{className:"svg-icon svg-gray icon-margin",children:F($a,{})}),"New"]})]})]})}var Du={exports:{}};(function(e,t){Object.defineProperty(t,"__esModule",{value:!0});function n(E){return typeof E=="object"&&!("toString"in E)?Object.prototype.toString.call(E).slice(8,-1):E}var r=typeof process=="object"&&!0;function o(E,C){if(!E)throw r?new Error("Invariant failed"):new Error(C())}t.invariant=o;var l=Object.prototype.hasOwnProperty,u=Array.prototype.splice,a=Object.prototype.toString;function d(E){return a.call(E).slice(8,-1)}var c=Object.assign||function(E,C){return R(C).forEach(function(B){l.call(C,B)&&(E[B]=C[B])}),E},R=typeof Object.getOwnPropertySymbols=="function"?function(E){return Object.keys(E).concat(Object.getOwnPropertySymbols(E))}:function(E){return Object.keys(E)};function P(E){return Array.isArray(E)?c(E.constructor(E.length),E):d(E)==="Map"?new Map(E):d(E)==="Set"?new Set(E):E&&typeof E=="object"?c(Object.create(Object.getPrototypeOf(E)),E):E}var S=function(){function E(){this.commands=c({},k),this.update=this.update.bind(this),this.update.extend=this.extend=this.extend.bind(this),this.update.isEquals=function(C,B){return C===B},this.update.newContext=function(){return new E().update}}return Object.defineProperty(E.prototype,"isEquals",{get:function(){return this.update.isEquals},set:function(C){this.update.isEquals=C},enumerable:!0,configurable:!0}),E.prototype.extend=function(C,B){this.commands[C]=B},E.prototype.update=function(C,B){var X=this,J=typeof B=="function"?{$apply:B}:B;Array.isArray(C)&&Array.isArray(J)||o(!Array.isArray(J),function(){return"update(): You provided an invalid spec to update(). The spec may not contain an array except as the value of $set, $push, $unshift, $splice or any custom command allowing an array value."}),o(typeof J=="object"&&J!==null,function(){return"update(): You provided an invalid spec to update(). The spec and every included key path must be plain objects containing one of the "+("following commands: "+Object.keys(X.commands).join(", ")+".")});var ce=C;return R(J).forEach(function(re){if(l.call(X.commands,re)){var Re=C===ce;ce=X.commands[re](J[re],ce,J,C),Re&&X.isEquals(ce,C)&&(ce=C)}else{var Ne=d(C)==="Map"?X.update(C.get(re),J[re]):X.update(C[re],J[re]),Pe=d(ce)==="Map"?ce.get(re):ce[re];(!X.isEquals(Ne,Pe)||typeof Ne>"u"&&!l.call(C,re))&&(ce===C&&(ce=P(C)),d(ce)==="Map"?ce.set(re,Ne):ce[re]=Ne)}}),ce},E}();t.Context=S;var k={$push:function(E,C,B){return O(C,B,"$push"),E.length?C.concat(E):C},$unshift:function(E,C,B){return O(C,B,"$unshift"),E.length?E.concat(C):C},$splice:function(E,C,B,X){return m(C,B),E.forEach(function(J){y(J),C===X&&J.length&&(C=P(X)),u.apply(C,J)}),C},$set:function(E,C,B){return _(B),E},$toggle:function(E,C){h(E,"$toggle");var B=E.length?P(C):C;return E.forEach(function(X){B[X]=!C[X]}),B},$unset:function(E,C,B,X){return h(E,"$unset"),E.forEach(function(J){Object.hasOwnProperty.call(C,J)&&(C===X&&(C=P(X)),delete C[J])}),C},$add:function(E,C,B,X){return T(C,"$add"),h(E,"$add"),d(C)==="Map"?E.forEach(function(J){var ce=J[0],re=J[1];C===X&&C.get(ce)!==re&&(C=P(X)),C.set(ce,re)}):E.forEach(function(J){C===X&&!C.has(J)&&(C=P(X)),C.add(J)}),C},$remove:function(E,C,B,X){return T(C,"$remove"),h(E,"$remove"),E.forEach(function(J){C===X&&C.has(J)&&(C=P(X)),C.delete(J)}),C},$merge:function(E,C,B,X){return D(C,E),R(E).forEach(function(J){E[J]!==C[J]&&(C===X&&(C=P(X)),C[J]=E[J])}),C},$apply:function(E,C){return x(E),E(C)}},I=new S;t.isEquals=I.update.isEquals,t.extend=I.extend,t.default=I.update,t.default.default=e.exports=c(t.default,t);function O(E,C,B){o(Array.isArray(E),function(){return"update(): expected target of "+n(B)+" to be an array; got "+n(E)+"."}),h(C[B],B)}function h(E,C){o(Array.isArray(E),function(){return"update(): expected spec of "+n(C)+" to be an array; got "+n(E)+". Did you forget to wrap your parameter in an array?"})}function m(E,C){o(Array.isArray(E),function(){return"Expected $splice target to be an array; got "+n(E)}),y(C.$splice)}function y(E){o(Array.isArray(E),function(){return"update(): expected spec of $splice to be an array of arrays; got "+n(E)+". Did you forget to wrap your parameters in an array?"})}function x(E){o(typeof E=="function",function(){return"update(): expected spec of $apply to be a function; got "+n(E)+"."})}function _(E){o(Object.keys(E).length===1,function(){return"Cannot have more than one key in an object with $set"})}function D(E,C){o(C&&typeof C=="object",function(){return"update(): $merge expects a spec of type 'object'; got "+n(C)}),o(E&&typeof E=="object",function(){return"update(): $merge expects a target of type 'object'; got "+n(E)})}function T(E,C){var B=d(E);o(B==="Map"||B==="Set",function(){return"update(): "+n(C)+" expects a target of type Set or Map; got "+n(B)})}})(Du,Du.exports);var Uy=Du.exports;const yt=Co(Uy),by=()=>Fe("svg",{width:"44",height:"44",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"#2c3e50",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[F("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),F("line",{x1:"4",y1:"7",x2:"20",y2:"7"}),F("line",{x1:"10",y1:"11",x2:"10",y2:"17"}),F("line",{x1:"14",y1:"11",x2:"14",y2:"17"}),F("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"}),F("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"})]});function Gy(e){var t=typeof e;return e!=null&&(t=="object"||t=="function")}var _p=Gy,Vy=typeof je=="object"&&je&&je.Object===Object&&je,Xy=Vy,Qy=Xy,Ky=typeof self=="object"&&self&&self.Object===Object&&self,Yy=Qy||Ky||Function("return this")(),Pp=Yy,qy=Pp,Zy=function(){return qy.Date.now()},Jy=Zy,e0=/\s/;function t0(e){for(var t=e.length;t--&&e0.test(e.charAt(t)););return t}var n0=t0,r0=n0,o0=/^\s+/;function i0(e){return e&&e.slice(0,r0(e)+1).replace(o0,"")}var l0=i0,u0=Pp,a0=u0.Symbol,Op=a0,lf=Op,Tp=Object.prototype,s0=Tp.hasOwnProperty,c0=Tp.toString,jr=lf?lf.toStringTag:void 0;function f0(e){var t=s0.call(e,jr),n=e[jr];try{e[jr]=void 0;var r=!0}catch{}var o=c0.call(e);return r&&(t?e[jr]=n:delete e[jr]),o}var d0=f0,p0=Object.prototype,v0=p0.toString;function m0(e){return v0.call(e)}var h0=m0,uf=Op,g0=d0,y0=h0,w0="[object Null]",S0="[object Undefined]",af=uf?uf.toStringTag:void 0;function E0(e){return e==null?e===void 0?S0:w0:af&&af in Object(e)?g0(e):y0(e)}var C0=E0;function x0(e){return e!=null&&typeof e=="object"}var R0=x0,k0=C0,_0=R0,P0="[object Symbol]";function O0(e){return typeof e=="symbol"||_0(e)&&k0(e)==P0}var T0=O0,N0=l0,sf=_p,I0=T0,cf=0/0,L0=/^[-+]0x[0-9a-f]+$/i,M0=/^0b[01]+$/i,B0=/^0o[0-7]+$/i,A0=parseInt;function D0(e){if(typeof e=="number")return e;if(I0(e))return cf;if(sf(e)){var t=typeof e.valueOf=="function"?e.valueOf():e;e=sf(t)?t+"":t}if(typeof e!="string")return e===0?e:+e;e=N0(e);var n=M0.test(e);return n||B0.test(e)?A0(e.slice(2),n?2:8):L0.test(e)?cf:+e}var F0=D0,z0=_p,bl=Jy,ff=F0,j0="Expected a function",W0=Math.max,H0=Math.min;function $0(e,t,n){var r,o,l,u,a,d,c=0,R=!1,P=!1,S=!0;if(typeof e!="function")throw new TypeError(j0);t=ff(t)||0,z0(n)&&(R=!!n.leading,P="maxWait"in n,l=P?W0(ff(n.maxWait)||0,t):l,S="trailing"in n?!!n.trailing:S);function k(T){var E=r,C=o;return r=o=void 0,c=T,u=e.apply(C,E),u}function I(T){return c=T,a=setTimeout(m,t),R?k(T):u}function O(T){var E=T-d,C=T-c,B=t-E;return P?H0(B,l-C):B}function h(T){var E=T-d,C=T-c;return d===void 0||E>=t||E<0||P&&C>=l}function m(){var T=bl();if(h(T))return y(T);a=setTimeout(m,O(T))}function y(T){return a=void 0,S&&r?k(T):(r=o=void 0,u)}function x(){a!==void 0&&clearTimeout(a),c=0,r=d=o=a=void 0}function _(){return a===void 0?u:y(bl())}function D(){var T=bl(),E=h(T);if(r=arguments,o=this,d=T,E){if(a===void 0)return I(d);if(P)return clearTimeout(a),a=setTimeout(m,t),k(d)}return a===void 0&&(a=setTimeout(m,t)),u}return D.cancel=x,D.flush=_,D}var U0=$0;const b0=Co(U0);function G0(e,t){switch(console.log("Reducer action:",t),t.type){case Ce.ADD_OPTION_TO_COLUMN:const n=e.columns.findIndex(S=>S.id===t.columnId);return yt(e,{skipReset:{$set:!0},columns:{[n]:{options:{$push:[{label:t.option,backgroundColor:t.backgroundColor}]}}}});case Ce.ADD_ROW:const r=V0(e.data);return console.log("New state after ADD_ROW:",e),yt(e,{skipReset:{$set:!0},data:{$push:[{id:r}]}});case Ce.UPDATE_COLUMN_TYPE:const o=e.columns.findIndex(S=>S.id===t.columnId);switch(t.dataType){case ze.NUMBER:return e.columns[o].dataType===ze.NUMBER?e:yt(e,{skipReset:{$set:!0},columns:{[o]:{dataType:{$set:t.dataType}}},data:{$apply:S=>S.map(k=>({...k,[t.columnId]:isNaN(k[t.columnId])?"":Number.parseInt(k[t.columnId])}))}});case ze.SELECT:if(e.columns[o].dataType===ze.SELECT)return e;{let S=[];return e.data.forEach(k=>{k[t.columnId]&&S.push({label:k[t.columnId],backgroundColor:Lu()})}),yt(e,{skipReset:{$set:!0},columns:{[o]:{dataType:{$set:t.dataType},options:{$push:S}}}})}case ze.TEXT:return e.columns[o].dataType===ze.TEXT?e:e.columns[o].dataType===ze.SELECT?yt(e,{skipReset:{$set:!0},columns:{[o]:{dataType:{$set:t.dataType}}}}):yt(e,{skipReset:{$set:!0},columns:{[o]:{dataType:{$set:t.dataType}}},data:{$apply:S=>S.map(k=>({...k,[t.columnId]:k[t.columnId]+""}))}});default:return e}case Ce.UPDATE_COLUMN_HEADER:const l=e.columns.findIndex(S=>S.id===t.columnId);return yt(e,{skipReset:{$set:!0},columns:{[l]:{label:{$set:t.label}}}});case Ce.UPDATE_CELL:return yt(e,{skipReset:{$set:!0},data:{[t.rowIndex]:{[t.columnId]:{$set:t.value}}}});case Ce.ADD_COLUMN_TO_LEFT:const u=e.columns.findIndex(S=>S.id===t.columnId);let a=ji();return yt(e,{skipReset:{$set:!0},columns:{$splice:[[u,0,{id:a,label:"Column",accessor:a,dataType:ze.TEXT,created:t.focus&&!0,options:[]}]]}});case Ce.ADD_COLUMN_TO_RIGHT:const d=e.columns.findIndex(S=>S.id===t.columnId),c=ji();return yt(e,{skipReset:{$set:!0},columns:{$splice:[[d+1,0,{id:c,label:"Column",accessor:c,dataType:ze.TEXT,created:t.focus&&!0,options:[]}]]}});case Ce.DELETE_COLUMN:const R=e.columns.findIndex(S=>S.id===t.columnId);return yt(e,{skipReset:{$set:!0},columns:{$splice:[[R,1]]}});case Ce.ENABLE_RESET:return yt(e,{skipReset:{$set:!0}});case Ce.LOAD_DATA:let P=t.columns.map(S=>S.id&&["headWord","definition","translationEquivalents","checkbox_column","notes"].includes(S.id)?{...S,visible:!0}:{...S,visible:!1});return{...e,data:t.data,columns:P,dictionary:t.dictionary};case Ce.REMOVE_CHECKED_ROWS:return{...e,data:e.data.filter(S=>!S[gn.CHECKBOX_COLUMN_ID])};case Ce.RESIZE_COLUMN_WIDTHS:return console.log("Resizing columns to",t.minWidth),{...e,columns:e.columns.map(S=>S.dataType!==ze.CHECKBOX?{...S,width:t.minWidth}:S)};default:return e}}function V0(e){let t;do t=ji();while(e.some(n=>n.id===t));return t}function X0(){const e={columns:[],data:[],skipReset:!1,dictionary:{id:"",label:"",entries:[],metadata:{}}},[t,n]=ae.useReducer(G0,e),[r,o]=ae.useState(window.innerWidth-20);ae.useEffect(()=>{n({type:Ce.ENABLE_RESET}),console.log("Data changed")},[t.data,t.columns]),ae.useEffect(()=>{if(t.data.length>0&&t.columns.length>0){const P={data:t.data,columns:t.columns},S=Jh(P,t.dictionary);Vc.postMessage({command:"updateData",data:S}),console.log("Something in data, columns, or dict changed. New count:",t.data.length)}},[t.data,t.columns,t.dictionary]),ae.useEffect(()=>{const P=k=>{const I=t.columns.filter(O=>O.visible).length;return(k-60)/(I-1)},S=b0(()=>{const k=P(window.innerWidth);n({type:Ce.RESIZE_COLUMN_WIDTHS,minWidth:k}),o(window.innerWidth-20)},100);return o(window.innerWidth-20),window.addEventListener("resize",S),()=>{S.cancel(),window.removeEventListener("resize",S)}},[n,t.columns.length]),ae.useEffect(()=>{const P=S=>{console.log("Received event:"),console.log({event:S});const k=S.data;switch(k.command){case"sendData":{let I=k.data;I.entries||(I={...I,entries:[]}),console.log("Dictionary before transformation:"),console.log({dictionary:I});const O=Zh(I);n({type:Ce.LOAD_DATA,data:O.data,columns:O.columns,dictionary:I}),window.dispatchEvent(new Event("resize"));break}case"removeConfirmed":n({type:Ce.REMOVE_CHECKED_ROWS});break}};return window.addEventListener("message",P),()=>{window.removeEventListener("message",P)}},[]);const l=()=>{const P=t.data.filter(S=>S[gn.CHECKBOX_COLUMN_ID]).length;Vc.postMessage({command:"confirmRemove",count:P})},u=t.data.some(P=>P[gn.CHECKBOX_COLUMN_ID]),[a,d]=ae.useState(""),c=P=>{d(P.target.value)},R=t.data.filter(P=>Object.values(P).some(S=>typeof S=="string"&&S.toLowerCase().includes(a.toLowerCase())));return Fe("div",{style:{width:"100%",height:"100%",padding:10,display:"flex",flexDirection:"column"},children:[Fe("div",{style:{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:40,marginTop:40,minHeight:"60px"},children:[F("h1",{children:"Dictionary"}),u&&F("button",{onClick:l,className:"remove-button",title:"Remove selected rows",children:F(by,{})})]}),F("div",{style:{width:"100%",maxWidth:"100%",boxSizing:"border-box"},children:F("input",{type:"text",placeholder:"Search...",value:a,onChange:c,className:"search-bar",style:{width:r}})}),Fe("div",{className:"app-container",children:[F("div",{className:"table-container",children:F($y,{columns:t.columns.filter(P=>P.visible),data:R,dispatch:n,skipReset:t.skipReset})}),F("div",{id:"popper-portal"})]})]})}Kh.render(F(Of.StrictMode,{children:F(X0,{})}),document.getElementById("root")); diff --git a/webviews/editable-react-table/dist/index.html b/webviews/editable-react-table/dist/index.html deleted file mode 100644 index de4065c53..000000000 --- a/webviews/editable-react-table/dist/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Dictionary Table - - - - -
- - - From 2401a61be3eeb72d68280dcfe77c71c555e4f135 Mon Sep 17 00:00:00 2001 From: dadukhankevin Date: Wed, 4 Feb 2026 14:51:25 -0600 Subject: [PATCH 11/13] fixed outdated test --- src/test/suite/mergeStrategies.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/suite/mergeStrategies.test.ts b/src/test/suite/mergeStrategies.test.ts index 442dbe92b..5879a2c77 100644 --- a/src/test/suite/mergeStrategies.test.ts +++ b/src/test/suite/mergeStrategies.test.ts @@ -38,9 +38,9 @@ suite("Merge Strategies Test Suite", () => { const strategy3 = determineStrategy(dictionaryFile); assert.strictEqual(strategy3, ConflictResolutionStrategy.JSONL); - // Test SPECIAL strategy - const smartEditsFile = "files/smart_edits.json"; - const strategy4 = determineStrategy(smartEditsFile); + // Test SPECIAL strategy (metadata.json uses special merge logic) + const specialMetadataFile = "metadata.json"; + const strategy4 = determineStrategy(specialMetadataFile); assert.strictEqual(strategy4, ConflictResolutionStrategy.SPECIAL); // Test IGNORE strategy From a946679a67e0e2309c3f764a55c540b59738b85c Mon Sep 17 00:00:00 2001 From: dadukhankevin Date: Wed, 4 Feb 2026 15:03:27 -0600 Subject: [PATCH 12/13] simpler --- .../codexCellEditorProvider/codexCellEditorProvider.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/providers/codexCellEditorProvider/codexCellEditorProvider.ts b/src/providers/codexCellEditorProvider/codexCellEditorProvider.ts index 55f91dd88..0aa988e49 100644 --- a/src/providers/codexCellEditorProvider/codexCellEditorProvider.ts +++ b/src/providers/codexCellEditorProvider/codexCellEditorProvider.ts @@ -9,17 +9,13 @@ import { EditorPostMessages, EditorReceiveMessages, GlobalMessage, - GlobalContentType, CellIdGlobalState, - CustomNotebookCellData, CodexNotebookAsJSONData, - MilestoneIndex, } from "../../../types"; import { CodexCellDocument } from "./codexDocument"; import { handleGlobalMessage, handleMessages, - performLLMCompletion, } from "./codexCellEditorMessagehandling"; import { GlobalProvider } from "../../globalProvider"; import { initializeStateStore } from "../../stateStore"; From 359303c7a84947ff8d79e33d0e53df132c4d0df2 Mon Sep 17 00:00:00 2001 From: dadukhankevin Date: Wed, 4 Feb 2026 15:10:48 -0600 Subject: [PATCH 13/13] removed unhelpful ab docs --- docs/AB_TESTING.md | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 docs/AB_TESTING.md diff --git a/docs/AB_TESTING.md b/docs/AB_TESTING.md deleted file mode 100644 index 2f0766eb7..000000000 --- a/docs/AB_TESTING.md +++ /dev/null @@ -1,39 +0,0 @@ -# A/B Testing (Overview) - -A/B testing in Codex shows two translation suggestions side‑by‑side once in a while so you can pick the better one. This helps us learn which retrieval and prompting strategies work best without slowing you down. - -## How it works -- Triggering: Tests run at random with a small probability (default 15%). -- Variants: When triggered, two candidates are generated in parallel. -- Auto‑apply: If the two results are effectively identical, we apply one automatically and no modal is shown. -- Choosing: If they differ, a simple chooser appears; click the option that reads best. Dismissing the modal after choosing just closes it. -- Frequency control: In the chooser, “See less/See more” nudges how often you’ll be asked in the future. - -## What’s being compared -- Search algorithm for few‑shot retrieval: `fts5-bm25` vs `sbs`. -- Few‑shot example format: `source-and-target` vs `target-only`. -(Model comparisons are disabled by default.) - -## Settings -- `codex-editor-extension.abTestingEnabled`: turn A/B testing on/off. -- `codex-editor-extension.abTestingProbability`: probability (0–1) for running a true A/B test. Default: `0.15` (15%). - -Change these in VS Code Settings → Extensions → Codex Editor. - -## Results & privacy -- Local log: Each choice is appended to `files/ab-test-results.jsonl` in your workspace (newline‑delimited JSON). -- Win rates: The editor may compute simple win‑rates by variant label and show them in the chooser. -- Network: If analytics posting is enabled in code, the extension may attempt to send anonymized A/B summaries to a configured endpoint. If your environment blocks network access, the extension continues without error. - -## Disable A/B testing -- Set `codex-editor-extension.abTestingEnabled` to `false`, or -- Set `codex-editor-extension.abTestingProbability` to `0`. - -## Developer pointers (optional) -- Registry and helpers: `src/utils/abTestingRegistry.ts`, `src/utils/abTestingSetup.ts`. -- Completion flow: `src/providers/translationSuggestions/llmCompletion.ts`. -- Provider ↔ webview messaging: `src/providers/codexCellEditorProvider/*`. -- Webview UI: `webviews/codex-webviews/src/CodexCellEditor/components/ABTestVariantSelector.tsx`. -- Storage/analytics helpers: `src/utils/abTestingUtils.ts`, `src/utils/abTestingAnalytics.ts`. - -That’s it — short and simple. If anything here is unclear, feel free to refine this page.