diff --git a/common/schemas/kps/README.md b/common/schemas/kps/README.md index aea03f2a5b9..87ca0a30d01 100644 --- a/common/schemas/kps/README.md +++ b/common/schemas/kps/README.md @@ -2,6 +2,19 @@ Master version: https://github.com/keymanapp/api.keyman.com/blob/master/schemas/kps/17.0/kps.xsd +See https://github.com/keymanapp/ + +## 2024-11-29 18.0 +* Version 18.0 adds: + - Files/File/Source - a remote source for the file, or 'local' +* Version 18.0 modifies: + - Files/File/Name - may be either a local file, relative to .kps (or absolute + path, not recommended) or a permanent URL on github.com +* Version 18.0 deprecates (for later removal): + - Files/File/CopyLocation + - Files/File/Description + - Files/File/FileType + ## 2023-10-19 17.0 * Version 17.0 adds: - LicenseFile - a .md file, usually named LICENSE.md @@ -10,7 +23,7 @@ Master version: https://github.com/keymanapp/api.keyman.com/blob/master/schemas/ - RelatedPackages - a list of other packages which relate to this one, or are deprecated by it - Keyboards/Keyboard/Examples - a list of typing examples for the keyboard - Keyboarsd/Keyboard/WebOSKFonts - a list of font filenames (not necessarily in package) suitable for rendering the on screen keyboard - - Keyboarsd/Keyboard/WebDisplayFonts - a list of font filenames (not necessarily in package) suitable for use with the keyboard + - Keyboards/Keyboard/WebDisplayFonts - a list of font filenames (not necessarily in package) suitable for use with the keyboard * Version 17.0 removes: - LexicalModels/LexicalModel/Version - version information is not stored in the models, but only in the package metadata (was unused) diff --git a/common/schemas/kps/kps.xsd b/common/schemas/kps/kps.xsd index 292f0c8fc6a..c722324b766 100644 --- a/common/schemas/kps/kps.xsd +++ b/common/schemas/kps/kps.xsd @@ -6,7 +6,10 @@ Supports KPS files for Keyman Developer 7+ - Expects FileVersion 7.0 + Expects FileVersion: + - 7.0 - minimum version + - 12.0 - supports lexical models, kmp.json + - 18.0 - supports Files/File/Source --> @@ -89,9 +92,10 @@ - - - + + + + diff --git a/developer/docs/help/reference/file-types/kps.md b/developer/docs/help/reference/file-types/kps.md index ef4095d9aee..26410259d48 100644 --- a/developer/docs/help/reference/file-types/kps.md +++ b/developer/docs/help/reference/file-types/kps.md @@ -17,11 +17,172 @@ Details: Distributed with keyboard: : No. This is a development file and should not be distributed. -## File format +# File format +## Schema + +The schema for .kps is documented at: +https://github.com/keymanapp/keyman/tree/master/common/schemas/kps + +## Strings The optional `` section of the file can be included to customise the text in the bootstrap installer. The default strings are found in the file: [strings.xml](https://github.com/keymanapp/keyman/blob/stable-14.0/windows/src/desktop/setup/locale/en/strings.xml). You can add your own strings for a given package which are used when compiling as a bundled installer. + + +## File.Name + +The `Name` element may be either a local filename, or a GitHub raw permanent +URL, conforming to the pattern: + +``` +https://github.com/{owner}/{repo}/raw/{commit}/[path/]{filename} +``` + +## File.Source + +The `` element documents the original source of the file, from +one of several supported sources: +* flo - fonts.languagetechnology.org +* github +* noto - in the future + +While the `` element must refer to either a local file or to a permanent +GitHub file (as recognized by the presence of a commit hash), the `` +element typically will refer to a file which may change over time. + +The `` element is supported in version 18.0 and later of .kps +format. + +### Local file system + +The `` element must not be included for files sourced from the local +file system, where `` references a file on the local filesystem. + +Note: the `` element is optional for other sources as well; the absence +of the element does not mean that the `` element is necessarily +referencing a local file -- that is determined by pattern match. + +```xml + + [relative-or-absolute-path/]{filename} + +``` + +Note: absolute paths are not recommended because they are not portable to +other computers. + +#### Example + +```xml + + Alkalami-Regular.ttf + +``` + +```xml + + ../../shared/fonts/Alkalami-Regular.ttf + +``` + +### fonts.languagetechnology.org `flo:` + +References a font by ID from fonts.languagetechnology.org. The resource must be +resolved to a permanent URL. If the `` field is missing, the compiler will +return an error, reporting the URL it discovers, so the author should be able to +paste that URL in. + +If the URL in the `` field differs from the resolved URL given by FLO, +then a hint will be issued by the compiler, allowing the author to easily update +to a new version of the resource at their convenience. It is anticipated that +this may be scripted on the keyboards repository in the future. + +```xml + + https://github.com/{owner}/{repo}/raw/{commit}/[path/]{filename} + flo:{id} + +``` + +#### Example + +```xml + + https://github.com/silnrsi/fonts/raw/b88c7af5d16681bd137156929ff8baec82526560/fonts/sil/alkalami/Alkalami-Regular.ttf + flo:alkalami + +``` + +### GitHub + +A reference to a resource located on GitHub. The resource must be resolvable to +a permanent URL. If the `` field is missing, the compiler will return an +error, reporting the URL it discovers, so the author should be able to paste +that URL in. + +If the URL in the `` field differs from the resolved URL from the +`` element, then a hint will be issued by the compiler, allowing the +author to easily update to a new version of the resource at their convenience. +It is anticipated that this may be scripted on the keyboards repository in the +future. + +```xml + + https://github.com/{owner}/{repo}/raw/{commit}/[path/]{filename} + https://github.com/{owner}/{repo}/(raw|blob)/([refs/heads/]{branch}|[refs/tags/]{tag}|{commit})/[path/]{filename} + +``` + +#### Examples + +A GitHub raw reference, from a branch: + +```xml + + https://github.com/silnrsi/fonts/raw/b88c7af5d16681bd137156929ff8baec82526560/fonts/sil/alkalami/Alkalami-Regular.ttf + https://github.com/silnrsi/fonts/raw/main/fonts/sil/alkalami/Alkalami-Regular.ttf + +``` + +Including `/refs/heads/` is also acceptable (as often found in GitHub UI): + +```xml + + https://github.com/silnrsi/fonts/raw/b88c7af5d16681bd137156929ff8baec82526560/fonts/sil/alkalami/Alkalami-Regular.ttf + https://github.com/silnrsi/fonts/raw/refs/heads/main/fonts/sil/alkalami/Alkalami-Regular.ttf + +``` + +A GitHub blob reference, as copied from a URL in GitHub: + +```xml + + https://github.com/silnrsi/fonts/raw/b88c7af5d16681bd137156929ff8baec82526560/fonts/sil/alkalami/Alkalami-Regular.ttf + https://github.com/silnrsi/fonts/blob/main/fonts/sil/alkalami/Alkalami-Regular.ttf + +``` + +A GitHub raw reference, from a commit, resolves identically. Note that as the +`` element includes a commit hash, the referenced file can never change +and so there is no real benefit in including it: + +```xml + + https://github.com/silnrsi/fonts/raw/b88c7af5d16681bd137156929ff8baec82526560/fonts/sil/alkalami/Alkalami-Regular.ttf + https://github.com/silnrsi/fonts/raw/b88c7af5d16681bd137156929ff8baec82526560/fonts/sil/alkalami/Alkalami-Regular.ttf + +``` + +### noto + +In a future version. + +## Additional file format notes + +The `CopyLocation`, `Description`, and `FileType` elements are deprecated as of +v18.0 and totally ignored by the compiler and end-user apps. + diff --git a/developer/docs/help/reference/kmc/cli/reference.md b/developer/docs/help/reference/kmc/cli/reference.md index 1de0b64c76d..763d5ad71f8 100644 --- a/developer/docs/help/reference/kmc/cli/reference.md +++ b/developer/docs/help/reference/kmc/cli/reference.md @@ -493,9 +493,8 @@ following sources: `author.bcp47.uniq` id pattern, or a keyboard id pattern (where period `.` is not permitted) * A GitHub repository or subfolder within a repository that matches the Keyman - keyboard/model repository layout. The branch name is optional, and will use - the default branch from the repository if omitted. For example, - `github:keyman-keyboards/khmer_angkor:main:/khmer_angkor.kpj` + keyboard/model repository layout. For example, + `https://github.com/keyman-keyboards/khmer_angkor/tree/main/khmer_angkor.kpj` `-o, --out-path ` diff --git a/developer/src/common/web/test-helpers/index.ts b/developer/src/common/web/test-helpers/index.ts index ec1fcaddfd5..6cea483adaa 100644 --- a/developer/src/common/web/test-helpers/index.ts +++ b/developer/src/common/web/test-helpers/index.ts @@ -119,7 +119,10 @@ export class TestCompilerCallbacks implements CompilerCallbacks { } get path(): CompilerPathCallbacks { - return path; + return { + ...path, + isAbsolute: path.win32.isAbsolute + }; } get fs(): CompilerFileSystemCallbacks { diff --git a/developer/src/common/web/utils/src/cloud-urls.ts b/developer/src/common/web/utils/src/cloud-urls.ts new file mode 100644 index 00000000000..33f9c669b9b --- /dev/null +++ b/developer/src/common/web/utils/src/cloud-urls.ts @@ -0,0 +1,18 @@ +/** + * Matches a Keyman keyboard resource, based on the permanent home page for the + * keyboard on keyman.com, `https://keyman.com/keyboards/` + */ +export const KEYMANCOM_CLOUD_URI = /^(?:http(?:s)?:\/\/)?keyman\.com\/keyboards\/(?[a-z0-9_.-]+)/i; + +/** + * Matches a `cloud:` URI for a Keyman resource (e.g. keyboard or lexical + * model) + */ +export const CLOUD_URI = /^cloud:(?.+)$/i; + + +export interface CloudUriRegexMatchArray extends RegExpMatchArray { + groups?: { + id?: string; + } +} \ No newline at end of file diff --git a/developer/src/common/web/utils/src/common-messages.ts b/developer/src/common/web/utils/src/common-messages.ts index 724dadf9cd8..46d262efaf1 100644 --- a/developer/src/common/web/utils/src/common-messages.ts +++ b/developer/src/common/web/utils/src/common-messages.ts @@ -56,4 +56,10 @@ export class CommonTypesMessages { this.ERROR_InvalidPackageFile, `Package source file is invalid: ${(o.e ?? 'unknown error').toString()}` ); + + static ERROR_UnsupportedPackageFileVersion = SevError | 0x000A; + static Error_UnsupportedPackageFileVersion = (o:{version:string}) => m( + this.ERROR_UnsupportedPackageFileVersion, + `Package source file is an unsupported version '${def(o.version)}'`, + ); }; diff --git a/developer/src/common/web/utils/src/github-urls.ts b/developer/src/common/web/utils/src/github-urls.ts new file mode 100644 index 00000000000..1a65106bf1f --- /dev/null +++ b/developer/src/common/web/utils/src/github-urls.ts @@ -0,0 +1,35 @@ +/** + * Matches only a GitHub permanent raw URI with a commit hash, without any other + * components; note hash is called branch to match other URI formats + */ +export const GITHUB_STABLE_SOURCE = /^https:\/\/github\.com\/(?[a-zA-Z0-9-]+)\/(?[\w\.-]+)\/raw\/(?[a-f0-9]{40})\/(?.+)$/; + +/** + * Matches any GitHub git resource raw 'user content' URI which can be + * translated to a permanent URI with a commit hash + */ +export const GITHUB_RAW_URI = /^https:\/\/raw\.githubusercontent\.com\/(?[a-zA-Z0-9-]+)\/(?[\w\.-]+)\/(?:refs\/(?:heads|tags)\/)?(?[^/]+)\/(?.+)$/; + +/** + * Matches any GitHub git resource raw URI which can be translated to a + * permanent URI with a commit hash + */ +export const GITHUB_URI = /^https:\/\/github\.com\/(?[a-zA-Z0-9-]+)\/(?[\w\.-]+)\/(?:raw|blob|tree)\/(?:refs\/(?:heads|tags)\/)?(?[^/]+)\/(?.+)$/; + +/** + * Matches any GitHub git resource raw URI which can be translated to a + * permanent URI with a commit hash, with the http[s] protocol optional, for + * matching user-supplied URLs. groups are: `owner`, `repo`, `branch`, and + * `path`. + */ +export const GITHUB_URI_OPTIONAL_PROTOCOL = /^(?:http(?:s)?:\/\/)?github\.com\/(?[a-zA-Z0-9-]+)\/(?[\w\.-]+)(?:\/(?:(?:raw|blob|tree)\/(?:refs\/(?:heads|tags)\/)?(?[^/]+)\/(?.*))?)?$/; + + +export interface GitHubRegexMatchArray extends RegExpMatchArray { + groups?: { + owner?: string; + repo?: string; + branch?: string; + path?: string; + } +} \ No newline at end of file diff --git a/developer/src/common/web/utils/src/index.ts b/developer/src/common/web/utils/src/index.ts index 5b4c9c0e91a..290efd5fc70 100644 --- a/developer/src/common/web/utils/src/index.ts +++ b/developer/src/common/web/utils/src/index.ts @@ -66,3 +66,6 @@ export { UrlSubpathCompilerCallback } from './utils/UrlSubpathCompilerCallback.j export { CommonTypesMessages } from './common-messages.js'; export * as SourceFilenamePatterns from './source-filename-patterns.js'; export { KeymanXMLType, KeymanXMLWriter, KeymanXMLReader } from './xml-utils.js'; + +export * as GitHubUrls from './github-urls.js'; +export * as CloudUrls from './cloud-urls.js'; \ No newline at end of file diff --git a/developer/src/common/web/utils/src/types/kps/kps-file-reader.ts b/developer/src/common/web/utils/src/types/kps/kps-file-reader.ts index 73f2280ebc6..2d55cdfd008 100644 --- a/developer/src/common/web/utils/src/types/kps/kps-file-reader.ts +++ b/developer/src/common/web/utils/src/types/kps/kps-file-reader.ts @@ -12,7 +12,8 @@ import boxXmlArray = util.boxXmlArray; import { CommonTypesMessages } from "../../common-messages.js"; import { CompilerCallbacks } from "../../compiler-callbacks.js"; import { KeymanXMLReader } from "../../xml-utils.js"; -import { KpsPackage } from "./kps-file.js"; +import { KPS_FILE_VERSIONS, KpsPackage } from "./kps-file.js"; + export class KpsFileReader { constructor(private callbacks: CompilerCallbacks) { @@ -38,6 +39,11 @@ export class KpsFileReader { return null; } + if(!KPS_FILE_VERSIONS.includes(kpsPackage.Package?.System?.FileVersion)) { + this.callbacks.reportMessage(CommonTypesMessages.Error_UnsupportedPackageFileVersion({version: kpsPackage.Package?.System?.FileVersion})); + return null; + } + return this.boxArrays(kpsPackage); } diff --git a/developer/src/common/web/utils/src/types/kps/kps-file.ts b/developer/src/common/web/utils/src/types/kps/kps-file.ts index aac583e11f3..1d9f1b1a31e 100644 --- a/developer/src/common/web/utils/src/types/kps/kps-file.ts +++ b/developer/src/common/web/utils/src/types/kps/kps-file.ts @@ -16,6 +16,21 @@ // * Strings element is not yet checked to be correct // +/** minimum supported file version, for keyboard packages */ +export const KPS_FILE_MINIMUM_VERSION_KEYBOARD_SUPPORT = '7.0'; + +/** minimum version for lexical model packages */ +export const KPS_FILE_MINIMUM_VERSION_LEXICAL_MODEL_SUPPORT = '12.0'; + +/** minimum version that supports remote references */ +export const KPS_FILE_MINIMUM_VERSION_REMOTE_SUPPORT = '18.0'; + +export const KPS_FILE_VERSIONS = [ + KPS_FILE_MINIMUM_VERSION_KEYBOARD_SUPPORT, + KPS_FILE_MINIMUM_VERSION_LEXICAL_MODEL_SUPPORT, + KPS_FILE_MINIMUM_VERSION_REMOTE_SUPPORT, +]; + export interface KpsPackage { /** * -- the root element. @@ -77,6 +92,8 @@ export interface KpsFileContentFile { CopyLocation?: string; /** @deprecated */ FileType?: string; + /** Source location, e.g. flo:, URL */ + Source?: string; } export interface KpsFileLexicalModel { diff --git a/developer/src/common/web/utils/test/TestCompilerCallbacks.ts b/developer/src/common/web/utils/test/TestCompilerCallbacks.ts index 5b36c63fe3e..a95ef60ef42 100644 --- a/developer/src/common/web/utils/test/TestCompilerCallbacks.ts +++ b/developer/src/common/web/utils/test/TestCompilerCallbacks.ts @@ -25,7 +25,10 @@ export class TestCompilerCallbacks implements CompilerCallbacks { messages: CompilerEvent[] = []; get path(): CompilerPathCallbacks { - return path; + return { + ...path, + isAbsolute: path.win32.isAbsolute + }; } get fs(): CompilerFileSystemCallbacks { diff --git a/developer/src/common/web/utils/test/fixtures/kps/error_unsupported_package_file_version_140.kps b/developer/src/common/web/utils/test/fixtures/kps/error_unsupported_package_file_version_140.kps new file mode 100644 index 00000000000..351600f58f4 --- /dev/null +++ b/developer/src/common/web/utils/test/fixtures/kps/error_unsupported_package_file_version_140.kps @@ -0,0 +1,32 @@ + + + + 15.0.266.0 + + 14.0 + + + SENĆOŦEN (Saanich Dialect) Keyboard + © 2019 National Research Council Canada + Eddie Antonio Santos + 1.0 + + + + basic.kmx + Keyboard Basic + 0 + .kmx + + + + + Basic + basic + 1.0 + + Khmer + + + + diff --git a/developer/src/common/web/utils/test/fixtures/kps/error_unsupported_package_file_version_200.kps b/developer/src/common/web/utils/test/fixtures/kps/error_unsupported_package_file_version_200.kps new file mode 100644 index 00000000000..9cc5d826bfb --- /dev/null +++ b/developer/src/common/web/utils/test/fixtures/kps/error_unsupported_package_file_version_200.kps @@ -0,0 +1,32 @@ + + + + 15.0.266.0 + + 20.0 + + + SENĆOŦEN (Saanich Dialect) Keyboard + © 2019 National Research Council Canada + Eddie Antonio Santos + 1.0 + + + + basic.kmx + Keyboard Basic + 0 + .kmx + + + + + Basic + basic + 1.0 + + Khmer + + + + diff --git a/developer/src/common/web/utils/test/fixtures/kps/error_unsupported_package_file_version_50.kps b/developer/src/common/web/utils/test/fixtures/kps/error_unsupported_package_file_version_50.kps new file mode 100644 index 00000000000..1152f917e97 --- /dev/null +++ b/developer/src/common/web/utils/test/fixtures/kps/error_unsupported_package_file_version_50.kps @@ -0,0 +1,32 @@ + + + + 15.0.266.0 + + 5.0 + + + SENĆOŦEN (Saanich Dialect) Keyboard + © 2019 National Research Council Canada + Eddie Antonio Santos + 1.0 + + + + basic.kmx + Keyboard Basic + 0 + .kmx + + + + + Basic + basic + 1.0 + + Khmer + + + + diff --git a/developer/src/common/web/utils/test/fixtures/kps/error_unsupported_package_file_version_700.kps b/developer/src/common/web/utils/test/fixtures/kps/error_unsupported_package_file_version_700.kps new file mode 100644 index 00000000000..a5e701e8e54 --- /dev/null +++ b/developer/src/common/web/utils/test/fixtures/kps/error_unsupported_package_file_version_700.kps @@ -0,0 +1,32 @@ + + + + 15.0.266.0 + + 7.0.0 + + + SENĆOŦEN (Saanich Dialect) Keyboard + © 2019 National Research Council Canada + Eddie Antonio Santos + 1.0 + + + + basic.kmx + Keyboard Basic + 0 + .kmx + + + + + Basic + basic + 1.0 + + Khmer + + + + diff --git a/developer/src/common/web/utils/test/fixtures/kps/error_unsupported_package_file_version_garbage.kps b/developer/src/common/web/utils/test/fixtures/kps/error_unsupported_package_file_version_garbage.kps new file mode 100644 index 00000000000..0f616898360 --- /dev/null +++ b/developer/src/common/web/utils/test/fixtures/kps/error_unsupported_package_file_version_garbage.kps @@ -0,0 +1,32 @@ + + + + 15.0.266.0 + + Garbage + + + SENĆOŦEN (Saanich Dialect) Keyboard + © 2019 National Research Council Canada + Eddie Antonio Santos + 1.0 + + + + basic.kmx + Keyboard Basic + 0 + .kmx + + + + + Basic + basic + 1.0 + + Khmer + + + + diff --git a/developer/src/common/web/utils/test/kps/kps-file-reader.tests.ts b/developer/src/common/web/utils/test/kps/kps-file-reader.tests.ts index 1b809f39d07..9f3f77e2181 100644 --- a/developer/src/common/web/utils/test/kps/kps-file-reader.tests.ts +++ b/developer/src/common/web/utils/test/kps/kps-file-reader.tests.ts @@ -19,6 +19,18 @@ import { CommonTypesMessages } from '../../src/common-messages.js'; const callbacks = new TestCompilerCallbacks(); describe('kps-file-reader', function () { + + this.beforeEach(function() { + callbacks.clear(); + }); + + this.afterEach(function() { + if(this.currentTest.isFailed()) { + callbacks.printMessages(); + } + }); + + it('kps-file-reader should read a valid file', function() { const input = fs.readFileSync(makePathToFixture('kps', 'khmer_angkor.kps')); const reader = new KpsFileReader(callbacks); @@ -82,4 +94,25 @@ describe('kps-file-reader', function () { assert.lengthOf(callbacks.messages, 1); assert.isTrue(callbacks.hasMessage(CommonTypesMessages.ERROR_InvalidPackageFile)); }); + + // ERROR_UnsupportedPackageFileVersion + + [ + '5.0', + '7.0.0', + '14.0', + '20.0', + 'garbage', + ].forEach(version => { + it(`should generate ERROR_UnsupportedPackageFileVersion if package source file has unsupported version '${version}'`, async function() { + version = version.replaceAll(/\./g, ''); + const input = fs.readFileSync(makePathToFixture('kps', `error_unsupported_package_file_version_${version}.kps`)); + const reader = new KpsFileReader(callbacks); + const kps = reader.read(input); + + assert.isNull(kps); + assert.lengthOf(callbacks.messages, 1); + assert.isTrue(callbacks.hasMessage(CommonTypesMessages.ERROR_UnsupportedPackageFileVersion)); + }); + }); }); diff --git a/developer/src/kmc-copy/src/KeymanProjectCopier.ts b/developer/src/kmc-copy/src/KeymanProjectCopier.ts index e463ec1b4c0..40f68fc1fc4 100644 --- a/developer/src/kmc-copy/src/KeymanProjectCopier.ts +++ b/developer/src/kmc-copy/src/KeymanProjectCopier.ts @@ -4,7 +4,7 @@ * Copy a keyboard or lexical model project */ -import { CompilerCallbacks, CompilerLogLevel, KeymanCompiler, KeymanCompilerArtifact, KeymanCompilerArtifacts, KeymanCompilerResult, KeymanDeveloperProject, KeymanDeveloperProjectOptions, KPJFileReader, KPJFileWriter, KpsFileReader, KpsFileWriter } from "@keymanapp/developer-utils"; +import { CloudUrls, GitHubUrls, CompilerCallbacks, CompilerLogLevel, KeymanCompiler, KeymanCompilerArtifact, KeymanCompilerArtifacts, KeymanCompilerResult, KeymanDeveloperProject, KeymanDeveloperProjectOptions, KPJFileReader, KPJFileWriter, KpsFileReader, KpsFileWriter } from "@keymanapp/developer-utils"; import { KeymanFileTypes } from "@keymanapp/common-types"; import { CopierMessages } from "./copier-messages.js"; @@ -86,6 +86,9 @@ export class KeymanProjectCopier implements KeymanCompiler { relocateExternalFiles: boolean = false; // TODO-COPY: support public async init(callbacks: CompilerCallbacks, options: CopierOptions): Promise { + if(!callbacks || !options) { + return false; + } this.callbacks = callbacks; this.options = options; this.cloudSource = new KeymanCloudSource(this.callbacks); @@ -97,7 +100,7 @@ export class KeymanProjectCopier implements KeymanCompiler { * artifacts on success. The files are passed in by name, and the compiler * will use callbacks as passed to the {@link KeymanProjectCopier.init} * function to read any input files by disk. - * @param source Source file or folder to copy. Can be a local file or folder, github:repo[:path], or cloud:id + * @param source Source file or folder to copy. Can be a local file or folder, https://github.com/.../repo[/path], or cloud:id * @returns Binary artifacts on success, null on failure. */ public async run(source: string): Promise { @@ -151,10 +154,10 @@ export class KeymanProjectCopier implements KeymanCompiler { * @returns path to .kpj (either local or remote) */ private async getSourceProject(source: string): Promise { - if(source.startsWith('github:')) { - // `github:owner/repo:path/to/kpj`, referencing a .kpj file + if(source.match(GitHubUrls.GITHUB_URI_OPTIONAL_PROTOCOL) || source.match(GitHubUrls.GITHUB_RAW_URI)) { + // `[https://]github.com/owner/repo/[tree|blob|raw]/[refs/...]/branch/path/to/kpj`, referencing a .kpj file return await this.getGitHubSourceProject(source); - } else if(source.startsWith('cloud:')) { + } else if(source.match(CloudUrls.CLOUD_URI) || source.match(CloudUrls.KEYMANCOM_CLOUD_URI)) { // `cloud:id`, referencing a Keyman Cloud keyboard return await this.getCloudSourceProject(source); } else if(this.callbacks.fs.existsSync(source) && source.endsWith(KeymanFileTypes.Source.Project) && !this.callbacks.isDirectory(source)) { @@ -194,64 +197,69 @@ export class KeymanProjectCopier implements KeymanCompiler { /** * Resolve path to GitHub source, which must be in the following format: - * `github:owner/repo[:branch]:path/to/kpj` + * `[https://]github.com/owner/repo/branch/path/to/kpj` * The path must be fully qualified, referencing the .kpj file; it * cannot just be the folder where the .kpj is found * @param source * @returns a promise: GitHub reference to the source for the keyboard, or null on failure */ private async getGitHubSourceProject(source: string): Promise { - const parts = source.split(':'); - if(parts.length < 3 || parts.length > 4 || !parts[1].match(/^[a-z0-9-]+\/[a-z0-9._-]+$/i)) { - // https://stackoverflow.com/questions/59081778/rules-for-special-characters-in-github-repository-name - this.callbacks.reportMessage(CopierMessages.Error_InvalidGitHubSource({source})); - return null; + const parts: GitHubUrls.GitHubRegexMatchArray = + GitHubUrls.GITHUB_URI_OPTIONAL_PROTOCOL.exec(source) ?? + GitHubUrls.GITHUB_RAW_URI.exec(source); + if(!parts) { + throw new Error('Expected GITHUB_URI_OPTIONAL_PROTOCOL or GITHUB_RAW_URI to match'); } - const origin = parts[1].split('/'); - - const ref: GitHubRef = new GitHubRef({ - owner: origin[0], - repo: origin[1], - branch: null, - path: null - }); + const ref: GitHubRef = new GitHubRef(parts); - if(parts.length == 4) { - ref.branch = parts[2]; - ref.path = parts[3]; - } else { + if(!ref.branch) { ref.branch = await this.cloudSource.getDefaultBranchFromGitHub(ref); if(!ref.branch) { this.callbacks.reportMessage(CopierMessages.Error_CouldNotFindDefaultBranchOnGitHub({ref: ref.toString()})); return null; } - ref.path = parts[2]; - + } + if(!ref.path) { + ref.path = '/'; } if(!ref.path.startsWith('/')) { ref.path = '/' + ref.path; } + if(ref.path != '/') { + if(!ref.path.endsWith('.kpj')) { + // Assumption, project filename matches folder name + if(ref.path.endsWith('/')) { + ref.path = ref.path.substring(0, ref.path.length-1); + } + ref.path = ref.path + '/' + this.callbacks.path.basename(ref.path) + '.kpj'; + } + } + return ref; } /** * Resolve path to Keyman Cloud source (which is on GitHub), which must be in * the following format: - * `cloud:keyboard_id|model_id` + * `cloud:keyboard_id`, or + * `cloud:model_id`, or + * `https://keyman.com/keyboards/keyboard_id` * The `keyboard_id` parameter should be a valid id (a-z0-9_), as found at - * https://keyman.com/keyboards; alternativel if it is a model_id, it should + * https://keyman.com/keyboards; alternatively if it is a model_id, it should * have the format author.bcp47.uniq * @param source * @returns a promise: GitHub reference to the source for the keyboard, or null on failure */ private async getCloudSourceProject(source: string): Promise { - const parts = source.split(':'); - const id = parts[1]; + const parts = CloudUrls.CLOUD_URI.exec(source) ?? CloudUrls.KEYMANCOM_CLOUD_URI.exec(source); + if(!parts) { + throw new Error('Expected CLOUD_URI or KEYMANCOM_CLOUD_URI to match'); + } + const id: string = parts.groups.id; const isModel = /^[^.]+\.[^.]+\.[^.]+$/.test(id); - const remote = await this.cloudSource.getSourceFromKeymanCloud(id, isModel); if(!remote) { return null; @@ -687,4 +695,11 @@ export class KeymanProjectCopier implements KeymanCompiler { return true; } /* c8 ignore stop */ + + /** @internal */ + public unitTestEndPoints = { + getGithubSourceProject: this.getGitHubSourceProject.bind(this), + getCloudSourceProject: this.getCloudSourceProject.bind(this) + }; + } diff --git a/developer/src/kmc-copy/src/cloud.ts b/developer/src/kmc-copy/src/cloud.ts index aeb5171895f..7b3ef1ff119 100644 --- a/developer/src/kmc-copy/src/cloud.ts +++ b/developer/src/kmc-copy/src/cloud.ts @@ -3,7 +3,7 @@ * * GitHub and Keyman Cloud interface wrappers */ -import { CompilerCallbacks } from "@keymanapp/developer-utils"; +import { CompilerCallbacks, GitHubUrls } from "@keymanapp/developer-utils"; import { CopierMessages } from "./copier-messages.js"; import { KeymanFileTypes } from "@keymanapp/common-types"; @@ -12,17 +12,24 @@ export class GitHubRef { public repo: string; public branch: string; public path: string; - constructor(owner: string | GitHubRef, repo?: string, branch?: string, path?: string) { + constructor(owner: string | GitHubRef | GitHubUrls.GitHubRegexMatchArray, repo?: string, branch?: string, path?: string) { if(typeof owner == 'string') { this.owner = owner; this.repo = repo; this.branch = branch; this.path = path; - } else { + } else if("groups" in owner) { + this.owner = owner.groups.owner; + this.repo = owner.groups.repo; + this.branch = owner.groups.branch; + this.path = owner.groups.path; + } else if("owner" in owner) { this.owner = owner.owner; this.repo = owner.repo; this.branch = owner.branch; this.path = owner.path; + } else { + throw new Error(`Unrecognized GitHubRef '${owner}'`) } } toString() { diff --git a/developer/src/kmc-copy/src/copier-messages.ts b/developer/src/kmc-copy/src/copier-messages.ts index 02294a90815..78a948ec79b 100644 --- a/developer/src/kmc-copy/src/copier-messages.ts +++ b/developer/src/kmc-copy/src/copier-messages.ts @@ -117,18 +117,7 @@ export class CopierMessages { `Dry run requested. No changes have been saved` ); - static ERROR_InvalidGitHubSource = SevError | 0x0011; - static Error_InvalidGitHubSource = (o:{source: string}) => m( - this.ERROR_InvalidGitHubSource, - `Source project specification '${def(o.source)}' is not a valid GitHub reference`, - `The source project specification for GitHub sources must match the pattern: - github:\\[:\\]:\\ - The path must include the .kpj filename and may optionally begin with a forward slash. - The following are valid examples: - github:keymanapp/keyboards:master:release/k/khmer_angkor/khmer_angkor.kpj - github:keymanapp/keyboards:release/k/khmer_angkor/khmer_angkor.kpj - github:keymanapp/keyboards:/release/k/khmer_angkor/khmer_angkor.kpj` - ); + // 0x0011 unused static ERROR_CannotDownloadFolderFromGitHub = SevError | 0x0012; static Error_CannotDownloadFolderFromGitHub = (o:{ref: string, message?: string, cause?: string}) => m( diff --git a/developer/src/kmc-copy/test/copier.tests.ts b/developer/src/kmc-copy/test/copier.tests.ts index 3cf9e4c0ee6..6d583862aea 100644 --- a/developer/src/kmc-copy/test/copier.tests.ts +++ b/developer/src/kmc-copy/test/copier.tests.ts @@ -12,6 +12,7 @@ import { assert } from 'chai'; import { TestCompilerCallbacks } from '@keymanapp/developer-test-helpers'; import { KeymanProjectCopier } from '../src/KeymanProjectCopier.js'; import { makePathToFixture } from './helpers/index.js'; +import { GitHubRef } from './cloud.js'; const { TEST_SAVE_ARTIFACTS, TEST_SAVE_FIXTURES } = env; let outputRoot: string = '/an/imaginary/root/'; @@ -374,7 +375,7 @@ describe('KeymanProjectCopier', function() { // armenian_mnemonic selected because (a) small, and (b) has v2.0 project, so // that exercises the folder retrieval as well - const result = await copier.run('github:keymanapp/keyboards:release/a/armenian_mnemonic/armenian_mnemonic.kpj'); + const result = await copier.run('github.com/keymanapp/keyboards/tree/master/release/a/armenian_mnemonic/armenian_mnemonic.kpj'); // We should have no messages and a successful result assert.isOk(result); @@ -416,6 +417,81 @@ describe('KeymanProjectCopier', function() { }); }); + // Keyman Cloud patterns + + const cloud_khmer_angkor: GitHubRef = { branch: 'master', owner: 'keymanapp', repo: 'keyboards', path: '/release/k/khmer_angkor/khmer_angkor.kpj' }; + const cloud_nrc_en_mtnt: GitHubRef = { branch: 'master', owner: 'keymanapp', repo: 'lexical-models', path: '/release/nrc/nrc.en.mtnt/nrc.en.mtnt.kpj' }; + const cloud_urls: [string,GitHubRef][] = [ + ['cloud:khmer_angkor', cloud_khmer_angkor], + ['https://keyman.com/keyboards/khmer_angkor', cloud_khmer_angkor], + ['https://keyman.com/keyboards/khmer_angkor/', cloud_khmer_angkor], + ['keyman.com/keyboards/khmer_angkor/', cloud_khmer_angkor], + ['http://keyman.com/keyboards/khmer_angkor#abc', cloud_khmer_angkor], + ['cloud:nrc.en.mtnt', cloud_nrc_en_mtnt], + ]; + + cloud_urls.forEach(url => { + it(`should parse URL '${url[0]}' and figure out the .kpj`, async function() { + // url --> + const copier = new KeymanProjectCopier(); + assert.isTrue(await copier.init(callbacks, { + dryRun: false, + outPath: '' + })); + + const ref = await copier.unitTestEndPoints.getCloudSourceProject(url[0]); + assert.isNotNull(ref); + assert.deepEqual(ref, url[1]); + }); + }) + + + // GitHub patterns that should match as inputs for kmc-copy source + + const armenian_mnemonic_urls = [ { + branch: 'master', urls: [ + 'github.com/keymanapp/keyboards/tree/master/release/a/armenian_mnemonic', + 'http://github.com/keymanapp/keyboards/tree/master/release/a/armenian_mnemonic', + 'https://github.com/keymanapp/keyboards/tree/master/release/a/armenian_mnemonic', + 'https://github.com/keymanapp/keyboards/tree/master/release/a/armenian_mnemonic/', + 'https://github.com/keymanapp/keyboards/tree/refs/heads/master/release/a/armenian_mnemonic', + 'https://github.com/keymanapp/keyboards/tree/refs/heads/master/release/a/armenian_mnemonic/', + 'https://github.com/keymanapp/keyboards/raw/refs/heads/master/release/a/armenian_mnemonic/armenian_mnemonic.kpj', + 'https://github.com/keymanapp/keyboards/raw/master/release/a/armenian_mnemonic/armenian_mnemonic.kpj', + 'https://github.com/keymanapp/keyboards/blob/refs/heads/master/release/a/armenian_mnemonic/armenian_mnemonic.kpj', + 'https://github.com/keymanapp/keyboards/blob/master/release/a/armenian_mnemonic/armenian_mnemonic.kpj', + + // And similar patterns for raw.githubusercontent.com + + 'https://raw.githubusercontent.com/keymanapp/keyboards/refs/heads/master/release/a/armenian_mnemonic/armenian_mnemonic.kpj', + 'https://raw.githubusercontent.com/keymanapp/keyboards/master/release/a/armenian_mnemonic/armenian_mnemonic.kpj', + ]}, { + branch: '78b6f98e5db4a249cc4231f8744f5fe4e5fd29f2', urls: [ + 'https://github.com/keymanapp/keyboards/blob/78b6f98e5db4a249cc4231f8744f5fe4e5fd29f2/release/a/armenian_mnemonic/armenian_mnemonic.kpj', + 'https://github.com/keymanapp/keyboards/tree/78b6f98e5db4a249cc4231f8744f5fe4e5fd29f2/release/a/armenian_mnemonic', + 'https://github.com/keymanapp/keyboards/tree/78b6f98e5db4a249cc4231f8744f5fe4e5fd29f2/release/a/armenian_mnemonic/', + 'https://raw.githubusercontent.com/keymanapp/keyboards/78b6f98e5db4a249cc4231f8744f5fe4e5fd29f2/release/a/armenian_mnemonic/armenian_mnemonic.kpj', + ]}]; + + armenian_mnemonic_urls.forEach(({branch,urls}) => urls.forEach(url => { + it(`should parse URL '${url}' and figure out the .kpj`, async function() { + // url --> + const copier = new KeymanProjectCopier(); + assert.isTrue(await copier.init(callbacks, { + dryRun: false, + outPath: '' + })); + + const ref = await copier.unitTestEndPoints.getGithubSourceProject(url); + assert.deepEqual(ref, { + branch, + owner: 'keymanapp', + repo: 'keyboards', + path: '/release/a/armenian_mnemonic/armenian_mnemonic.kpj' + }); + }); + })); + // TODO-COPY: additional tests it.skip('should copy a disorganized project into current structure', async function() {}); it.skip('should copy a standalone .kmn into a new project', async function() {}); diff --git a/developer/src/kmc-copy/test/fixtures/online/api.keyman.com/#keyboard#khmer_angkor b/developer/src/kmc-copy/test/fixtures/online/api.keyman.com/#keyboard#khmer_angkor new file mode 100644 index 00000000000..17b495a24bb --- /dev/null +++ b/developer/src/kmc-copy/test/fixtures/online/api.keyman.com/#keyboard#khmer_angkor @@ -0,0 +1,65 @@ +{ + "id": "khmer_angkor", + "name": "Khmer Angkor", + "license": "mit", + "authorName": "Makara Sok", + "authorEmail": "makara_sok@sil.org", + "description": "

Khmer Unicode keyboard layout based on the NiDA keyboard layout.\nAutomatically corrects many common keying errors.

", + "languages": { + "km": { + "examples": [ + { + "keys": "x j m E r", + "note": "Name of language", + "text": "\u1781\u17d2\u1798\u17c2\u179a" + } + ], + "font": { + "family": "Khmer Mondulkiri", + "source": [ + "Mondulkiri-R.ttf" + ] + }, + "oskFont": { + "family": "KbdKhmr", + "source": [ + "KbdKhmr.ttf" + ] + }, + "languageName": "Khmer", + "displayName": "Khmer" + } + }, + "lastModifiedDate": "2024-07-03T15:47:38.000Z", + "packageFilename": "khmer_angkor.kmp", + "packageFileSize": 4259005, + "jsFilename": "khmer_angkor.js", + "jsFileSize": 70494, + "packageIncludes": [ + "visualKeyboard", + "welcome", + "fonts", + "documentation" + ], + "version": "1.5", + "encodings": [ + "unicode" + ], + "platformSupport": { + "windows": "full", + "macos": "full", + "linux": "full", + "desktopWeb": "full", + "ios": "full", + "android": "full", + "mobileWeb": "full" + }, + "minKeymanVersion": "10.0", + "sourcePath": "release/k/khmer_angkor", + "helpLink": "https://help.keyman.com/keyboard/khmer_angkor", + "related": { + "khmer10": { + "deprecates": true + } + } +} \ No newline at end of file diff --git a/developer/src/kmc-copy/test/fixtures/online/api.keyman.com/#model#nrc.en.mtnt b/developer/src/kmc-copy/test/fixtures/online/api.keyman.com/#model#nrc.en.mtnt new file mode 100644 index 00000000000..bee31a4fe4a --- /dev/null +++ b/developer/src/kmc-copy/test/fixtures/online/api.keyman.com/#model#nrc.en.mtnt @@ -0,0 +1,23 @@ +{ + "languages": [ + "en", + "en-us", + "en-ca" + ], + "id": "nrc.en.mtnt", + "name": "English language model mined from MTNT", + "license": "mit", + "authorName": "Eddie Antonio Santos", + "authorEmail": "easantos@ualberta.ca", + "description": "

A unigram language model for English derived from the MTNT corpus http://www.cs.cmu.edu/~pmichel1/mtnt/. This corpus itself is gathered from Reddit, so it is unfiltered internet discussion. This is not humanity at its prettiest!

", + "lastModifiedDate": "2024-09-16T01:05:45.000Z", + "packageFilename": "https://keyman.com/go/package/download/model/nrc.en.mtnt?version=0.3.3&update=1", + "packageFileSize": 332955, + "jsFilename": "https://downloads.keyman.com/models/nrc.en.mtnt/0.3.3/nrc.en.mtnt.model.js", + "jsFileSize": 2713050, + "packageIncludes": [], + "version": "0.3.3", + "minKeymanVersion": "12.0", + "helpLink": "https://help.keyman.com/model/nrc.en.mtnt", + "sourcePath": "release/nrc/nrc.en.mtnt" +} \ No newline at end of file diff --git a/developer/src/kmc-keyboard-info/src/keyboard-info-compiler.ts b/developer/src/kmc-keyboard-info/src/keyboard-info-compiler.ts index 74c06d5d129..f21ca03a5cf 100644 --- a/developer/src/kmc-keyboard-info/src/keyboard-info-compiler.ts +++ b/developer/src/kmc-keyboard-info/src/keyboard-info-compiler.ts @@ -159,7 +159,7 @@ export class KeyboardInfoCompiler implements KeymanCompiler { // Errors will have been emitted by KmpCompiler return null; } - const kmpJsonData = kmpCompiler.transformKpsToKmpObject(sources.kpsFilename); + const { kmpJsonData } = await kmpCompiler.transformKpsToKmpObject(sources.kpsFilename) ?? {}; if(!kmpJsonData) { // Errors will have been emitted by KmpCompiler return null; diff --git a/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/source/khmer_angkor.kps b/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/source/khmer_angkor.kps index 50213c4488d..7021dc51635 100644 --- a/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/source/khmer_angkor.kps +++ b/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/source/khmer_angkor.kps @@ -53,12 +53,6 @@ 0 .kmx - - welcome\keyboard_layout.png - File keyboard_layout.png - 0 - .png - welcome\welcome.htm File welcome.htm @@ -66,59 +60,29 @@ .htm - ..\shared\fonts\khmer\mondulkiri\FONTLOG.txt + ..\..\shared\fonts\khmer\mondulkiri\FONTLOG.txt File FONTLOG.txt 0 .txt - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-B.ttf - Font Khmer Mondulkiri Bold - 0 - .ttf - - - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-BI.ttf - Font Khmer Mondulkiri Bold Italic - 0 - .ttf - - - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-I.ttf - Font Khmer Mondulkiri Italic - 0 - .ttf - - - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf + ..\..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf Font Khmer Mondulkiri 0 .ttf - ..\shared\fonts\khmer\mondulkiri\OFL.txt + ..\..\shared\fonts\khmer\mondulkiri\OFL.txt File OFL.txt 0 .txt - ..\shared\fonts\khmer\mondulkiri\OFL-FAQ.txt + ..\..\shared\fonts\khmer\mondulkiri\OFL-FAQ.txt File OFL-FAQ.txt 0 .txt - - welcome\KAK_Documentation_EN.pdf - File KAK_Documentation_EN.pdf - 0 - .pdf - - - welcome\KAK_Documentation_KH.pdf - File KAK_Documentation_KH.pdf - 0 - .pdf - readme.htm File readme.htm @@ -126,13 +90,7 @@ .htm - welcome\image002.png - File image002.png - 0 - .png - - - ..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf + ..\..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf Font KhmerBusraKbd 0 .ttf @@ -149,8 +107,8 @@ Khmer Angkor khmer_angkor 1.3 - ..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf + ..\..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf + ..\..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf Central Khmer (Khmer, Cambodia) diff --git a/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/source/readme.htm b/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/source/readme.htm new file mode 100644 index 00000000000..36a95d92482 --- /dev/null +++ b/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/source/readme.htm @@ -0,0 +1,23 @@ + + + + + Khmer Angkor Keyboard + + + + +

Khmer Angkor Keyboard

+ +

+ With the users' pitfall in typing Khmer words in mind, Khmer Angkor focuses on the unification of the character orders and spelling rules. These make Khmer Angkor uniquely different from any other keyboards. Khmer Angkor's keyboard layouts were adopted from NiDA keyboard which is widely used at the present. +

+ +

© 2015-2022 SIL International

+ + + diff --git a/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/source/splash.gif b/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/source/splash.gif new file mode 100644 index 00000000000..93b44e9d16e Binary files /dev/null and b/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/source/splash.gif differ diff --git a/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/source/welcome/welcome.htm b/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/source/welcome/welcome.htm new file mode 100644 index 00000000000..124d9d20e66 --- /dev/null +++ b/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/source/welcome/welcome.htm @@ -0,0 +1,54 @@ + + + + Khmer Angkor Keyboard + + +

Khmer Angkor Keyboard

+ +

+ Khmer Angkor Keyboard is an OpenSource. It is free and more than just a user you can also contribute to the betterment of the keyboard if you would like to. +

+ +

Keyboards

+

+ With the users' pitfall in typing Khmer words in mind, Khmer Angkor focuses on the unification of the character orders and spelling rules. These make Khmer Angkor uniquely different from any other keyboards. Khmer Angkor's keyboard layouts were adopted from NiDA keyboard which is widely used at the present. + Here is the keyboard layout: +

+ + + + +

You can simply use Khmer Angkor as you would for any NiDA based keyboard. You may type a word in an order of how it is spelled, not how it appears to be, especially when the vowel is to the left of the consonant. For example, to type the word “តែ” which means ‘tea’, one should type the consonant first and then the vowel (i.e. press key “T” and then “Shift E”).

+ +

The order of characters is:

+

Consonant + Subscript(s) + Consonant Shifter + Vowel + Diacritic

+ +

For more details on the Khmer Angkor Keyboard, please find the documentation included in this package.

+ +

Keyboard Documentations

+

For the documentation in English, click here.

+

For the documentation in Khmer, click here.

+ +

Fonts

+

+ To get Khmer fonts, you may visit one of the three sources below: +

+ +

More Information

+

+ +

+ + + + + \ No newline at end of file diff --git a/developer/src/kmc-keyboard-info/test/fixtures/no-kmp/source/khmer_angkor.kps b/developer/src/kmc-keyboard-info/test/fixtures/no-kmp/source/khmer_angkor.kps index 50213c4488d..e6a3d0279ab 100644 --- a/developer/src/kmc-keyboard-info/test/fixtures/no-kmp/source/khmer_angkor.kps +++ b/developer/src/kmc-keyboard-info/test/fixtures/no-kmp/source/khmer_angkor.kps @@ -41,24 +41,12 @@ 0 .js
- - ..\build\khmer_angkor.kvk - File khmer_angkor.kvk - 0 - .kvk - ..\build\khmer_angkor.kmx Keyboard Khmer Angkor 0 .kmx - - welcome\keyboard_layout.png - File keyboard_layout.png - 0 - .png - welcome\welcome.htm File welcome.htm @@ -66,59 +54,29 @@ .htm - ..\shared\fonts\khmer\mondulkiri\FONTLOG.txt + ..\..\shared\fonts\khmer\mondulkiri\FONTLOG.txt File FONTLOG.txt 0 .txt - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-B.ttf - Font Khmer Mondulkiri Bold - 0 - .ttf - - - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-BI.ttf - Font Khmer Mondulkiri Bold Italic - 0 - .ttf - - - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-I.ttf - Font Khmer Mondulkiri Italic - 0 - .ttf - - - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf + ..\..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf Font Khmer Mondulkiri 0 .ttf - ..\shared\fonts\khmer\mondulkiri\OFL.txt + ..\..\shared\fonts\khmer\mondulkiri\OFL.txt File OFL.txt 0 .txt - ..\shared\fonts\khmer\mondulkiri\OFL-FAQ.txt + ..\..\shared\fonts\khmer\mondulkiri\OFL-FAQ.txt File OFL-FAQ.txt 0 .txt - - welcome\KAK_Documentation_EN.pdf - File KAK_Documentation_EN.pdf - 0 - .pdf - - - welcome\KAK_Documentation_KH.pdf - File KAK_Documentation_KH.pdf - 0 - .pdf - readme.htm File readme.htm @@ -126,13 +84,7 @@ .htm - welcome\image002.png - File image002.png - 0 - .png - - - ..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf + ..\..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf Font KhmerBusraKbd 0 .ttf @@ -149,8 +101,8 @@ Khmer Angkor khmer_angkor 1.3 - ..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf + ..\..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf + ..\..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf Central Khmer (Khmer, Cambodia) diff --git a/developer/src/kmc-keyboard-info/test/fixtures/no-kmp/source/readme.htm b/developer/src/kmc-keyboard-info/test/fixtures/no-kmp/source/readme.htm new file mode 100644 index 00000000000..36a95d92482 --- /dev/null +++ b/developer/src/kmc-keyboard-info/test/fixtures/no-kmp/source/readme.htm @@ -0,0 +1,23 @@ + + + + + Khmer Angkor Keyboard + + + + +

Khmer Angkor Keyboard

+ +

+ With the users' pitfall in typing Khmer words in mind, Khmer Angkor focuses on the unification of the character orders and spelling rules. These make Khmer Angkor uniquely different from any other keyboards. Khmer Angkor's keyboard layouts were adopted from NiDA keyboard which is widely used at the present. +

+ +

© 2015-2022 SIL International

+ + + diff --git a/developer/src/kmc-keyboard-info/test/fixtures/no-kmp/source/splash.gif b/developer/src/kmc-keyboard-info/test/fixtures/no-kmp/source/splash.gif new file mode 100644 index 00000000000..93b44e9d16e Binary files /dev/null and b/developer/src/kmc-keyboard-info/test/fixtures/no-kmp/source/splash.gif differ diff --git a/developer/src/kmc-keyboard-info/test/fixtures/no-kmp/source/welcome/welcome.htm b/developer/src/kmc-keyboard-info/test/fixtures/no-kmp/source/welcome/welcome.htm new file mode 100644 index 00000000000..124d9d20e66 --- /dev/null +++ b/developer/src/kmc-keyboard-info/test/fixtures/no-kmp/source/welcome/welcome.htm @@ -0,0 +1,54 @@ + + + + Khmer Angkor Keyboard + + +

Khmer Angkor Keyboard

+ +

+ Khmer Angkor Keyboard is an OpenSource. It is free and more than just a user you can also contribute to the betterment of the keyboard if you would like to. +

+ +

Keyboards

+

+ With the users' pitfall in typing Khmer words in mind, Khmer Angkor focuses on the unification of the character orders and spelling rules. These make Khmer Angkor uniquely different from any other keyboards. Khmer Angkor's keyboard layouts were adopted from NiDA keyboard which is widely used at the present. + Here is the keyboard layout: +

+ + + + +

You can simply use Khmer Angkor as you would for any NiDA based keyboard. You may type a word in an order of how it is spelled, not how it appears to be, especially when the vowel is to the left of the consonant. For example, to type the word “តែ” which means ‘tea’, one should type the consonant first and then the vowel (i.e. press key “T” and then “Shift E”).

+ +

The order of characters is:

+

Consonant + Subscript(s) + Consonant Shifter + Vowel + Diacritic

+ +

For more details on the Khmer Angkor Keyboard, please find the documentation included in this package.

+ +

Keyboard Documentations

+

For the documentation in English, click here.

+

For the documentation in Khmer, click here.

+ +

Fonts

+

+ To get Khmer fonts, you may visit one of the three sources below: +

+ +

More Information

+

+ +

+ + + + + \ No newline at end of file diff --git a/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/LICENSE.md b/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/LICENSE.md new file mode 100644 index 00000000000..0a8c9054319 --- /dev/null +++ b/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/LICENSE.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2015-2022 SIL International + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/source/khmer_angkor.kps b/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/source/khmer_angkor.kps index fab90076b57..418a756e195 100644 --- a/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/source/khmer_angkor.kps +++ b/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/source/khmer_angkor.kps @@ -41,24 +41,12 @@ 0 .js
- - ..\build\khmer_angkor.kvk - File khmer_angkor.kvk - 0 - .kvk - ..\build\khmer_angkor.kmx Keyboard Khmer Angkor 0 .kmx - - welcome\keyboard_layout.png - File keyboard_layout.png - 0 - .png - welcome\welcome.htm File welcome.htm @@ -66,59 +54,29 @@ .htm - ..\shared\fonts\khmer\mondulkiri\FONTLOG.txt + ..\..\shared\fonts\khmer\mondulkiri\FONTLOG.txt File FONTLOG.txt 0 .txt - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-B.ttf - Font Khmer Mondulkiri Bold - 0 - .ttf - - - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-BI.ttf - Font Khmer Mondulkiri Bold Italic - 0 - .ttf - - - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-I.ttf - Font Khmer Mondulkiri Italic - 0 - .ttf - - - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf + ..\..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf Font Khmer Mondulkiri 0 .ttf - ..\shared\fonts\khmer\mondulkiri\OFL.txt + ..\..\shared\fonts\khmer\mondulkiri\OFL.txt File OFL.txt 0 .txt - ..\shared\fonts\khmer\mondulkiri\OFL-FAQ.txt + ..\..\shared\fonts\khmer\mondulkiri\OFL-FAQ.txt File OFL-FAQ.txt 0 .txt - - welcome\KAK_Documentation_EN.pdf - File KAK_Documentation_EN.pdf - 0 - .pdf - - - welcome\KAK_Documentation_KH.pdf - File KAK_Documentation_KH.pdf - 0 - .pdf - readme.htm File readme.htm @@ -126,13 +84,7 @@ .htm - welcome\image002.png - File image002.png - 0 - .png - - - ..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf + ..\..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf Font KhmerBusraKbd 0 .ttf @@ -149,8 +101,8 @@ Khmer Angkor khmer_angkor 1.3 - ..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf + ..\..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf + ..\..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf Central Khmer (Khmer, Cambodia) diff --git a/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/source/readme.htm b/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/source/readme.htm new file mode 100644 index 00000000000..36a95d92482 --- /dev/null +++ b/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/source/readme.htm @@ -0,0 +1,23 @@ + + + + + Khmer Angkor Keyboard + + + + +

Khmer Angkor Keyboard

+ +

+ With the users' pitfall in typing Khmer words in mind, Khmer Angkor focuses on the unification of the character orders and spelling rules. These make Khmer Angkor uniquely different from any other keyboards. Khmer Angkor's keyboard layouts were adopted from NiDA keyboard which is widely used at the present. +

+ +

© 2015-2022 SIL International

+ + + diff --git a/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/source/splash.gif b/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/source/splash.gif new file mode 100644 index 00000000000..93b44e9d16e Binary files /dev/null and b/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/source/splash.gif differ diff --git a/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/source/welcome/welcome.htm b/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/source/welcome/welcome.htm new file mode 100644 index 00000000000..124d9d20e66 --- /dev/null +++ b/developer/src/kmc-keyboard-info/test/fixtures/no-license-in-kps-sources/source/welcome/welcome.htm @@ -0,0 +1,54 @@ + + + + Khmer Angkor Keyboard + + +

Khmer Angkor Keyboard

+ +

+ Khmer Angkor Keyboard is an OpenSource. It is free and more than just a user you can also contribute to the betterment of the keyboard if you would like to. +

+ +

Keyboards

+

+ With the users' pitfall in typing Khmer words in mind, Khmer Angkor focuses on the unification of the character orders and spelling rules. These make Khmer Angkor uniquely different from any other keyboards. Khmer Angkor's keyboard layouts were adopted from NiDA keyboard which is widely used at the present. + Here is the keyboard layout: +

+ + + + +

You can simply use Khmer Angkor as you would for any NiDA based keyboard. You may type a word in an order of how it is spelled, not how it appears to be, especially when the vowel is to the left of the consonant. For example, to type the word “តែ” which means ‘tea’, one should type the consonant first and then the vowel (i.e. press key “T” and then “Shift E”).

+ +

The order of characters is:

+

Consonant + Subscript(s) + Consonant Shifter + Vowel + Diacritic

+ +

For more details on the Khmer Angkor Keyboard, please find the documentation included in this package.

+ +

Keyboard Documentations

+

For the documentation in English, click here.

+

For the documentation in Khmer, click here.

+ +

Fonts

+

+ To get Khmer fonts, you may visit one of the three sources below: +

+ +

More Information

+

+ +

+ + + + + \ No newline at end of file diff --git a/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/shared/fonts/khmer/busrakbd/khmer_busra_kbd.ttf b/developer/src/kmc-keyboard-info/test/fixtures/shared/fonts/khmer/busrakbd/khmer_busra_kbd.ttf similarity index 100% rename from developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/shared/fonts/khmer/busrakbd/khmer_busra_kbd.ttf rename to developer/src/kmc-keyboard-info/test/fixtures/shared/fonts/khmer/busrakbd/khmer_busra_kbd.ttf diff --git a/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/shared/fonts/khmer/mondulkiri/FONTLOG.txt b/developer/src/kmc-keyboard-info/test/fixtures/shared/fonts/khmer/mondulkiri/FONTLOG.txt similarity index 100% rename from developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/shared/fonts/khmer/mondulkiri/FONTLOG.txt rename to developer/src/kmc-keyboard-info/test/fixtures/shared/fonts/khmer/mondulkiri/FONTLOG.txt diff --git a/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/shared/fonts/khmer/mondulkiri/Mondulkiri-R.ttf b/developer/src/kmc-keyboard-info/test/fixtures/shared/fonts/khmer/mondulkiri/Mondulkiri-R.ttf similarity index 100% rename from developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/shared/fonts/khmer/mondulkiri/Mondulkiri-R.ttf rename to developer/src/kmc-keyboard-info/test/fixtures/shared/fonts/khmer/mondulkiri/Mondulkiri-R.ttf diff --git a/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/shared/fonts/khmer/mondulkiri/OFL-FAQ.txt b/developer/src/kmc-keyboard-info/test/fixtures/shared/fonts/khmer/mondulkiri/OFL-FAQ.txt similarity index 100% rename from developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/shared/fonts/khmer/mondulkiri/OFL-FAQ.txt rename to developer/src/kmc-keyboard-info/test/fixtures/shared/fonts/khmer/mondulkiri/OFL-FAQ.txt diff --git a/developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/shared/fonts/khmer/mondulkiri/OFL.txt b/developer/src/kmc-keyboard-info/test/fixtures/shared/fonts/khmer/mondulkiri/OFL.txt similarity index 100% rename from developer/src/kmc-keyboard-info/test/fixtures/khmer_angkor/shared/fonts/khmer/mondulkiri/OFL.txt rename to developer/src/kmc-keyboard-info/test/fixtures/shared/fonts/khmer/mondulkiri/OFL.txt diff --git a/developer/src/kmc-keyboard-info/test/keyboard-info-compiler.tests.ts b/developer/src/kmc-keyboard-info/test/keyboard-info-compiler.tests.ts index 99c244be2dd..20b6995229f 100644 --- a/developer/src/kmc-keyboard-info/test/keyboard-info-compiler.tests.ts +++ b/developer/src/kmc-keyboard-info/test/keyboard-info-compiler.tests.ts @@ -9,13 +9,10 @@ import { KmpCompiler, KmpCompilerOptions } from '@keymanapp/kmc-package'; import { KMX, KeymanFileTypes, KeymanTargets, KmpJsonFile } from '@keymanapp/common-types'; import { CompilerCallbacks } from '@keymanapp/developer-utils'; import { KeyboardInfoFile, KeyboardInfoFileLanguage, KeyboardInfoFilePlatform } from './keyboard-info-file.js'; +import { KmpTransformResult } from '../../kmc-package/src/compiler/kmp-compiler.js'; const callbacks = new TestCompilerCallbacks(); -beforeEach(function() { - callbacks.clear(); -}); - const KHMER_ANGKOR_KPJ = makePathToFixture('khmer_angkor', 'khmer_angkor.kpj'); const KHMER_ANGKOR_JS = makePathToFixture('khmer_angkor', 'build', 'khmer_angkor.js'); const KHMER_ANGKOR_KPS = makePathToFixture('khmer_angkor', 'source', 'khmer_angkor.kps'); @@ -81,6 +78,17 @@ const JAVA_DISPLAY_FONT_INFO = { family: "Java", source: [ JAVA_DISPLAY_FONT ] } const JAVA_OSK_FONT_INFO = { family: "Java Kbd", source: [ JAVA_OSK_FONT ] }; describe('keyboard-info-compiler', function () { + + this.beforeEach(function() { + callbacks.clear(); + }); + + this.afterEach(function() { + if(this.currentTest?.isFailed()) { + callbacks.printMessages(); + } + }) + it('compile a .keyboard_info file correctly', async function() { const kpjFilename = KHMER_ANGKOR_KPJ; const buildKeyboardInfoFilename = makePathToFixture('khmer_angkor', 'build', 'khmer_angkor.keyboard_info'); @@ -153,7 +161,7 @@ describe('keyboard-info-compiler', function () { const origKmpCompilerTransformKpsToKmpObject = KmpCompiler.prototype.transformKpsToKmpObject; let result: KeyboardInfoCompilerResult; try { - KmpCompiler.prototype.transformKpsToKmpObject = (_kpsFilename: string): KmpJsonFile.KmpJsonFile => null; + KmpCompiler.prototype.transformKpsToKmpObject = async (_kpsFilename: string): Promise => ({}); result = await compiler.run(KHMER_ANGKOR_KPJ, null); } catch(e) { assert.fail(e); @@ -214,7 +222,7 @@ describe('keyboard-info-compiler', function () { assert.isTrue(await compiler.init(callbacks, {sources})); const kmpCompiler = new KmpCompiler(); await kmpCompiler.init(callbacks, {}); - const kmpJsonData = kmpCompiler.transformKpsToKmpObject(sources.kpsFilename); + const { kmpJsonData } = await kmpCompiler.transformKpsToKmpObject(sources.kpsFilename) ?? {}; assert.isNotNull(kmpJsonData.info.author.url.match(/^mailto\:/)); const result = await compiler.run(KHMER_ANGKOR_KPJ, null); assert.isNotNull(result); @@ -228,12 +236,12 @@ describe('keyboard-info-compiler', function () { assert.isTrue(await compiler.init(callbacks, {sources})); const kmpCompiler = new KmpCompiler(); await kmpCompiler.init(callbacks, {}); - const kmpJsonData = kmpCompiler.transformKpsToKmpObject(sources.kpsFilename); + const { kmpJsonData } = await kmpCompiler.transformKpsToKmpObject(sources.kpsFilename) ?? {}; kmpJsonData.info.author.url = "makara_sok@sil.org"; // remove 'mailto:' const origKmpCompilerTransformKpsToKmpObject = KmpCompiler.prototype.transformKpsToKmpObject; let result: KeyboardInfoCompilerResult; try { - KmpCompiler.prototype.transformKpsToKmpObject = (_kpsFilename: string): KmpJsonFile.KmpJsonFile => kmpJsonData; + KmpCompiler.prototype.transformKpsToKmpObject = async (_kpsFilename: string): Promise => ({kmpJsonData}); result = await compiler.run(KHMER_ANGKOR_KPJ, null); } catch(e) { assert.fail(e); @@ -285,13 +293,13 @@ describe('keyboard-info-compiler', function () { } const kmpCompiler = new KmpCompiler(); assert.isTrue(await kmpCompiler.init(callbacks, {})); - const kmpJsonData = kmpCompiler.transformKpsToKmpObject(KHMER_ANGKOR_KPS); + const { kmpJsonData } = await kmpCompiler.transformKpsToKmpObject(KHMER_ANGKOR_KPS) ?? {}; assert.isNotNull(kmpJsonData); const origKmpCompilerTransformKpsToKmpObject = KmpCompiler.prototype.transformKpsToKmpObject; kmpJsonData.files = testCase.files; let result: KeyboardInfoCompilerResult; try { - KmpCompiler.prototype.transformKpsToKmpObject = (_kpsFilename: string): KmpJsonFile.KmpJsonFile => kmpJsonData; + KmpCompiler.prototype.transformKpsToKmpObject = async (_kpsFilename: string): Promise => ({kmpJsonData}); result = await compiler.run(KHMER_ANGKOR_KPJ, null); } catch(e) { assert.fail(e); @@ -348,7 +356,7 @@ describe('keyboard-info-compiler', function () { assert.isTrue(await compiler.init(callbacks, {sources})); const kmpCompiler = new KmpCompiler(); assert.isTrue(await kmpCompiler.init(callbacks, {})); - const kmpJsonData = kmpCompiler.transformKpsToKmpObject(KHMER_ANGKOR_KPS); + const { kmpJsonData } = await kmpCompiler.transformKpsToKmpObject(KHMER_ANGKOR_KPS) ?? {}; assert.isNotNull(kmpJsonData); if (!testCase.hasJsFileInKps) { // remove .js file @@ -364,7 +372,7 @@ describe('keyboard-info-compiler', function () { const origKmpCompilerTransformKpsToKmpObject = KmpCompiler.prototype.transformKpsToKmpObject; let result: KeyboardInfoCompilerResult; try { - KmpCompiler.prototype.transformKpsToKmpObject = (_kpsFilename: string): KmpJsonFile.KmpJsonFile => kmpJsonData; + KmpCompiler.prototype.transformKpsToKmpObject = async (_kpsFilename: string): Promise => ({kmpJsonData}); compiler['loadKmxFiles'] = (_kpsFilename: string, _kmpJsonData: KmpJsonFile.KmpJsonFile) => kmxFiles; result = await compiler.run(KHMER_ANGKOR_KPJ, null); } catch(e) { @@ -384,7 +392,7 @@ describe('keyboard-info-compiler', function () { assert.isTrue(await compiler.init(callbacks, {sources})); const kmpCompiler = new KmpCompiler(); await kmpCompiler.init(callbacks, {}); - const kmpJsonData = kmpCompiler.transformKpsToKmpObject(sources.kpsFilename); + const { kmpJsonData } = await kmpCompiler.transformKpsToKmpObject(sources.kpsFilename) ?? {}; kmpJsonData.relatedPackages = [ { id: "dep1", relationship: "deprecates" }, { id: "dep2", relationship: "deprecates" }, @@ -393,7 +401,7 @@ describe('keyboard-info-compiler', function () { const origKmpCompilerTransformKpsToKmpObject = KmpCompiler.prototype.transformKpsToKmpObject; let result: KeyboardInfoCompilerResult; try { - KmpCompiler.prototype.transformKpsToKmpObject = (_kpsFilename: string): KmpJsonFile.KmpJsonFile => kmpJsonData; + KmpCompiler.prototype.transformKpsToKmpObject = async (_kpsFilename: string): Promise => ({kmpJsonData}); result = await compiler.run(KHMER_ANGKOR_KPJ, null); } catch(e) { assert.fail(e); @@ -478,7 +486,7 @@ describe('keyboard-info-compiler', function () { const compiler = new KeyboardInfoCompiler(); const kmpCompiler = new KmpCompiler(); assert.isTrue(await kmpCompiler.init(callbacks, {})); - const kmpJsonData = kmpCompiler.transformKpsToKmpObject(KHMER_ANGKOR_KPS); + const { kmpJsonData } = await kmpCompiler.transformKpsToKmpObject(KHMER_ANGKOR_KPS) ?? {}; assert.isNotNull(kmpJsonData); // remove .kmx file kmpJsonData.files = kmpJsonData.files.filter(file => !KeymanFileTypes.filenameIs(file.name, KeymanFileTypes.Binary.Keyboard)); @@ -493,7 +501,7 @@ describe('keyboard-info-compiler', function () { const compiler = new KeyboardInfoCompiler(); const kmpCompiler = new KmpCompiler(); assert.isTrue(await kmpCompiler.init(callbacks, {})); - const kmpJsonData = kmpCompiler.transformKpsToKmpObject(KHMER_ANGKOR_KPS); + const { kmpJsonData } = await kmpCompiler.transformKpsToKmpObject(KHMER_ANGKOR_KPS) ?? {}; assert.isNotNull(kmpJsonData); // rename .kmx file in files list so it cannot be loaded from disk const kmpIndex = kmpJsonData.files.findIndex(file => KeymanFileTypes.filenameIs(file.name, KeymanFileTypes.Binary.Keyboard)); @@ -823,7 +831,7 @@ describe('keyboard-info-compiler', function () { system: { fileVersion: '', keymanDeveloperVersion: '' }, options: null, files: [{ - name: "..\\shared\\fonts\\khmer\\mondulkiri\\" + KHMER_ANGKOR_DISPLAY_FONT, // backslashes + name: "..\\..\\shared\\fonts\\khmer\\mondulkiri\\" + KHMER_ANGKOR_DISPLAY_FONT, // backslashes description: "Font Khmer Mondulkiri", }], }; diff --git a/developer/src/kmc-model-info/test/model-info-compiler.tests.ts b/developer/src/kmc-model-info/test/model-info-compiler.tests.ts index 729eca3ac96..b26a75877e0 100644 --- a/developer/src/kmc-model-info/test/model-info-compiler.tests.ts +++ b/developer/src/kmc-model-info/test/model-info-compiler.tests.ts @@ -21,7 +21,7 @@ describe('model-info-compiler', function () { const kmpCompiler = new KmpCompiler(); assert.isTrue(await kmpCompiler.init(callbacks, {})); - const kmpJsonData = kmpCompiler.transformKpsToKmpObject(kpsFilename); + const { kmpJsonData } = await kmpCompiler.transformKpsToKmpObject(kpsFilename) ?? {}; const modelFileName = makePathToFixture('sil.cmo.bw', 'build', 'sil.cmo.bw.model.js'); const sources = { diff --git a/developer/src/kmc-package/src/compiler/get-file-data.ts b/developer/src/kmc-package/src/compiler/get-file-data.ts new file mode 100644 index 00000000000..c17de052f99 --- /dev/null +++ b/developer/src/kmc-package/src/compiler/get-file-data.ts @@ -0,0 +1,216 @@ +/* + * Keyman is copyright (C) SIL Global. MIT License. + * + * Created by mcdurdin on 2024-11-11 + */ +import { CompilerCallbacks, GitHubUrls } from '@keymanapp/developer-utils'; +import { PackageCompilerMessages } from './package-compiler-messages.js'; + +/** + * Matches a http or https URL (without checking anything other than protocol) + */ +const URL_SOURCE = /^http(?:s)?:\/\/(.+)$/; + +/** + * Matches a fonts.languagetechnology.org reference `flo:{id}` + */ +const FLO_SOURCE = /^flo:(?[a-z0-9_-]+)$/; + +export interface KmpCompilerFileDataResult { + data: Uint8Array; + basename: string; +}; + +/** + * Test if a filename is a reference to a remote file. The remote file may be a + * stable URL (e.g. a GitHub raw URL), or an unstable reference, e.g. 'flo:familyid' + * @param inputFilename + * @returns + */ +export function isLocalFile(inputFilename: string) { + return !URL_SOURCE.test(inputFilename) && !FLO_SOURCE.test(inputFilename); +} + +export async function getFileDataFromRemote(callbacks: CompilerCallbacks, inputFilename: string, sourceFilename: string): Promise { + const matches: GitHubUrls.GitHubRegexMatchArray = GitHubUrls.GITHUB_STABLE_SOURCE.exec(inputFilename); + if(!matches) { + callbacks.reportMessage(PackageCompilerMessages.Error_UriIsNotARecognizedStableGitHubUri({url: inputFilename})); + return null; + } + + const result = await getFileDataFromGitHub(callbacks, inputFilename, matches); + if(!result) { + // error reported in getFileDataFromGitHub + return null; + } + + if(sourceFilename) { + if(!await checkSourceFile(callbacks, inputFilename, sourceFilename)) { + /* c8 ignore next 3 */ + // error reported in checkSourceFile + return null; + } + } + + return result; +} + +async function getFileDataFromGitHub(callbacks: CompilerCallbacks, inputFilename: string, matches: GitHubUrls.GitHubRegexMatchArray): Promise { + // /^github:(?[a-zA-Z0-9-].+)\/(?[\w\.-]+)\/raw\/(?[a-f0-9]{40})\/(?.+)$/ + const githubUrl = `https://github.com/${matches.groups.owner}/${matches.groups.repo}/raw/${matches.groups.branch}/${matches.groups.path}`; + try { + const res = await callbacks.net.fetchBlob(githubUrl); + if(!res) { + callbacks.reportMessage(PackageCompilerMessages.Error_FontFileCouldNotBeDownloaded({filename: inputFilename, url: githubUrl})); + return null; + } + return { data: res, basename: callbacks.path.basename(matches.groups.path) }; + /* c8 ignore next 4 */ + } catch(e) { + callbacks.reportMessage(PackageCompilerMessages.Error_FontFileCouldNotBeDownloaded({filename: inputFilename, url: githubUrl, e})); + return null; + } +} + +async function checkSourceFile(callbacks: CompilerCallbacks, inputFilename: string, sourceFilename: string): Promise { + let stableUrl: string; + if(FLO_SOURCE.test(sourceFilename)) { + stableUrl = await getFileStableRefFromFlo(callbacks, sourceFilename); + } else if(GitHubUrls.GITHUB_URI.test(sourceFilename)) { + stableUrl = await getFileStableRefFromGitHub(callbacks, sourceFilename); + } else if(GitHubUrls.GITHUB_RAW_URI.test(sourceFilename)) { + stableUrl = await getFileStableRefFromGitHub(callbacks, sourceFilename); + } else { + callbacks.reportMessage(PackageCompilerMessages.Error_InvalidSourceFileReference({source: sourceFilename, name: inputFilename})); + return false; + } + + if(!stableUrl) { + // getFileStableUrlFromFlo/GitHub return at most a warning, so don't bail + return true; + } + + if(stableUrl != inputFilename) { + callbacks.reportMessage(PackageCompilerMessages.Hint_SourceFileHasChanged({source: sourceFilename, name: inputFilename})); + } + + return true; +} + +let floFamiliesCache: any = undefined; // set to null on error, otherwise an object from JSON + +const FLO_FAMILIES_URL = 'https://fonts.languagetechnology.org/families.json'; + +async function getFloFamilies(callbacks: CompilerCallbacks) { + if(floFamiliesCache === undefined) { + try { + floFamiliesCache = await callbacks.net.fetchJSON(FLO_FAMILIES_URL); + /* c8 ignore next 12 */ + if(!floFamiliesCache) { + callbacks.reportMessage(PackageCompilerMessages.Warn_FloDataCouldNotBeRead({url: FLO_FAMILIES_URL})); + floFamiliesCache = null; + } + else if(typeof floFamiliesCache != 'object') { + callbacks.reportMessage(PackageCompilerMessages.Warn_FloDataIsInvalidFormat({url: FLO_FAMILIES_URL})); + floFamiliesCache = null; + } + } catch(e) { + callbacks.reportMessage(PackageCompilerMessages.Warn_FloDataCouldNotBeRead({url: FLO_FAMILIES_URL, e})) + floFamiliesCache = null; + } + } + return floFamiliesCache; +} + +async function getFileStableRefFromFlo(callbacks: CompilerCallbacks, floSource: string): Promise { + const matches = FLO_SOURCE.exec(floSource); + const floFamilies = await getFloFamilies(callbacks); + /* c8 ignore next 4 */ + if(!floFamilies) { + // Error already reported by getFloFamilies + return null; + } + + const family = floFamilies[matches.groups.family]; + if(!family) { + callbacks.reportMessage(PackageCompilerMessages.Warn_FontNotFoundInFlo({filename: floSource, family: matches.groups.family})); + return null; + } + + if(!family.distributable) { + callbacks.reportMessage(PackageCompilerMessages.Warn_FontFromFloIsNotFreelyDistributable( + {filename: floSource, family: matches.groups.family})); + // safe to continue + } + + // TODO: consider .woff, .woff2 for web font inclusion + const ttf = family.defaults?.ttf; + if(!ttf) { + callbacks.reportMessage(PackageCompilerMessages.Warn_FontInFloDoesNotHaveDefaultTtf({filename: floSource, family: matches.groups.family})); + return null; + } + + const file = family.files[ttf]; + /* c8 ignore next 4 */ + if(!file) { + callbacks.reportMessage(PackageCompilerMessages.Warn_FontInFloHasBrokenDefaultTtf({filename: floSource, family: matches.groups.family})); + return null; + } + + if(!file.url) { + callbacks.reportMessage(PackageCompilerMessages.Warn_FontInFloHasNoDownloadAvailable({filename: floSource, family: matches.groups.family})); + return null; + } + + // we don't use flourl at this time, becase we want a GitHub reference that + // can be resolved to a stable URI + const ghmatches: GitHubUrls.GitHubRegexMatchArray = GitHubUrls.GITHUB_URI.exec(file.url) ?? GitHubUrls.GITHUB_RAW_URI.exec(file.url); + /* c8 ignore next 4 */ + if(!ghmatches) { + callbacks.reportMessage(PackageCompilerMessages.Error_FontInFloDoesNotHaveARecognizedGitHubUri({filename: floSource, url: file.url})); + return null; + } + + return await resolveGitHubToStableRef(callbacks, ghmatches); +} + +async function getFileStableRefFromGitHub(callbacks: CompilerCallbacks, source: string): Promise { + const matches: GitHubUrls.GitHubRegexMatchArray = GitHubUrls.GITHUB_URI.exec(source) ?? GitHubUrls.GITHUB_RAW_URI.exec(source); + if(!matches) { + callbacks.reportMessage(PackageCompilerMessages.Error_UriIsNotARecognizedGitHubUri({url: source})); + return null; + } + return await resolveGitHubToStableRef(callbacks, matches); +} + +async function resolveGitHubToStableRef(callbacks: CompilerCallbacks, matches: GitHubUrls.GitHubRegexMatchArray): Promise { + let commit: any = null; + + const url = `https://api.github.com/repos/${matches.groups.owner}/${matches.groups.repo}/commits/${matches.groups.branch}?path=${matches.groups.path}`; + try { + commit = await callbacks.net.fetchJSON(url); + /* c8 ignore next 8 */ + if(!commit?.sha) { + callbacks.reportMessage(PackageCompilerMessages.Error_CouldNotRetrieveStableUriFromGitHub({url})); + return null; + } + } catch(e) { + callbacks.reportMessage(PackageCompilerMessages.Error_CouldNotRetrieveStableUriFromGitHub({url, e})); + throw e; + } + + return `https://github.com/${matches.groups.owner}/${matches.groups.repo}/raw/${commit.sha}/${matches.groups.path}`; +} + +const GITHUB_STABLE_SOURCE = GitHubUrls.GITHUB_STABLE_SOURCE; + +/** @internal */ +export const unitTestEndpoints = { + GITHUB_STABLE_SOURCE, + getFileDataFromGitHub, + FLO_SOURCE, + getFileStableRefFromFlo, + getFileStableRefFromGitHub, + getFileDataFromRemote, + checkSourceFile, +}; diff --git a/developer/src/kmc-package/src/compiler/kmp-compiler.ts b/developer/src/kmc-package/src/compiler/kmp-compiler.ts index 607823c7dd7..ad6127dc301 100644 --- a/developer/src/kmc-package/src/compiler/kmp-compiler.ts +++ b/developer/src/kmc-package/src/compiler/kmp-compiler.ts @@ -18,14 +18,26 @@ import { PackageKeyboardTargetValidator } from './package-keyboard-target-valida import { PackageMetadataUpdater } from './package-metadata-updater.js'; import { markdownToHTML } from './markdown.js'; import { PackageValidation } from './package-validation.js'; +import { getFileDataFromRemote, isLocalFile, KmpCompilerFileDataResult } from './get-file-data.js'; +import { KmpJsonFileContentFile } from 'node_modules/@keymanapp/common-types/src/package/kmp-json-file.js'; const KMP_JSON_FILENAME = 'kmp.json'; const KMP_INF_FILENAME = 'kmp.inf'; +interface KmpFileData { + fileData: {[name:string]: { basename: string; data: Uint8Array }}; +} + +export interface KmpTransformResult { + kmpJsonData?: KmpJsonFile.KmpJsonFile; + fileData?: KmpFileData; +}; + // welcome.htm: this is a legacy filename, as of 17.0 the welcome // (documentation) filename can be any file, but we will fallback to detecting // this filename for existing keyboard packages. const WELCOME_HTM_FILENAME = 'welcome.htm'; +const FAILED_TRANSFORM_RESULT: KmpTransformResult = { kmpJsonData: null, fileData: null }; /** * @public @@ -98,7 +110,8 @@ export class KmpCompiler implements KeymanCompiler { * @returns Binary artifacts on success, null on failure. */ public async run(inputFilename: string, outputFilename?: string): Promise { - const kmpJsonData = this.transformKpsToKmpObject(inputFilename); + const { kmpJsonData, fileData } = await this.transformKpsToKmpObject(inputFilename) ?? {}; + if(!kmpJsonData) { return null; } @@ -116,7 +129,7 @@ export class KmpCompiler implements KeymanCompiler { // Build the .kmp package file // - const data = await this.buildKmpFile(inputFilename, kmpJsonData); + const data = await this.buildKmpFile(kmpJsonData, fileData); if(!data) { return null; } @@ -151,25 +164,25 @@ export class KmpCompiler implements KeymanCompiler { /** * @internal */ - public transformKpsToKmpObject(kpsFilename: string): KmpJsonFile.KmpJsonFile { + public async transformKpsToKmpObject(kpsFilename: string): Promise { const reader = new KpsFileReader(this.callbacks); const data = this.callbacks.loadFile(kpsFilename); if(!data) { this.callbacks.reportMessage(PackageCompilerMessages.Error_FileDoesNotExist({filename: kpsFilename})); - return null; + return FAILED_TRANSFORM_RESULT; } const kps = reader.read(data); if(!kps) { // errors will already have been reported by KpsFileReader - return null; + return FAILED_TRANSFORM_RESULT; } - const kmp = this.transformKpsFileToKmpObject(kpsFilename, kps.Package); - if(!kmp) { - return null; + const kmp = await this.transformKpsFileToKmpObject(kpsFilename, kps.Package); + if(!kmp?.kmpJsonData) { + return FAILED_TRANSFORM_RESULT; } // Verify that the generated kmp.json validates with the kmp.json schema - if(!SchemaValidators.default.kmp(kmp)) { + if(!SchemaValidators.default.kmp(kmp.kmpJsonData)) { // This is an internal error, so throwing an exception is appropriate throw new Error(JSON.stringify((SchemaValidators.default.kmp).errors)); } @@ -182,7 +195,7 @@ export class KmpCompiler implements KeymanCompiler { /** * @internal */ - public transformKpsFileToKmpObject(kpsFilename: string, kps: KpsFile.KpsFile): KmpJsonFile.KmpJsonFile { + public async transformKpsFileToKmpObject(kpsFilename: string, kps: KpsFile.KpsFile): Promise { // // To convert to kmp.json, we need to: @@ -243,43 +256,22 @@ export class KmpCompiler implements KeymanCompiler { // Add file metadata // + const fileData: KmpFileData = {fileData: {}}; + + const supportsRemotes = parseFloat(kps.System.FileVersion) >= parseFloat(KpsFile.KPS_FILE_MINIMUM_VERSION_REMOTE_SUPPORT); + if(kps.Files?.File?.length) { - kmp.files = kps.Files.File.map((file: KpsFile.KpsFileContentFile) => { - return { - name: this.normalizePath(file.Name), - description: '', // kmp.json still requires description, but we ignore the input Description field - // note: we no longer emit copyLocation as of 18.0; it was always optional - // note: we don't emit fileType as that is not permitted in kmp.json - }; - }); - if(!kmp.files.reduce((result: boolean, file) => { - if(!file.name) { - // as the filename field is missing or blank, we'll try with the description instead - this.callbacks.reportMessage(PackageCompilerMessages.Error_FileRecordIsMissingName({description: file.description ?? '(no description)'})); - return false; - } - return result; - }, true)) { - return null; + // TODO: we have to cache the file data now because we use it for example + // for metadata collection + + kmp.files = await this.locateFiles(supportsRemotes, kps.System.FileVersion, kpsFilename, kps.Files.File, fileData); + if(!kmp.files) { + // error reported in locateFiles + return FAILED_TRANSFORM_RESULT; } } kmp.files = kmp.files ?? []; - // Keyboard packages also include a legacy kmp.inf file (this will be removed, - // one day) - if(kps.Keyboards && kps.Keyboards.Keyboard) { - kmp.files.push({ - name: KMP_INF_FILENAME, - description: "" - }); - } - - // Add the standard kmp.json self-referential to match existing implementations - kmp.files.push({ - name: KMP_JSON_FILENAME, - description: "" - }); - // // Add keyboard metadata // @@ -335,7 +327,8 @@ export class KmpCompiler implements KeymanCompiler { const collector = new PackageMetadataCollector(this.callbacks); const metadata = collector.collectKeyboardMetadata(kpsFilename, kmp); if(metadata == null) { - return null; + // error reported in collectKeyboardMetadata + return FAILED_TRANSFORM_RESULT; } // @@ -344,7 +337,8 @@ export class KmpCompiler implements KeymanCompiler { const versionValidator = new PackageVersionValidator(this.callbacks); if(!versionValidator.validateAndUpdateVersions(kps, kmp, metadata)) { - return null; + // error reported in validateAndUpdateVersions + return FAILED_TRANSFORM_RESULT; } if(kps.Keyboards && kps.Keyboards.Keyboard) { @@ -353,6 +347,23 @@ export class KmpCompiler implements KeymanCompiler { kmp.system.fileVersion = MIN_LM_FILEVERSION_KMP_JSON; } + // TODO: if targeting 18.0, drop 'description' File field entirely from kmp.json + // TODO: ONLY ADD kmp.inf if fileVersion < MIN_LM_FILEVERSION_KMP_JSON (+UNIT TEST) + // Keyboard packages also include a legacy kmp.inf file, if targeting an old + // version of Keyman + if(kps.Keyboards && kps.Keyboards.Keyboard) { + kmp.files.push({ + name: KMP_INF_FILENAME, + description: "" + }); + } + + // Add the standard kmp.json self-referential to match existing implementations + kmp.files.push({ + name: KMP_JSON_FILENAME, + description: "" + }); + // // Verify that packages that target mobile devices include a .js file // @@ -397,7 +408,7 @@ export class KmpCompiler implements KeymanCompiler { kmp = this.stripUndefined(kmp) as KmpJsonFile.KmpJsonFile; - return kmp; + return {kmpJsonData: kmp, fileData}; } // Helper functions @@ -456,10 +467,9 @@ export class KmpCompiler implements KeymanCompiler { * @param kpsFilename - Filename of the kps, not read, used only for calculating relative paths * @param kmpJsonData - The kmp.json Object */ - public buildKmpFile(kpsFilename: string, kmpJsonData: KmpJsonFile.KmpJsonFile): Promise { + public async buildKmpFile(kmpJsonData: KmpJsonFile.KmpJsonFile, fileData: KmpFileData): Promise { const zip = JSZip(); - // Make a copy of kmpJsonData, as we mutate paths for writing const data: KmpJsonFile.KmpJsonFile = JSON.parse(JSON.stringify(kmpJsonData)); if(!data.files) { @@ -468,49 +478,25 @@ export class KmpCompiler implements KeymanCompiler { const hasKmpInf = !!data.files.find(file => file.name == KMP_INF_FILENAME); - let failed = false; - data.files.forEach((value) => { + for(const value of data.files) { // Get the path of the file let filename = value.name; - // We add this separately after zipping all other files if(filename == KMP_JSON_FILENAME || filename == KMP_INF_FILENAME) { - return; + continue; } - if(this.callbacks.path.isAbsolute(filename)) { - // absolute paths are not portable to other computers - this.callbacks.reportMessage(PackageCompilerMessages.Warn_AbsolutePath({filename: filename})); - } - - filename = this.callbacks.resolveFilename(kpsFilename, filename); - const basename = this.callbacks.path.basename(filename); - - if(!this.callbacks.fs.existsSync(filename)) { - this.callbacks.reportMessage(PackageCompilerMessages.Error_FileDoesNotExist({filename: filename})); - failed = true; - return; - } - - let memberFileData; - try { - memberFileData = this.callbacks.loadFile(filename); - } catch(e) { - this.callbacks.reportMessage(PackageCompilerMessages.Error_FileCouldNotBeRead({filename: filename, e: e})); - failed = true; - return; + const memberFileData = fileData.fileData[filename]; + if(!memberFileData) { + return null; } - this.warnIfKvkFileIsNotBinary(filename, memberFileData); + this.warnIfKvkFileIsNotBinary(filename, memberFileData.data); - zip.file(basename, memberFileData); + zip.file(memberFileData.basename, memberFileData.data); // Remove path data from files before JSON save - value.name = basename; - }); - - if(failed) { - return null; + value.name = memberFileData.basename; } // TODO #9477: transform .md to .htm @@ -557,6 +543,81 @@ export class KmpCompiler implements KeymanCompiler { return transcodeToCP1252(s); } + private async locateFiles(supportsRemotes: boolean, kpsVersion: string, kpsFilename: string, kpsFiles: KpsFile.KpsFileContentFile[], fileData: KmpFileData) { + let result = true; + const files: KmpJsonFileContentFile[] = []; + + for(const file of kpsFiles) { + const isLocal = isLocalFile(file.Name); + if(!isLocal && !supportsRemotes) { + this.callbacks.reportMessage(PackageCompilerMessages.Hint_RemoteReferencesShouldBeVersion18Plus({filename:file.Name, kpsVersion})); + } + const name = isLocal ? + this.normalizePath(file.Name) : + file.Name; + + if(!name) { + // as the filename field is missing or blank, we'll report with the description instead + // we'll keep reporting other content file errors + this.callbacks.reportMessage(PackageCompilerMessages.Error_FileRecordIsMissingName({description: file.Description ?? '(no description)'})); + result = false; + continue; + } + + files.push({ + name, + description: '', // kmp.json still requires description, but we ignore the input Description field + // note: we no longer emit copyLocation as of 18.0; it was always optional + // note: we don't emit fileType as that is not permitted in kmp.json + }); + + const data = isLocal ? + this.getFileDataLocal(kpsFilename, file.Name, file.Source) : + await getFileDataFromRemote(this.callbacks, file.Name, file.Source); + + if(!data) { + // we'll keep reporting other content file errors + result = false; + } + fileData.fileData[name] = data; + } + + if(!result) { + // error reported above + return null; + } + + return files; + } + + private getFileDataLocal(kpsFilename: string, inputFilename: string, sourceFilename?: string): KmpCompilerFileDataResult { + if(sourceFilename) { + this.callbacks.reportMessage(PackageCompilerMessages.Error_SourceCannotBeSetForLocalFiles({filename: inputFilename, sourceFilename})); + return null; + } + + if(this.callbacks.path.isAbsolute(inputFilename)) { + // absolute paths are not portable to other computers + this.callbacks.reportMessage(PackageCompilerMessages.Warn_AbsolutePath({filename: inputFilename})); + } + + const filename = this.callbacks.resolveFilename(kpsFilename, inputFilename); + + if(!this.callbacks.fs.existsSync(filename)) { + this.callbacks.reportMessage(PackageCompilerMessages.Error_FileDoesNotExist({filename: filename})); + return null; + } + + try { + const basename = this.callbacks.path.basename(filename); + const data = this.callbacks.loadFile(filename); + return { data, basename }; + } catch(e) { + this.callbacks.reportMessage(PackageCompilerMessages.Error_FileCouldNotBeRead({filename: filename, e: e})); + return null; + } + } + /** * Legacy .kmp compiler would transform xml-format .kvk files into a binary .kvk file; now * we want that to remain the responsibility of the keyboard compiler, so we'll warn the diff --git a/developer/src/kmc-package/src/compiler/package-compiler-messages.ts b/developer/src/kmc-package/src/compiler/package-compiler-messages.ts index f3df62a8973..2ce1a01a6db 100644 --- a/developer/src/kmc-package/src/compiler/package-compiler-messages.ts +++ b/developer/src/kmc-package/src/compiler/package-compiler-messages.ts @@ -82,8 +82,10 @@ export class PackageCompilerMessages { `Package name cannot be an empty string.`); static ERROR_KeyboardFileNotFound = SevError | 0x0011; - static Error_KeyboardFileNotFound = (o:{filename:string}) => m(this.ERROR_KeyboardFileNotFound, - `Keyboard file ${def(o.filename)} was not found. Has it been compiled?`); + static Error_KeyboardFileNotFound = (o:{filename:string}) => m( + this.ERROR_KeyboardFileNotFound, + `Keyboard file ${def(o.filename)} was not found. Has it been compiled?` + ); static WARN_KeyboardVersionsDoNotMatch = SevWarn | 0x0012; static Warn_KeyboardVersionsDoNotMatch = (o: {keyboard:string, version:string, firstKeyboard:string, firstVersion:string}) => m(this.WARN_KeyboardVersionsDoNotMatch, @@ -146,5 +148,126 @@ export class PackageCompilerMessages { this.ERROR_PackageFileHasEmptyVersion, `Package version is not following keyboard version, but the package version field is blank.` ); + + static WARN_FloDataCouldNotBeRead = SevWarn | 0x0022; + static Warn_FloDataCouldNotBeRead = (o:{url: string, e?: any}) => m( + this.WARN_FloDataCouldNotBeRead, + `SIL Fonts Server ${def(o.url)} did not return a valid response: ${(o.e ?? 'unknown error').toString()}`, + ); + + static WARN_FloDataIsInvalidFormat = SevWarn | 0x0023; + static Warn_FloDataIsInvalidFormat = (o:{url: string}) => m( + this.WARN_FloDataIsInvalidFormat, + `SIL Fonts Server ${def(o.url)} should have returned a JSON object but instead returned invalid data`, + ); + + static WARN_FontNotFoundInFlo = SevWarn | 0x0024; + static Warn_FontNotFoundInFlo = (o:{family: string, filename: string}) => m( + this.WARN_FontNotFoundInFlo, + `Font family '${def(o.family)}' was not found on SIL Fonts Server fonts.languagetechnology.org for ${def(o.filename)}`, + ); + + static WARN_FontFromFloIsNotFreelyDistributable = SevWarn | 0x0025; + static Warn_FontFromFloIsNotFreelyDistributable = (o:{family: string, filename: string}) => m( + this.WARN_FontFromFloIsNotFreelyDistributable, + `Font family '${def(o.family)}' is not marked as freely distributable on fonts.languagetechnology.org for ${def(o.filename)}`, + ); + + static WARN_FontInFloDoesNotHaveDefaultTtf = SevWarn | 0x0026; + static Warn_FontInFloDoesNotHaveDefaultTtf = (o:{family: string, filename: string}) => m( + this.WARN_FontInFloDoesNotHaveDefaultTtf, + `Font family '${def(o.family)}' in fonts.languagetechnology.org does not have a default .ttf, font for ${def(o.filename)}`, + ); + + static WARN_FontInFloHasBrokenDefaultTtf = SevWarn | 0x0027; + static Warn_FontInFloHasBrokenDefaultTtf = (o:{family: string, filename: string}) => m( + this.WARN_FontInFloHasBrokenDefaultTtf, + `Font family '${def(o.family)}' has an invalid default .ttf font entry. Please report this to fonts.languagetechnology.org for ${def(o.filename)}`, + ); + + static WARN_FontInFloHasNoDownloadAvailable = SevWarn | 0x0028; + static Warn_FontInFloHasNoDownloadAvailable = (o:{family: string, filename: string}) => m( + this.WARN_FontInFloHasNoDownloadAvailable, + `Font family '${def(o.family)}' does not have URLs to download .ttf font for ${def(o.filename)}`, + ); + + static ERROR_FontFileCouldNotBeDownloaded = SevError | 0x0029; + static Error_FontFileCouldNotBeDownloaded = (o:{url: string, filename: string, e?: any}) => m( + this.ERROR_FontFileCouldNotBeDownloaded, + `Font file at '${def(o.url)}' was not successfully downloaded for ${def(o.filename)}: ${(o.e ?? 'unknown error').toString()}`, + ); + + static HINT_SourceFileHasChanged = SevHint | 0x002A; + static Hint_SourceFileHasChanged = (o:{source: string, name: string}) => m( + this.HINT_SourceFileHasChanged, + `The file source '${def(o.source)}' has changed since it was added to this package. It may need to be updated`, + ); + + static ERROR_InvalidSourceFileReference = SevError | 0x002B; + static Error_InvalidSourceFileReference = (o:{source: string, name: string}) => m( + this.ERROR_InvalidSourceFileReference, + `The file source '${def(o.source)}' for '${def(o.name)}' is not in a recognized format`, + `The supported format is one of: + * \`flo:{id}\` + * \`https://github.com/{name}/{repo}/raw/{branch|commit|tag}/{path}\` + * \`https://github.com/{name}/{repo}/raw/refs/heads/{branch}/{path}\` + * \`https://github.com/{name}/{repo}/raw/refs/tags/{tag}/{path}\` + * \`https://raw.githubusercontent.com/{name}/{repo}/{branch|commit|tag}/{path}\` + * \`https://raw.githubusercontent.com/{name}/{repo}/refs/heads/{branch}/{path}\` + * \`https://raw.githubusercontent.com/{name}/{repo}/refs/tags/{tag}/{path}\` + ` + ); + + static ERROR_FontInFloDoesNotHaveARecognizedGitHubUri = SevError | 0x002C; + static Error_FontInFloDoesNotHaveARecognizedGitHubUri = (o:{filename: string, url: string}) => m( + this.ERROR_FontInFloDoesNotHaveARecognizedGitHubUri, + `The URL for font '${def(o.filename)}' from fonts.languagetechnology.org, '${def(o.url)}', was not a recognized GitHub URL format`, + `The supported format is one of: + * \`https://github.com/{name}/{repo}/raw/{branch|commit|tag}/{path}\` + * \`https://github.com/{name}/{repo}/raw/refs/heads/{branch}/{path}\` + * \`https://github.com/{name}/{repo}/raw/refs/tags/{tag}/{path}\` + * \`https://raw.githubusercontent.com/{name}/{repo}/{branch|commit|tag}/{path}\` + * \`https://raw.githubusercontent.com/{name}/{repo}/refs/heads/{branch}/{path}\` + * \`https://raw.githubusercontent.com/{name}/{repo}/refs/tags/{tag}/{path}\` + ` + ); + + static ERROR_UriIsNotARecognizedGitHubUri = SevError | 0x002D; + static Error_UriIsNotARecognizedGitHubUri = (o:{url: string}) => m( + this.ERROR_UriIsNotARecognizedGitHubUri, + `The URL '${def(o.url)}' was not a recognized GitHub URL format`, + `The supported format is one of: + * \`https://github.com/{name}/{repo}/raw/{branch|commit|tag}/{path}\` + * \`https://github.com/{name}/{repo}/raw/refs/heads/{branch}/{path}\` + * \`https://github.com/{name}/{repo}/raw/refs/tags/{tag}/{path}\` + * \`https://raw.githubusercontent.com/{name}/{repo}/{branch|commit|tag}/{path}\` + * \`https://raw.githubusercontent.com/{name}/{repo}/refs/heads/{branch}/{path}\` + * \`https://raw.githubusercontent.com/{name}/{repo}/refs/tags/{tag}/{path}\` + ` + ); + + static ERROR_CouldNotRetrieveStableUriFromGitHub = SevError | 0x002E; + static Error_CouldNotRetrieveStableUriFromGitHub = (o:{url: string, e?: any}) => m( + this.ERROR_CouldNotRetrieveStableUriFromGitHub, + `The URL '${def(o.url)}' was not successfully retrieved from GitHub API: ${(o.e ?? 'unknown error').toString()}`, + ); + + static ERROR_UriIsNotARecognizedStableGitHubUri = SevError | 0x002F; + static Error_UriIsNotARecognizedStableGitHubUri = (o:{url: string}) => m( + this.ERROR_UriIsNotARecognizedStableGitHubUri, + `The URL '${def(o.url)}' is not a recognized stable GitHub URL`, + ); + + static ERROR_SourceCannotBeSetForLocalFiles = SevError | 0x0030; + static Error_SourceCannotBeSetForLocalFiles = (o:{filename: string, sourceFilename: string}) => m( + this.ERROR_SourceCannotBeSetForLocalFiles, + `The '' element cannot be set for local file ${o.filename}`, + ); + + static HINT_RemoteReferencesShouldBeVersion18Plus = SevHint | 0x0031; + static Hint_RemoteReferencesShouldBeVersion18Plus = (o:{filename: string, kpsVersion: string}) => m( + this.HINT_RemoteReferencesShouldBeVersion18Plus, + `The source package includes a reference to URL '${def(o.filename)}' but the package source version is '${def(o.kpsVersion)}'; the package source version should be at least '18.0'`, + ); } diff --git a/developer/src/kmc-package/src/compiler/package-version-validator.ts b/developer/src/kmc-package/src/compiler/package-version-validator.ts index b20e086aec7..3bbe8d5f367 100644 --- a/developer/src/kmc-package/src/compiler/package-version-validator.ts +++ b/developer/src/kmc-package/src/compiler/package-version-validator.ts @@ -4,9 +4,13 @@ import { KeyboardMetadataCollection } from './package-metadata-collector.js'; import { KpsFile, CompilerCallbacks } from '@keymanapp/developer-utils'; export const DEFAULT_KEYBOARD_VERSION = '1.0'; -export const MIN_LM_FILEVERSION_KMP_JSON = '12.0'; + +/** minimum FileVersion for keyboard packages */ export const MIN_KBD_FILEVERSION_KMP_JSON = '7.0'; +/** minimum FileVersion for lexical model packages */ +export const MIN_LM_FILEVERSION_KMP_JSON = '12.0'; + export class PackageVersionValidator { constructor(private callbacks: CompilerCallbacks) {} diff --git a/developer/src/kmc-package/src/compiler/windows-package-installer-compiler.ts b/developer/src/kmc-package/src/compiler/windows-package-installer-compiler.ts index f964e71c876..4ce57c79683 100644 --- a/developer/src/kmc-package/src/compiler/windows-package-installer-compiler.ts +++ b/developer/src/kmc-package/src/compiler/windows-package-installer-compiler.ts @@ -185,15 +185,15 @@ export class WindowsPackageInstallerCompiler implements KeymanCompiler { } private async buildZip(kps: KpsFile.KpsFile, kpsFilename: string, sources: WindowsPackageInstallerSources): Promise { - const kmpJson: KmpJsonFile.KmpJsonFile = this.kmpCompiler.transformKpsFileToKmpObject(kpsFilename, kps); - if(!kmpJson.info?.name?.description) { + const { kmpJsonData, fileData } = await this.kmpCompiler.transformKpsFileToKmpObject(kpsFilename, kps) ?? {}; + if(!kmpJsonData?.info?.name?.description) { this.callbacks.reportMessage(PackageCompilerMessages.Error_PackageNameCannotBeBlank()); return null; } const kmpFilename = this.callbacks.path.basename(kpsFilename, KeymanFileTypes.Source.Package) + KeymanFileTypes.Binary.Package; - const setupInfBuffer = this.buildSetupInf(sources, kmpJson, kmpFilename, kps); - const kmpBuffer = await this.kmpCompiler.buildKmpFile(kpsFilename, kmpJson); + const setupInfBuffer = this.buildSetupInf(sources, kmpJsonData, kmpFilename, kps); + const kmpBuffer = await this.kmpCompiler.buildKmpFile(kmpJsonData, fileData); // Note that this does not technically generate a "valid" sfx according to // the zip spec, because the offsets in the .zip are relative to the start diff --git a/developer/src/kmc-package/test/fixtures/flo/basic.kmx b/developer/src/kmc-package/test/fixtures/flo/basic.kmx new file mode 100644 index 00000000000..bd6b832cab7 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/flo/basic.kmx differ diff --git a/developer/src/kmc-package/test/fixtures/flo/hint_source_file_has_changed.kps b/developer/src/kmc-package/test/fixtures/flo/hint_source_file_has_changed.kps new file mode 100644 index 00000000000..262a3ff5e2f --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/flo/hint_source_file_has_changed.kps @@ -0,0 +1,37 @@ + + + + 15.0.266.0 + 18.0 + + + hint_source_file_has_changed + © 2019 National Research Council Canada + Eddie Antonio Santos + 1.0 + + + + basic.kmx + Keyboard Basic + 0 + .kmx + + + + https://github.com/silnrsi/fonts/raw/0000000000000000000000000000000000000000/fonts/sil/abyssinicasil/AbyssinicaSIL-Regular.ttf + flo:abyssinicasil + + + + + Basic + basic + 1.0 + + Central Khmer (Khmer, Cambodia) + + + + diff --git a/developer/src/kmc-package/test/fixtures/invalid/error_font_file_could_not_be_downloaded_github.kps b/developer/src/kmc-package/test/fixtures/invalid/error_font_file_could_not_be_downloaded_github.kps new file mode 100644 index 00000000000..9d3ede5ba9d --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/invalid/error_font_file_could_not_be_downloaded_github.kps @@ -0,0 +1,35 @@ + + + + 15.0.266.0 + 18.0 + + + error_font_file_could_not_be_downloaded (github) + © 2019 National Research Council Canada + Eddie Antonio Santos + 1.0 + + + + basic.kmx + Keyboard Basic + 0 + .kmx + + + + https://github.com/keymanapp/keyman/raw/0000000000000000000000000000000000000000/missing_font.ttf + + + + + Basic + basic + 1.0 + + Central Khmer (Khmer, Cambodia) + + + + diff --git a/developer/src/kmc-package/test/fixtures/invalid/hint_remote_references_should_be_version18_plus.kps b/developer/src/kmc-package/test/fixtures/invalid/hint_remote_references_should_be_version18_plus.kps new file mode 100644 index 00000000000..3b679b88983 --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/invalid/hint_remote_references_should_be_version18_plus.kps @@ -0,0 +1,35 @@ + + + + 15.0.266.0 + 7.0 + + + SENĆOŦEN (Saanich Dialect) Keyboard + © 2019 National Research Council Canada + Eddie Antonio Santos + 1.0 + + + + basic.kmx + Keyboard Basic + 0 + .kmx + + + + https://github.com/silnrsi/fonts/raw/b88c7af5d16681bd137156929ff8baec82526560/fonts/sil/alkalami/Alkalami-Regular.ttf + + + + + Basic + basic + 1.0 + + Khmer + + + + diff --git a/developer/src/kmc-package/test/fixtures/invalid/keyboardcontentfilenotfound.kps b/developer/src/kmc-package/test/fixtures/invalid/keyboardcontentfilenotfound.kps index 0d62f610a45..1ab4987a5a8 100644 --- a/developer/src/kmc-package/test/fixtures/invalid/keyboardcontentfilenotfound.kps +++ b/developer/src/kmc-package/test/fixtures/invalid/keyboardcontentfilenotfound.kps @@ -17,94 +17,17 @@ - Khmer Angkor + error_keyboard_content_file_not_found © 2015-2022 SIL International Makara Sok https://keyman.com/keyboards/khmer_angkor - - ..\build\khmer_angkor.kvk - File khmer_angkor.kvk - 0 - .kvk - - - welcome\keyboard_layout.png - File keyboard_layout.png - 0 - .png - - - welcome\welcome.htm - File welcome.htm - 0 - .htm - - - ..\shared\fonts\khmer\mondulkiri\FONTLOG.txt - File FONTLOG.txt - 0 - .txt - - - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf - Font Khmer Mondulkiri - 0 - .ttf - - - ..\shared\fonts\khmer\mondulkiri\OFL.txt - File OFL.txt - 0 - .txt - - - ..\shared\fonts\khmer\mondulkiri\OFL-FAQ.txt - File OFL-FAQ.txt - 0 - .txt - - - welcome\KAK_Documentation_EN.pdf - File KAK_Documentation_EN.pdf - 0 - .pdf - - - welcome\KAK_Documentation_KH.pdf - File KAK_Documentation_KH.pdf - 0 - .pdf - - - readme.htm - File readme.htm - 0 - .htm - - - welcome\image002.png - File image002.png - 0 - .png - - - ..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf - Font KhmerBusraKbd - 0 - .ttf - - - splash.gif - File splash.gif - 0 - .gif - + Khmer Angkor khmer_angkor 1.3 diff --git a/developer/src/kmc-package/test/fixtures/invalid/warn_font_file_could_not_be_downloaded.kps b/developer/src/kmc-package/test/fixtures/invalid/warn_font_file_could_not_be_downloaded.kps new file mode 100644 index 00000000000..3fb9a4b20a8 --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/invalid/warn_font_file_could_not_be_downloaded.kps @@ -0,0 +1,43 @@ + + + + 15.0.266.0 + 7.0 + + + error_font_file_could_not_be_downloaded + © 2019 National Research Council Canada + Eddie Antonio Santos + 1.0 + + + + basic.kmx + Keyboard Basic + 0 + .kmx + + + + + flo:abyssinicasil + + + + + Basic + basic + 1.0 + + Central Khmer (Khmer, Cambodia) + + + + diff --git a/developer/src/kmc-package/test/fixtures/invalid/warn_font_from_flo_is_not_freely_distributable.kps b/developer/src/kmc-package/test/fixtures/invalid/warn_font_from_flo_is_not_freely_distributable.kps new file mode 100644 index 00000000000..a9587c68281 --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/invalid/warn_font_from_flo_is_not_freely_distributable.kps @@ -0,0 +1,38 @@ + + + + 15.0.266.0 + 18.0 + + + warn_font_from_flo_is_not_freely_distributable + © 2019 National Research Council Canada + Eddie Antonio Santos + 1.0 + + + + basic.kmx + Keyboard Basic + 0 + .kmx + + + + https://github.com/silnrsi/fonts/raw/b88c7af5d16681bd137156929ff8baec82526560/fonts/sil/alkalami/Alkalami-Regular.ttf + flo:angsananew + + + + + Basic + basic + 1.0 + + Central Khmer (Khmer, Cambodia) + + + + diff --git a/developer/src/kmc-package/test/fixtures/invalid/warn_font_in_flo_does_not_have_default_ttf.kps b/developer/src/kmc-package/test/fixtures/invalid/warn_font_in_flo_does_not_have_default_ttf.kps new file mode 100644 index 00000000000..e8defab39db --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/invalid/warn_font_in_flo_does_not_have_default_ttf.kps @@ -0,0 +1,38 @@ + + + + 15.0.266.0 + 18.0 + + + error_font_in_flo_does_not_have_default_ttf + © 2019 National Research Council Canada + Eddie Antonio Santos + 1.0 + + + + basic.kmx + Keyboard Basic + 0 + .kmx + + + + https://github.com/silnrsi/fonts/raw/b88c7af5d16681bd137156929ff8baec82526560/fonts/sil/alkalami/Alkalami-Regular.ttf + flo:andikaviet + + + + + Basic + basic + 1.0 + + Central Khmer (Khmer, Cambodia) + + + + diff --git a/developer/src/kmc-package/test/fixtures/invalid/warn_font_in_flo_has_no_download_available.kps b/developer/src/kmc-package/test/fixtures/invalid/warn_font_in_flo_has_no_download_available.kps new file mode 100644 index 00000000000..d756cfa36f0 --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/invalid/warn_font_in_flo_has_no_download_available.kps @@ -0,0 +1,38 @@ + + + + 15.0.266.0 + 18.0 + + + error_font_in_flo_has_no_download_available + © 2019 National Research Council Canada + Eddie Antonio Santos + 1.0 + + + + basic.kmx + Keyboard Basic + 0 + .kmx + + + + https://github.com/silnrsi/fonts/raw/b88c7af5d16681bd137156929ff8baec82526560/fonts/sil/alkalami/Alkalami-Regular.ttf + flo:charissilamarea + + + + + Basic + basic + 1.0 + + Central Khmer (Khmer, Cambodia) + + + + diff --git a/developer/src/kmc-package/test/fixtures/invalid/warn_font_not_found_in_flo.kps b/developer/src/kmc-package/test/fixtures/invalid/warn_font_not_found_in_flo.kps new file mode 100644 index 00000000000..b5c95b488bb --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/invalid/warn_font_not_found_in_flo.kps @@ -0,0 +1,38 @@ + + + + 15.0.266.0 + 18.0 + + + error_font_not_found_in_flo + © 2019 National Research Council Canada + Eddie Antonio Santos + 1.0 + + + + basic.kmx + Keyboard Basic + 0 + .kmx + + + + https://github.com/silnrsi/fonts/raw/b88c7af5d16681bd137156929ff8baec82526560/fonts/sil/alkalami/Alkalami-Regular.ttf + flo:garbage + + + + + Basic + basic + 1.0 + + Central Khmer (Khmer, Cambodia) + + + + diff --git a/developer/src/kmc-package/test/fixtures/kmp.json/ahom_star.kps b/developer/src/kmc-package/test/fixtures/kmp.json/ahom_star.kps index 44158ddff16..b89bfd11fb2 100644 --- a/developer/src/kmc-package/test/fixtures/kmp.json/ahom_star.kps +++ b/developer/src/kmc-package/test/fixtures/kmp.json/ahom_star.kps @@ -105,7 +105,7 @@ .htm
- ..\..\..\shared\fonts\noto\Ahom\NotoSerifAhom-Regular.ttf + .\shared\fonts\noto\Ahom\NotoSerifAhom-Regular.ttf Font Noto Serif Ahom Regular 0 .ttf @@ -116,8 +116,8 @@ Ahom Star ahom_star 1.0.1 - ..\..\..\shared\fonts\noto\Ahom\NotoSerifAhom-Regular.ttf - ..\..\..\shared\fonts\noto\Ahom\NotoSerifAhom-Regular.ttf + .\shared\fonts\noto\Ahom\NotoSerifAhom-Regular.ttf + .\shared\fonts\noto\Ahom\NotoSerifAhom-Regular.ttf Ahom (Ahom) diff --git a/developer/src/kmc-package/test/fixtures/kmp.json/readme.htm b/developer/src/kmc-package/test/fixtures/kmp.json/readme.htm new file mode 100644 index 00000000000..12806db90ae --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/kmp.json/readme.htm @@ -0,0 +1,24 @@ + + + + + + Ahom Star + + + + +

Ahom Star

+ +

+ Ahom Star keyboard is designed for Ahom language which is a part of the Tai Kadai language family spoken by the Tai Ahom people of Assam and Northeast India. +

+ +

© HemantaGogoi Ngi Mon

+ + + diff --git a/developer/src/kmc-package/test/fixtures/kmp.json/shared/fonts/noto/Ahom/NotoSerifAhom-Regular.ttf b/developer/src/kmc-package/test/fixtures/kmp.json/shared/fonts/noto/Ahom/NotoSerifAhom-Regular.ttf new file mode 100644 index 00000000000..44d0fcd7e6e Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/kmp.json/shared/fonts/noto/Ahom/NotoSerifAhom-Regular.ttf differ diff --git a/developer/src/kmc-package/test/fixtures/kmp.json/welcome/desktop_layout_default.png b/developer/src/kmc-package/test/fixtures/kmp.json/welcome/desktop_layout_default.png new file mode 100644 index 00000000000..7bfc8f25fe5 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/kmp.json/welcome/desktop_layout_default.png differ diff --git a/developer/src/kmc-package/test/fixtures/kmp.json/welcome/desktop_layout_shift.png b/developer/src/kmc-package/test/fixtures/kmp.json/welcome/desktop_layout_shift.png new file mode 100644 index 00000000000..cd3a4f4d7ad Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/kmp.json/welcome/desktop_layout_shift.png differ diff --git a/developer/src/kmc-package/test/fixtures/kmp.json/welcome/phone_default.png b/developer/src/kmc-package/test/fixtures/kmp.json/welcome/phone_default.png new file mode 100644 index 00000000000..f082682d894 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/kmp.json/welcome/phone_default.png differ diff --git a/developer/src/kmc-package/test/fixtures/kmp.json/welcome/phone_longpress.png b/developer/src/kmc-package/test/fixtures/kmp.json/welcome/phone_longpress.png new file mode 100644 index 00000000000..c7547a16137 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/kmp.json/welcome/phone_longpress.png differ diff --git a/developer/src/kmc-package/test/fixtures/kmp.json/welcome/phone_numeric.png b/developer/src/kmc-package/test/fixtures/kmp.json/welcome/phone_numeric.png new file mode 100644 index 00000000000..b855fd10b53 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/kmp.json/welcome/phone_numeric.png differ diff --git a/developer/src/kmc-package/test/fixtures/kmp.json/welcome/phone_shift.png b/developer/src/kmc-package/test/fixtures/kmp.json/welcome/phone_shift.png new file mode 100644 index 00000000000..b4e693688a9 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/kmp.json/welcome/phone_shift.png differ diff --git a/developer/src/kmc-package/test/fixtures/kmp.json/welcome/welcome.htm b/developer/src/kmc-package/test/fixtures/kmp.json/welcome/welcome.htm new file mode 100644 index 00000000000..33527da1308 --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/kmp.json/welcome/welcome.htm @@ -0,0 +1,58 @@ + + + + + + Start Using Ahom Star + + + + +

Start Using Ahom Star

+ +

+ Ahom Star keyboard is designed for Ahom language which is a part of the Tai Kadai language family spoken by the Tai Ahom people of Assam and Northeast India. +

+ +

In order to type the arabic numeral (i.e. 1, 2, 3 etc), press the hash key ( Shift + 3 ) and then any corresponding Ahom numeral.

+ +

Keyboard Layout

+ +

Desktop

+

Default (unshifted)

+

Default (unshifted) state

+

Shift

+

Shift state

+ +

Phone

+

Default (unshifted)

+

Default (unshifted) state

+

Shift

+

Shift state

+

Numeric

+

Numeric state

+ +

Longpress

+

On mobile phone, keys with a little dot on the top right can be pressed and held for more keys.

+

Longpress state

+ +

© HemantaGogoi Ngi Mon

+ + + \ No newline at end of file diff --git a/developer/src/kmc-package/test/fixtures/kmp_2.0/khmer_angkor.kps b/developer/src/kmc-package/test/fixtures/kmp_2.0/khmer_angkor.kps index 15867cd2fee..92556636441 100644 --- a/developer/src/kmc-package/test/fixtures/kmp_2.0/khmer_angkor.kps +++ b/developer/src/kmc-package/test/fixtures/kmp_2.0/khmer_angkor.kps @@ -63,25 +63,25 @@ Khmer Unicode keyboard layout based on the NiDA keyboard layout. Automatically c .htm
- ..\shared\fonts\khmer\mondulkiri\FONTLOG.txt + .\shared\fonts\khmer\mondulkiri\FONTLOG.txt File FONTLOG.txt 0 .txt - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf + .\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf Font Khmer Mondulkiri 0 .ttf - ..\shared\fonts\khmer\mondulkiri\OFL.txt + .\shared\fonts\khmer\mondulkiri\OFL.txt File OFL.txt 0 .txt - ..\shared\fonts\khmer\mondulkiri\OFL-FAQ.txt + .\shared\fonts\khmer\mondulkiri\OFL-FAQ.txt File OFL-FAQ.txt 0 .txt @@ -111,7 +111,7 @@ Khmer Unicode keyboard layout based on the NiDA keyboard layout. Automatically c .png - ..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf + .\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf Font KhmerBusraKbd 0 .ttf @@ -138,8 +138,8 @@ Khmer Unicode keyboard layout based on the NiDA keyboard layout. Automatically c Khmer Angkor khmer_angkor 1.3 - ..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf + .\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf + .\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf Central Khmer (Khmer, Cambodia) diff --git a/developer/src/kmc-package/test/fixtures/kmp_2.0/khmer_angkor.kvk b/developer/src/kmc-package/test/fixtures/kmp_2.0/khmer_angkor.kvk new file mode 100644 index 00000000000..c6ad3369070 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/kmp_2.0/khmer_angkor.kvk differ diff --git a/developer/src/kmc-package/test/fixtures/kmp_2.0/readme.htm b/developer/src/kmc-package/test/fixtures/kmp_2.0/readme.htm new file mode 100644 index 00000000000..b7113f711c1 --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/kmp_2.0/readme.htm @@ -0,0 +1,23 @@ + + + + + Khmer Angkor Keyboard + + + + +

Khmer Angkor Keyboard

+ +

+ With the users' pitfall in typing Khmer words in mind, Khmer Angkor focuses on the unification of the character orders and spelling rules. These make Khmer Angkor uniquely different from any other keyboards. Khmer Angkor's keyboard layouts were adopted from NiDA keyboard which is widely used at the present. +

+ +

© SIL International

+ + + diff --git a/developer/src/kmc-package/test/fixtures/kmp_2.0/shared/fonts/khmer/busrakbd/khmer_busra_kbd.ttf b/developer/src/kmc-package/test/fixtures/kmp_2.0/shared/fonts/khmer/busrakbd/khmer_busra_kbd.ttf new file mode 100644 index 00000000000..2169a408930 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/kmp_2.0/shared/fonts/khmer/busrakbd/khmer_busra_kbd.ttf differ diff --git a/developer/src/kmc-package/test/fixtures/kmp_2.0/shared/fonts/khmer/mondulkiri/FONTLOG.txt b/developer/src/kmc-package/test/fixtures/kmp_2.0/shared/fonts/khmer/mondulkiri/FONTLOG.txt new file mode 100644 index 00000000000..21acd963908 --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/kmp_2.0/shared/fonts/khmer/mondulkiri/FONTLOG.txt @@ -0,0 +1,123 @@ +FONTLOG +The Mondulkiri Font Family +Khmer Unicode Fonts +======================== + + +This file provides detailed information on the Khmer Mondulkiri family of fonts. +This information should be distributed along with the Mondulkiri fonts and +any derivative works. + +Basic Font Information +---------------------- + +The Mondulkiri fonts provide Unicode support for the Khmer script. +"Mondulkiri" is the name of a province in north-eastern Cambodia, +These fonts are provided free of charge. Previous versions of the fonts have +been available since 2003 but are now available on the SIL website. + +The following fonts from the Mondulkiri typeface family are included in this +release: + + * Khmer Mondulkiri Regular + * Khmer Mondulkiri Bold + * Khmer Mondulkiri Italic + * Khmer Mondulkiri Bold Italic + * Khmer Busra Regular + * Khmer Busra Bold + * Khmer Busra Italic + * Khmer Busra Bold Italic + +ChangeLog +--------- +(This should list both major and minor changes, most recent first.) +8 September 2014 (Diethelm Kanjahn) Mondulkiri Font Family version 7.100 +- Mondulkiri changes: + * The hinting has been improved, the difference between regular and bold + is visible on screen in much smaller font sizes than before. + * A few bugs were addressed: the disappearing of glyphs on Mac in certain + strings that do not occur in correctly typed text, a positioning problem + in some Tampuan words on Mac, one syllable in Bunong text on Windows/Linux. + * Minor changes in diacritic placement, mostly on Mac. Coeng Kho and coeng + Ttha were modified. + * Glyphs were added - mostly in the phonetic symbols section. The shaping + tables for Mac were streamlined and are now the same as for the Busra font. +- Busra changes: + * The fonts now have AAT tables so that they work on Mac OS X + * many glyphs were added, the glyph range is the same as in Mondulkiri 7.100 + * many glyph shapes and diacritic placements were improved slightly + * the ligatures of some consonants with the ‘sra-a’, ‘sra-oo’ and ‘sra-ou’ + have changed and are now the same as in Mondulkiri. + * hinting has been improved + * most other changes from Mondulkiri 5.300 to 5.513 are now also in Busra 7.100 + * The descender value was changed which may affect line spacing. + +31 October 2012 (Diethelm Kanjahn) Mondulkiri Font Family version 5.300 +- Split Khmer Mondulkiri fonts from older fonts release +- Support for Apple's AAT rendering system (tested in OS X 10.6.8) as well as + Microsoft OpenType tables. +- Support for typographical features to be used under OS X with software that + does support them (like Pages or TextEdit, but apparently not MS Word or + LibreOffice). +- Support for 'Stylistic Sets' that provide similar options in OpenType as the + ‘typographical features’ in OS X. These Stylistic Sets work in Adobe software + (tested with CS5 and 5.5 on PC), but not in MS Word. MS Word 2010 does support + Stylistic Sets, but apparently only for Latin scripts. +- Support for Khmer Unicode in Adobe CS5 and CS5.5. Two of the Stylistic Sets + address the remaining problems. Please refer to the documentation on stylistic + sets. +- Many Latin script characters have been added. The bold fonts now have also + bold Latin characters. +- Some of the vowel-a ligatures have been changed (e.g. Cho-AA). +- Many characters have been slightly modified. Most significantly the ‘hooks’ or + ‘hair’ of some coengs have been removed(e.g. coeng-Kho, coeng-Ha, coeng-Qa). +- The positioning of many characters was modified. +- Many other smaller modifications of glyphs and rules. +- To prevent register shifters from being rendered as subscript + zero-width-non-joiner has now to be inserted before the register shifter in + accordance with The Unicode Standard. Also zero-width-joiner has to be in this + position now to force the alternative rendering. +- Increased the descender by a small amount so that second level elements are no + longer cut off. +- For users of the Tampuan language: coeng-vo after coeng-ro and shifting of + samyuk before reahmuk are now enabled by default. The Tampuan option now only + covers the width of space and the permission to use samyuk after reahmuk. +- The support for the use of vowels and coengs with independent vowels in OS X + is limited. If there is a real need for improvement please contact the font + designer. +- Changed position of quotes (U+2018-9, 201C-D) and mirrored U+201C. + +09 November 2010 (Diethelm Kanjahn) Mondulkiri Font Family version 5.300 +- First version released under the SIL Open Font License +- First version released on http://scripts.sil.org +- Added fonts: Ratanakiri, all italic typefaces +- Renamed fonts: Busra and Oureang +- Major OpenType code revisions +- Corrections of outlines to comply with TTF conventions +- Many small edits of the outlines +- Outlines are now TrueType outlines +- Improved hinting +- Added characters +- Size of Khmer base characters now equivalent to Roman capital letters. + +2005-09-16 (Diethelm Kanjahn) Mondulkiri Font Family version 1.1 + - OpenType and Graphite test fonts + +2003-04-12 (Diethelm Kanjahn) Mondulkiri Font Family version 0.9 +- first public release as legacy fonts + + +Acknowledgements +---------------- + +N: Diethelm Kanjahn +E: fonts@sil.org +W: http://scripts.sil.org/ +D: Designer and font engineer + +For more information please visit The Mondulkiri Font Family page on SIL +International's +Computers and Writing systems website: +http://scripts.sil.org/Mondulkiri + +Support through the website: http://scripts.sil.org/Support diff --git a/developer/src/kmc-package/test/fixtures/kmp_2.0/shared/fonts/khmer/mondulkiri/Mondulkiri-R.ttf b/developer/src/kmc-package/test/fixtures/kmp_2.0/shared/fonts/khmer/mondulkiri/Mondulkiri-R.ttf new file mode 100644 index 00000000000..e109ed60287 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/kmp_2.0/shared/fonts/khmer/mondulkiri/Mondulkiri-R.ttf differ diff --git a/developer/src/kmc-package/test/fixtures/kmp_2.0/shared/fonts/khmer/mondulkiri/OFL-FAQ.txt b/developer/src/kmc-package/test/fixtures/kmp_2.0/shared/fonts/khmer/mondulkiri/OFL-FAQ.txt new file mode 100644 index 00000000000..0893d7cf52b --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/kmp_2.0/shared/fonts/khmer/mondulkiri/OFL-FAQ.txt @@ -0,0 +1,425 @@ +OFL FAQ - Frequently Asked Questions about the SIL Open Font License (OFL) +Version 1.1-update3 - Sept 2013 +(See http://scripts.sil.org/OFL for updates) + + +CONTENTS OF THIS FAQ +1 USING AND DISTRIBUTING FONTS LICENSED UNDER THE OFL +2 USING OFL FONTS FOR WEB PAGES AND ONLINE WEB FONT SERVICES +3 MODIFYING OFL-LICENSED FONTS +4 LICENSING YOUR ORIGINAL FONTS UNDER THE OFL +5 CHOOSING RESERVED FONT NAMES +6 ABOUT THE FONTLOG +7 MAKING CONTRIBUTIONS TO OFL PROJECTS +8 ABOUT THE LICENSE ITSELF +9 ABOUT SIL INTERNATIONAL +APPENDIX A - FONTLOG EXAMPLE + +1 USING AND DISTRIBUTING FONTS LICENSED UNDER THE OFL + +1.1 Can I use the fonts for a book or other print publication, to create logos or other graphics or even to manufacture objects based on their outlines? +Yes. You are very welcome to do so. Authors of fonts released under the OFL allow you to use their font software as such for any kind of design work. No additional license or permission is required, unlike with some other licenses. Some examples of these uses are: logos, posters, business cards, stationery, video titling, signage, t-shirts, personalised fabric, 3D-printed/laser-cut shapes, sculptures, rubber stamps, cookie cutters and lead type. + +1.1.1 Does that restrict the license or distribution of that artwork? +No. You remain the author and copyright holder of that newly derived graphic or object. You are simply using an open font in the design process. It is only when you redistribute, bundle or modify the font itself that other conditions of the license have to be respected (see below for more details). + +1.1.2 Is any kind of acknowledgement required? +No. Font authors may appreciate being mentioned in your artwork's acknowledgements alongside the name of the font, possibly with a link to their website, but that is not required. + +1.2 Can the fonts be included with Free/Libre and Open Source Software collections such as GNU/Linux and BSD distributions and repositories? +Yes! Fonts licensed under the OFL can be freely included alongside other software under FLOSS (Free/Libre and Open Source Software) licenses. Since fonts are typically aggregated with, not merged into, existing software, there is little need to be concerned about incompatibility with existing software licenses. You may also repackage the fonts and the accompanying components in a .rpm or .deb package (or other similar package formats or installers) and include them in distribution CD/DVDs and online repositories. (Also see section 5.9 about rebuilding from source.) + +1.3 I want to distribute the fonts with my program. Does this mean my program also has to be Free/Libre and Open Source Software? +No. Only the portions based on the Font Software are required to be released under the OFL. The intent of the license is to allow aggregation or bundling with software under restricted licensing as well. + +1.4 Can I sell a software package that includes these fonts? +Yes, you can do this with both the Original Version and a Modified Version of the fonts. Examples of bundling made possible by the OFL would include: word processors, design and publishing applications, training and educational software, games and entertainment software, mobile device applications, etc. + +1.5 Can I include the fonts on a CD of freeware or commercial fonts? +Yes, as long some other font or software is also on the disk, so the OFL font is not sold by itself. + +1.6 Why won't the OFL let me sell the fonts alone? +The intent is to keep people from making money by simply redistributing the fonts. The only people who ought to profit directly from the fonts should be the original authors, and those authors have kindly given up potential direct income to distribute their fonts under the OFL. Please honour and respect their contribution! + +1.7 What about sharing OFL fonts with friends on a CD, DVD or USB stick? +You are very welcome to share open fonts with friends, family and colleagues through removable media. Just remember to include the full font package, including any copyright notices and licensing information as available in OFL.txt. In the case where you sell the font, it has to come bundled with software. + +1.8 Can I host the fonts on a web site for others to use? +Yes, as long as you make the full font package available. In most cases it may be best to point users to the main site that distributes the Original Version so they always get the most recent stable and complete version. See also discussion of web fonts in Section 2. + +1.9 Can I host the fonts on a server for use over our internal network? +Yes. If the fonts are transferred from the server to the client computer by means that allow them to be used even if the computer is no longer attached to the network, the full package (copyright notices, licensing information, etc.) should be included. + +1.10 Does the full OFL license text always need to accompany the font? +The only situation in which an OFL font can be distributed without the text of the OFL (either in a separate file or in font metadata), is when a font is embedded in a document or bundled within a program. In the case of metadata included within a font, it is legally sufficient to include only a link to the text of the OFL on http://scripts.sil.org/OFL, but we strongly recommend against this. Most modern font formats include metadata fields that will accept the full OFL text, and full inclusion increases the likelihood that users will understand and properly apply the license. + +1.11 What do you mean by 'embedding'? How does that differ from other means of distribution? +By 'embedding' we mean inclusion of the font in a document or file in a way that makes extraction (and redistribution) difficult or clearly discouraged. In many cases the names of embedded fonts might also not be obvious to those reading the document, the font data format might be altered, and only a subset of the font - only the glyphs required for the text - might be included. Any other means of delivering a font to another person is considered 'distribution', and needs to be accompanied by any copyright notices and licensing information available in OFL.txt. + +1.12 So can I embed OFL fonts in my document? +Yes, either in full or a subset. The restrictions regarding font modification and redistribution do not apply, as the font is not intended for use outside the document. + +1.13 Does embedding alter the license of the document itself? +No. Referencing or embedding an OFL font in any document does not change the license of the document itself. The requirement for fonts to remain under the OFL does not apply to any document created using the fonts and their derivatives. Similarly, creating any kind of graphic using a font under OFL does not make the resulting artwork subject to the OFL. + +1.14 If OFL fonts are extracted from a document in which they are embedded (such as a PDF file), what can be done with them? Is this a risk to author(s)? +The few utilities that can extract fonts embedded in a PDF will typically output limited amounts of outlines - not a complete font. To create a working font from this method is much more difficult and time consuming than finding the source of the original OFL font. So there is little chance that an OFL font would be extracted and redistributed inappropriately through this method. Even so, copyright laws address any misrepresentation of authorship. All Font Software released under the OFL and marked as such by the author(s) is intended to remain under this license regardless of the distribution method, and cannot be redistributed under any other license. We strongly discourage any font extraction - we recommend directly using the font sources instead - but if you extract font outlines from a document, please be considerate: respect the work of the author(s) and the licensing model. + +1.15 What about distributing fonts with a document? Within a compressed folder structure? Is it distribution, bundling or embedding? +Certain document formats may allow the inclusion of an unmodified font within their file structure which may consist of a compressed folder containing the various resources forming the document (such as pictures and thumbnails). Including fonts within such a structure is understood as being different from embedding but rather similar to bundling (or mere aggregation) which the license explicitly allows. In this case the font is conveyed unchanged whereas embedding a font usually transforms it from the original format. The OFL does not allow anyone to extract the font from such a structure to then redistribute it under another license. The explicit permission to redistribute and embed does not cancel the requirement for the Font Software to remain under the license chosen by its author(s). Even if the font travels inside the document as one of its assets, it should not lose its authorship information and licensing. + +1.16 What about ebooks shipping with open fonts? +The requirements differ depending on whether the fonts are linked, embedded or distributed (bundled or aggregated). Some ebook formats use web technologies to do font linking via @font-face, others are designed for font embedding, some use fonts distributed with the document or reading software, and a few rely solely on the fonts already present on the target system. The license requirements depend on the type of inclusion as discussed in 1.15. + +1.17 Can Font Software released under the OFL be subject to URL-based access restrictions methods or DRM (Digital Rights Management) mechanisms? +Yes, but these issues are out-of-scope for the OFL. The license itself neither encourages their use nor prohibits them since such mechanisms are not implemented in the components of the Font Software but through external software. Such restrictions are put in place for many different purposes corresponding to various usage scenarios. One common example is to limit potentially dangerous cross-site scripting attacks. However, in the spirit of libre/open fonts and unrestricted writing systems, we strongly encourage open sharing and reuse of OFL fonts, and the establishment of an environment where such restrictions are unnecessary. Note that whether you wish to use such mechanisms or you prefer not to, you must still abide by the rules set forth by the OFL when using fonts released by their authors under this license. Derivative fonts must be licensed under the OFL, even if they are part of a service for which you charge fees and/or for which access to source code is restricted. You may not sell the fonts on their own - they must be part of a larger software package, bundle or subscription plan. For example, even if the OFL font is distributed in a software package or via an online service using a DRM mechanism, the user would still have the right to extract that font, use, study, modify and redistribute it under the OFL. + +1.18 I've come across a font released under the OFL. How can I easily get more information about the Original Version? How can I know where it stands compared to the Original Version or other Modified Versions? +Consult the copyright statement(s) in the license for ways to contact the original authors. Consult the FONTLOG (see section 6 for more details and examples) for information on how the font differs from the Original Version, and get in touch with the various contributors via the information in the acknowledgement section. Please consider using the Original Versions of the fonts whenever possible. + +1.19 What do you mean in condition 4 of the OFL's permissions and conditions? Can you provide examples of abusive promotion / endorsement / advertisement vs. normal acknowledgement? +The intent is that the goodwill and reputation of the author(s) should not be used in a way that makes it sound like the original author(s) endorse or approve of a specific Modified Version or software bundle. For example, it would not be right to advertise a word processor by naming the author(s) in a listing of software features, or to promote a Modified Version on a web site by saying "designed by ...". However, it would be appropriate to acknowledge the author(s) if your software package has a list of people who deserve thanks. We realize that this can seem to be a grey area, but the standard used to judge an acknowledgement is that if the acknowledgement benefits the author(s) it is allowed, but if it primarily benefits other parties, or could reflect poorly on the author(s), then it is not. + +1.20 I'm writing a small app for mobile platforms, do I need to include the whole package? +If you bundle a font under the OFL with your mobile app you must comply with the terms of the license. At a minimum you must include the copyright statement, the license notice and the license text. A mention of this information in your About box or Changelog, with a link to where the font package is from, is good practice, and the extra space needed to carry these items is very small. You do not, however, need to include the full contents of the font package - only the fonts you use and the copyright and license that apply to them. For example, if you only use the regular weight in your app, you do not need to include the italic and bold versions. + +1.21 What about including OFL fonts by default in my firmware or dedicated operating system? +Many such systems are restricted and turned into appliances so that users cannot study or modify them. Using open fonts to increase quality and language coverage is a great idea, but you need to be aware that if there is a way for users to extract fonts you cannot legally prevent them from doing that. The fonts themselves, including any changes you make to them, must be distributed under the OFL even if your firmware has a more restrictive license. If you do transform the fonts and change their formats when you include them in your firmware you must respect any names reserved by the font authors via the RFN mechanism and pick your own font name. Alternatively if you directly add a font under the OFL to the font folder of your firmware without modifying or optimizing it you are simply bundling the font like with any other software collection, and do not need to make any further changes. + +1.22 Can I make and publish CMS themes or templates that use OFL fonts? Can I include the fonts themselves in the themes or templates? Can I sell the whole package? +Yes, you are very welcome to integrate open fonts into themes and templates for your preferred CMS and make them more widely available. Remember that you can only sell the fonts and your CMS add-on as part of a software bundle. (See 1.4 for details and examples about selling bundles). + +1.23 Can OFL fonts be included in services that deliver fonts to the desktop from remote repositories? Even if they contain both OFL and non-OFL fonts? +Yes. Some foundries have set up services to deliver fonts to subscribers directly to desktops from their online repositories; similarly, plugins are available to preview and use fonts directly in your design tool or publishing suite. These services may mix open and restricted fonts in the same channel, however they should make a clear distinction between them to users. These services should also not hinder users (such as through DRM or obfuscation mechanisms) from extracting and using the OFL fonts in other environments, or continuing to use OFL fonts after subscription terms have ended, as those uses are specifically allowed by the OFL. + +1.24 Can services that provide or distribute OFL fonts restrict my use of them? +No. The terms of use of such services cannot replace or restrict the terms of the OFL, as that would be the same as distributing the fonts under a different license, which is not allowed. You are still entitled to use, modify and redistribute them as the original authors have intended outside of the sole control of that particular distribution channel. Note, however, that the fonts provided by these services may differ from the Original Versions. + + +2 USING OFL FONTS FOR WEBPAGES AND ONLINE WEB FONT SERVICES + +NOTE: This section often refers to a separate paper on 'Web Fonts & RFNs'. This is available at http://scripts.sil.org/OFL_web_fonts_and_RFNs + +2.1 Can I make webpages using these fonts? +Yes! Go ahead! Using CSS (Cascading Style Sheets) is recommended. Your three best options are: +- referring directly in your stylesheet to open fonts which may be available on the user's system +- providing links to download the full package of the font - either from your own website or from elsewhere - so users can install it themselves +- using @font-face to distribute the font directly to browsers. This is recommended and explicitly allowed by the licensing model because it is distribution. The font file itself is distributed with other components of the webpage. It is not embedded in the webpage but referenced through a web address which will cause the browser to retrieve and use the corresponding font to render the webpage (see 1.11 and 1.15 for details related to embedding fonts into documents). As you take advantage of the @font-face cross-platform standard, be aware that web fonts are often tuned for a web environment and not intended for installation and use outside a browser. The reasons in favour of using web fonts are to allow design of dynamic text elements instead of static graphics, to make it easier for content to be localized and translated, indexed and searched, and all this with cross-platform open standards without depending on restricted extensions or plugins. You should check the CSS cascade (the order in which fonts are being called or delivered to your users) when testing. + +2.2 Can I make and use WOFF (Web Open Font Format) versions of OFL fonts? +Yes, but you need to be careful. A change in font format normally is considered modification, and Reserved Font Names (RFNs) cannot be used. Because of the design of the WOFF format, however, it is possible to create a WOFF version that is not considered modification, and so would not require a name change. You are allowed to create, use and distribute a WOFF version of an OFL font without changing the font name, but only if: + +- the original font data remains unchanged except for WOFF compression, and +- WOFF-specific metadata is either omitted altogether or present and includes, unaltered, the contents of all equivalent metadata in the original font. + +If the original font data or metadata is changed, or the WOFF-specific metadata is incomplete, the font must be considered a Modified Version, the OFL restrictions would apply and the name of the font must be changed: any RFNs cannot be used and copyright notices and licensing information must be included and cannot be deleted or modified. You must come up with a unique name - we recommend one corresponding to your domain or your particular web application. Be aware that only the original author(s) can use RFNs. This is to prevent collisions between a derivative tuned to your audience and the original upstream version and so to reduce confusion. + +Please note that most WOFF conversion tools and online services do not meet the two requirements listed above, and so their output must be considered a Modified Version. So be very careful and check to be sure that the tool or service you're using is compressing unchanged data and completely and accurately reflecting the original font metadata. + +2.3 What about other web font formats such as EOT/EOTLite/CWT/etc.? +In most cases these formats alter the original font data more than WOFF, and do not completely support appropriate metadata, so their use must be considered modification and RFNs may not be used. However, there may be certain formats or usage scenarios that may allow the use of RFNs. See http://scripts.sil.org/OFL_web_fonts_and_RFNs + +2.4 Can I make OFL fonts available through web font online services? +Yes, you are welcome to include OFL fonts in online web font services as long as you properly meet all the conditions of the license. The origin and open status of the font should be clear among the other fonts you are hosting. Authorship, copyright notices and license information must be sufficiently visible to your users or subscribers so they know where the font comes from and the rights granted by the author(s). Make sure the font file contains the needed copyright notice(s) and licensing information in its metadata. Please double-check the accuracy of every field to prevent contradictory information. Other font formats, including EOT/EOTLite/CWT and superior alternatives like WOFF, already provide fields for this information. Remember that if you modify the font within your library or convert it to another format for any reason the OFL restrictions apply and you need to change the names accordingly. Please respect the author's wishes as expressed in the OFL and do not misrepresent original designers and their work. Don't lump quality open fonts together with dubious freeware or public domain fonts. Consider how you can best work with the original designers and foundries, support their efforts and generate goodwill that will benefit your service. (See 1.17 for details related to URL-based access restrictions methods or DRM mechanisms). + +2.5 Some web font formats and services provide ways of "optimizing" the font for a particular website or web application; is that allowed? +Yes, it is permitted, but remember that these optimized versions are Modified Versions and so must follow OFL requirements like appropriate renaming. Also you need to bear in mind the other important parameters beyond compression, speed and responsiveness: you need to consider the audience of your particular website or web application, as choosing some optimization parameters may turn out to be less than ideal for them. Subsetting by removing certain glyphs or features may seriously limit functionality of the font in various languages that your users expect. It may also introduce degradation of quality in the rendering or specific bugs on the various target platforms compared to the original font from upstream. In other words, remember that one person's optimized font may be another person's missing feature. Various advanced typographic features (OpenType, Graphite or AAT) are also available through CSS and may provide the desired effects without the need to modify the font. + +2.6 Is subsetting a web font considered modification? +Yes. Removing any parts of the font when delivering a web font to a browser, including unused glyphs and smart font code, is considered modification. This is permitted by the OFL but would not normally allow the use of RFNs. Some newer subsetting technologies may be able to subset in a way that allows users to effectively have access to the complete font, including smart font behaviour. See 2.8 and http://scripts.sil.org/OFL_web_fonts_and_RFNs + +2.7 Are there any situations in which a modified web font could use RFNs? +Yes. If a web font is optimized only in ways that preserve Functional Equivalence (see 2.8), then it may use RFNs, as it reasonably represents the Original Version and respects the intentions of the author(s) and the main purposes of the RFN mechanism (avoids collisions, protects authors, minimizes support, encourages derivatives). However this is technically very difficult and often impractical, so a much better scenario is for the web font service or provider to sign a separate agreement with the author(s) that allows the use of RFNs for Modified Versions. + +2.8 How do you know if an optimization to a web font preserves Functional Equivalence? +Functional Equivalence is described in full in the 'Web fonts and RFNs' paper at http://scripts.sil.org/OFL_web_fonts_and_RFNs, in general, an optimized font is deemed to be Functionally Equivalent (FE) to the Original Version if it: + +- Supports the same full character inventory. If a character can be properly displayed using the Original Version, then that same character, encoded correctly on a web page, will display properly. +- Provides the same smart font behavior. Any dynamic shaping behavior that works with the Original Version should work when optimized, unless the browser or environment does not support it. There does not need to be guaranteed support in the client, but there should be no forced degradation of smart font or shaping behavior, such as the removal or obfuscation of OpenType, Graphite or AAT tables. +- Presents text with no obvious degradation in visual quality. The lettershapes should be equally (or more) readable, within limits of the rendering platform. +- Preserves original author, project and license metadata. At a minimum, this should include: Copyright and authorship; The license as stated in the Original Version, whether that is the full text of the OFL or a link to the web version; Any RFN declarations; Information already present in the font or documentation that points back to the Original Version, such as a link to the project or the author's website. + +If an optimized font meets these requirements, and so is considered to be FE, then it's very likely that the original author would feel that the optimized font is a good and reasonable equivalent. If it falls short of any of these requirements, the optimized font does not reasonably represent the Original Version, and so should be considered to be a Modified Version. Like other Modified Versions, it would not be allowed to use any RFNs and you simply need to pick your own font name. + +2.9 Isn't use of web fonts another form of embedding? +No. Unlike embedded fonts in a PDF, web fonts are not an integrated part of the document itself. They are not specific to a single document and are often applied to thousands of documents around the world. The font data is not stored alongside the document data and often originates from a different location. The ease by which the web fonts used by a document may be identified and downloaded for desktop use demonstrates that they are philosophically and technically separate from the web pages that specify them. See http://scripts.sil.org/OFL_web_fonts_and_RFNs + +2.10 So would it be better to not use RFNs at all if you want your font to be distributed by a web fonts service? +No. Although the OFL does not require authors to use RFNs, the RFN mechanism is an important part of the OFL model and completely compatible with web font services. If that web font service modifies the fonts, then the best solution is to sign a separate agreement for the use of any RFNs. It is perfectly valid for an author to not declare any RFNs, but before they do so they need to fully understand the benefits they are giving up, and the overall negative effect of allowing many different versions bearing the same name to be widely distributed. As a result, we don't generally recommend it. + +2.11 What should an agreement for the use of RFNs say? Are there any examples? +There is no prescribed format for this agreement, as legal systems vary, and no recommended examples. Authors may wish to add specific clauses to further restrict use, require author review of Modified Versions, establish user support mechanisms or provide terms for ending the agreement. Such agreements are usually not public, and apply only to the main parties. However, it would be very beneficial for web font services to clearly state when they have established such agreements, so that the public understands clearly that their service is operating appropriately. + +See the separate paper on 'Web Fonts & RFNs' for in-depth discussion of issues related to the use of RFNs for web fonts. This is available at http://scripts.sil.org/OFL_web_fonts_and_RFNs + + +3 MODIFYING OFL-LICENSED FONTS + +3.1 Can I change the fonts? Are there any limitations to what things I can and cannot change? +You are allowed to change anything, as long as such changes do not violate the terms of the license. In other words, you are not allowed to remove the copyright statement(s) from the font, but you could put additional information into it that covers your contribution. See the placeholders in the OFL header template for recommendations on where to add your own statements. (Remember that, when authors have reserved names via the RFN mechanism, you need to change the internal names of the font to your own font name when making your modified version even if it is just a small change.) + +3.2 I have a font that needs a few extra glyphs - can I take them from an OFL licensed font and copy them into mine? +Yes, but if you distribute that font to others it must be under the OFL, and include the information mentioned in condition 2 of the license. + +3.3 Can I charge people for my additional work? In other words, if I add a bunch of special glyphs or OpenType/Graphite/AAT code, can I sell the enhanced font? +Not by itself. Derivative fonts must be released under the OFL and cannot be sold by themselves. It is permitted, however, to include them in a larger software package (such as text editors, office suites or operating systems), even if the larger package is sold. In that case, you are strongly encouraged, but not required, to also make that derived font easily and freely available outside of the larger package. + +3.4 Can I pay someone to enhance the fonts for my use and distribution? +Yes. This is a good way to fund the further development of the fonts. Keep in mind, however, that if the font is distributed to others it must be under the OFL. You won't be able to recover your investment by exclusively selling the font, but you will be making a valuable contribution to the community. Please remember how you have benefited from the contributions of others. + +3.5 I need to make substantial revisions to the font to make it work with my program. It will be a lot of work, and a big investment, and I want to be sure that it can only be distributed with my program. Can I restrict its use? +No. If you redistribute a Modified Version of the font it must be under the OFL. You may not restrict it in any way beyond what the OFL permits and requires. This is intended to ensure that all released improvements to the fonts become available to everyone. But you will likely get an edge over competitors by being the first to distribute a bundle with the enhancements. Again, please remember how you have benefited from the contributions of others. + +3.6 Do I have to make any derivative fonts (including extended source files, build scripts, documentation, etc.) publicly available? +No, but please consider sharing your improvements with others. You may find that you receive in return more than what you gave. + +3.7 If a trademark is claimed in the OFL font, does that trademark need to remain in modified fonts? +Yes. Any trademark notices must remain in any derivative fonts to respect trademark laws, but you may add any additional trademarks you claim, officially registered or not. For example if an OFL font called "Foo" contains a notice that "Foo is a trademark of Acme", then if you rename the font to "Bar" when creating a Modified Version, the new trademark notice could say "Foo is a trademark of Acme Inc. - Bar is a trademark of Roadrunner Technologies Ltd.". Trademarks work alongside the OFL and are not subject to the terms of the licensing agreement. The OFL does not grant any rights under trademark law. Bear in mind that trademark law varies from country to country and that there are no international trademark conventions as there are for copyright. You may need to significantly invest in registering and defending a trademark for it to remain valid in the countries you are interested in. This may be costly for an individual independent designer. + +3.8 If I commit changes to a font (or publish a branch in a DVCS) as part of a public open source software project, do I have to change the internal font names? +Only if there are declared RFNs. Making a public commit or publishing a public branch is effectively redistributing your modifications, so any change to the font will require that you do not use the RFNs. Even if there are no RFNs, it may be useful to change the name or add a suffix indicating that a particular version of the font is still in development and not released yet. This will clearly indicate to users and fellow designers that this particular font is not ready for release yet. See section 5 for more details. + + +4 LICENSING YOUR ORIGINAL FONTS UNDER THE OFL + +4.1 Can I use the SIL OFL for my own fonts? +Yes! We heartily encourage everyone to use the OFL to distribute their own original fonts. It is a carefully constructed license that allows great freedom along with enough artistic integrity protection for the work of the authors as well as clear rules for other contributors and those who redistribute the fonts. The licensing model is used successfully by various organisations, both for-profit and not-for-profit, to release fonts of varying levels of scope and complexity. + +4.2 What do I have to do to apply the OFL to my font? +If you want to release your fonts under the OFL, we recommend you do the following: + +4.2.1 Put your copyright and Reserved Font Names information at the beginning of the main OFL.txt file in place of the dedicated placeholders (marked with the <> characters). Include this file in your release package. + +4.2.2 Put your copyright and the OFL text with your chosen Reserved Font Name(s) into your font files (the copyright and license fields). A link to the OFL text on the OFL web site is an acceptable (but not recommended) alternative. Also add this information to any other components (build scripts, glyph databases, documentation, test files, etc). Accurate metadata in your font files is beneficial to you as an increasing number of applications are exposing this information to the user. For example, clickable links can bring users back to your website and let them know about other work you have done or services you provide. Depending on the format of your fonts and sources, you can use template human-readable headers or machine-readable metadata. You should also double-check that there is no conflicting metadata in the font itself contradicting the license, such as the fstype bits in the os2 table or fields in the name table. + +4.2.3 Write an initial FONTLOG.txt for your font and include it in the release package (see Section 6 and Appendix A for details including a template). + +4.2.4 Include the relevant practical documentation on the license by adding the current OFL-FAQ.txt file in your package. + +4.2.5 If you wish you can use the OFL graphics (http://scripts.sil.org/OFL_logo) on your website. + +4.3 Will you make my font OFL for me? +We won't do the work for you. We can, however, try to answer your questions, unfortunately we do not have the resources to review and check your font packages for correct use of the OFL. We recommend you turn to designers, foundries or consulting companies with experience in doing open font design to provide this service to you. + +4.4 Will you distribute my OFL font for me? +No, although if the font is of sufficient quality and general interest we may include a link to it on our partial list of OFL fonts on the OFL web site. You may wish to consider other open font catalogs or hosting services, such as the Unifont Font Guide (http://unifont.org/fontguide), The League of Movable Type (http://theleagueofmovabletype.com) or the Open Font Library (http://openfontlibrary.org/), which despite the name has no direct relationship to the OFL or SIL. We do not endorse any particular catalog or hosting service - it is your responsibility to determine if the service is right for you and if it treats authors with fairness. + +4.5 Why should I use the OFL for my fonts? +- to meet needs for fonts that can be modified to support lesser-known languages +- to provide a legal and clear way for people to respect your work but still use it (and reduce piracy) +- to involve others in your font project +- to enable your fonts to be expanded with new weights and improved writing system/language support +- to allow more technical font developers to add features to your design (such as OpenType, Graphite or AAT support) +- to renew the life of an old font lying on your hard drive with no business model +- to allow your font to be included in Libre Software operating systems like Ubuntu +- to give your font world status and wide, unrestricted distribution +- to educate students about quality typeface and font design +- to expand your test base and get more useful feedback +- to extend your reach to new markets when users see your metadata and go to your website +- to get your font more easily into one of the web font online services +- to attract attention for your commercial fonts +- to make money through web font services +- to make money by bundling fonts with applications +- to make money adjusting and extending existing open fonts +- to get a better chance that foundations/NGOs/charities/companies who commission fonts will pick you +- to be part of a sharing design and development community +- to give back and contribute to a growing body of font sources + + +5 CHOOSING RESERVED FONT NAMES + +5.1 What are Reserved Font Names? +These are font names, or portions of font names, that the author has chosen to reserve for use only with the Original Version of the font, or for Modified Version(s) created by the original author. + +5.2 Why can't I use the Reserved Font Names in my derivative font names? I'd like people to know where the design came from. +The best way to acknowledge the source of the design is to thank the original authors and any other contributors in the files that are distributed with your revised font (although no acknowledgement is required). The FONTLOG is a natural place to do this. Reserved Font Names ensure that the only fonts that have the original names are the unmodified Original Versions. This allows designers to maintain artistic integrity while allowing collaboration to happen. It eliminates potential confusion and name conflicts. When choosing a name, be creative and avoid names that reuse almost all the same letters in the same order or sound like the original. It will help everyone if Original Versions and Modified Versions can easily be distinguished from one another and from other derivatives. Any substitution and matching mechanism is outside the scope of the license. + +5.3 What do you mean by "primary name as presented to the user"? Are you referring to the font menu name? +Yes, this applies to the font menu name and other mechanisms that specify a font in a document. It would be fine, however, to keep a text reference to the original fonts in the description field, in your modified source file or in documentation provided alongside your derivative as long as no one could be confused that your modified source is the original. But you cannot use the Reserved Font Names in any way to identify the font to the user (unless the Copyright Holder(s) allow(s) it through a separate agreement). Users who install derivatives (Modified Versions) on their systems should not see any of the original Reserved Font Names in their font menus, for example. Again, this is to ensure that users are not confused and do not mistake one font for another and so expect features only another derivative or the Original Version can actually offer. + +5.4 Am I not allowed to use any part of the Reserved Font Names? +You may not use individual words from the Reserved Font Names, but you would be allowed to use parts of words, as long as you do not use any word from the Reserved Font Names entirely. We do not recommend using parts of words because of potential confusion, but it is allowed. For example, if "Foobar" was a Reserved Font Name, you would be allowed to use "Foo" or "bar", although we would not recommend it. Such an unfortunate choice would confuse the users of your fonts as well as make it harder for other designers to contribute. + +5.5 So what should I, as an author, identify as Reserved Font Names? +Original authors are encouraged to name their fonts using clear, distinct names, and only declare the unique parts of the name as Reserved Font Names. For example, the author of a font called "Foobar Sans" would declare "Foobar" as a Reserved Font Name, but not "Sans", as that is a common typographical term, and may be a useful word to use in a derivative font name. Reserved Font Names should also be single words for simplicity and legibility. A font called "Flowing River" should have Reserved Font Names "Flowing" and "River", not "Flowing River". You also need to be very careful about reserving font names which are already linked to trademarks (whether registered or not) which you do not own. + +5.6 Do I, as an author, have to identify any Reserved Font Names? +No. RFNs are optional and not required, but we encourage you to use them. This is primarily to avoid confusion between your work and Modified Versions. As an author you can release a font under the OFL and not declare any Reserved Font Names. There may be situations where you find that using no RFNs and letting your font be changed and modified - including any kind of modification - without having to change the original name is desirable. However you need to be fully aware of the consequences. There will be no direct way for end-users and other designers to distinguish your Original Version from many Modified Versions that may be created. You have to trust whoever is making the changes and the optimizations to not introduce problematic changes. The RFNs you choose for your own creation have value to you as an author because they allow you to maintain artistic integrity and keep some control over the distribution channel to your end-users. For discussion of RFNs and web fonts see section 2. + +5.7 Are any names (such as the main font name) reserved by default? +No. That is a change to the license as of version 1.1. If you want any names to be Reserved Font Names, they must be specified after the copyright statement(s). + +5.8 Is there any situation in which I can use Reserved Font Names for a Modified Version? +The Copyright Holder(s) can give certain trusted parties the right to use any of the Reserved Font Names through separate written agreements. For example, even if "Foobar" is a RFN, you could write up an agreement to give company "XYZ" the right to distribute a modified version with a name that includes "Foobar". This allows for freedom without confusion. The existence of such an agreement should be made as clear as possible to downstream users and designers in the distribution package and the relevant documentation. They need to know if they are a party to the agreement or not and what they are practically allowed to do or not even if all the details of the agreement are not public. + +5.9 Do font rebuilds require a name change? Do I have to change the name of the font when my packaging workflow includes a full rebuild from source? +Yes, all rebuilds which change the font data and the smart code are Modified Versions and the requirements of the OFL apply: you need to respect what the Author(s) have chosen in terms of Reserved Font Names. However if a package (or installer) is simply a wrapper or a compressed structure around the final font - leaving them intact on the inside - then no name change is required. Please get in touch with the author(s) and copyright holder(s) to inquire about the presence of font sources beyond the final font file(s) and the recommended build path. That build path may very well be non-trivial and hard to reproduce accurately by the maintainer. If a full font build path is made available by the upstream author(s) please be aware that any regressions and changes you may introduce when doing a rebuild for packaging purposes is your own responsibility as a package maintainer since you are effectively creating a separate branch. You should make it very clear to your users that your rebuilt version is not the canonical one from upstream. + +5.10 Can I add other Reserved Font Names when making a derivative font? +Yes. List your additional Reserved Font Names after your additional copyright statement, as indicated with example placeholders at the top of the OFL.txt file. Be sure you do not remove any existing RFNs but only add your own. RFN statements should be placed next to the copyright statement of the relevant author as indicated in the OFL.txt template to make them visible to designers wishing to make their separate version. + + +6 ABOUT THE FONTLOG + +6.1 What is this FONTLOG thing exactly? +It has three purposes: 1) to provide basic information on the font to users and other designers and developers, 2) to document changes that have been made to the font or accompanying files, either by the original authors or others, and 3) to provide a place to acknowledge authors and other contributors. Please use it! + +6.2 Is the FONTLOG required? +It is not a requirement of the license, but we strongly recommend you have one. + +6.3 Am I required to update the FONTLOG when making Modified Versions? +No, but users, designers and other developers might get very frustrated with you if you don't. People need to know how derivative fonts differ from the original, and how to take advantage of the changes, or build on them. There are utilities that can help create and maintain a FONTLOG, such as the FONTLOG support in FontForge. + +6.4 What should the FONTLOG look like? +It is typically a separate text file (FONTLOG.txt), but can take other formats. It commonly includes these four sections: + +- brief header describing the FONTLOG itself and name of the font family +- Basic Font Information - description of the font family, purpose and breadth +- ChangeLog - chronological listing of changes +- Acknowledgements - list of authors and contributors with contact information + +It could also include other sections, such as: where to find documentation, how to make contributions, information on contributing organizations, source code details, and a short design guide. See Appendix A for an example FONTLOG. + + +7 MAKING CONTRIBUTIONS TO OFL PROJECTS + +7.1 Can I contribute work to OFL projects? +In many cases, yes. It is common for OFL fonts to be developed by a team of people who welcome contributions from the wider community. Contact the original authors for specific information on how to participate in their projects. + +7.2 Why should I contribute my changes back to the original authors? +It would benefit many people if you contributed back in response to what you've received. Your contributions and improvements to the fonts and other components could be a tremendous help and would encourage others to contribute as well and 'give back'. You will then benefit from other people's contributions as well. Sometimes maintaining your own separate version takes more effort than merging back with the original. Be aware that any contributions, however, must be either your own original creation or work that you own, and you may be asked to affirm that clearly when you contribute. + +7.3 I've made some very nice improvements to the font. Will you consider adopting them and putting them into future Original Versions? +Most authors would be very happy to receive such contributions. Keep in mind that it is unlikely that they would want to incorporate major changes that would require additional work on their end. Any contributions would likely need to be made for all the fonts in a family and match the overall design and style. Authors are encouraged to include a guide to the design with the fonts. It would also help to have contributions submitted as patches or clearly marked changes - the use of smart source revision control systems like subversion, mercurial, git or bzr is a good idea. Please follow the recommendations given by the author(s) in terms of preferred source formats and configuration parameters for sending contributions. If this is not indicated in a FONTLOG or other documentation of the font, consider asking them directly. Examples of useful contributions are bug fixes, additional glyphs, stylistic alternates (and the smart font code to access them) or improved hinting. Keep in mind that some kinds of changes (esp. hinting) may be technically difficult to integrate. + +7.4 How can I financially support the development of OFL fonts? +It is likely that most authors of OFL fonts would accept financial contributions - contact them for instructions on how to do this. Such contributions would support future development. You can also pay for others to enhance the fonts and contribute the results back to the original authors for inclusion in the Original Version. + + +8 ABOUT THE LICENSE ITSELF + +8.1 I see that this is version 1.1 of the license. Will there be later changes? +Version 1.1 is the first minor revision of the OFL. We are confident that version 1.1 will meet most needs, but are open to future improvements. Any revisions would be for future font releases, and previously existing licenses would remain in effect. No retroactive changes are possible, although the Copyright Holder(s) can re-release the font under a revised OFL. All versions will be available on our web site: http://scripts.sil.org/OFL. + +8.2 Does this license restrict the rights of the Copyright Holder(s)? +No. The Copyright Holder(s) still retain(s) all the rights to their creation; they are only releasing a portion of it for use in a specific way. For example, the Copyright Holder(s) may choose to release a 'basic' version of their font under the OFL, but sell a restricted 'enhanced' version. Only the Copyright Holder(s) can do this. + +8.3 Is the OFL a contract or a license? +The OFL is a license and not a contract and so does not require you to sign it to have legal validity. By using, modifying and redistributing components under the OFL you indicate that you accept the license. + +8.4 I really like the terms of the OFL, but want to change it a little. Am I allowed to take ideas and actual wording from the OFL and put them into my own custom license for distributing my fonts? +We strongly recommend against creating your very own unique open licensing model. Using a modified or derivative license will likely cut you off - along with the font(s) under that license - from the community of designers using the OFL, potentially expose you and your users to legal liabilities, and possibly put your work and rights at risk. The OFL went though a community and legal review process that took years of effort, and that review is only applicable to an unmodified OFL. The text of the OFL has been written by SIL (with review and consultation from the community) and is copyright (c) 2005-2013 SIL International. You may re-use the ideas and wording (in part, not in whole) in another non-proprietary license provided that you call your license by another unambiguous name, that you do not use the preamble, that you do not mention SIL and that you clearly present your license as different from the OFL so as not to cause confusion by being too similar to the original. If you feel the OFL does not meet your needs for an open license, please contact us. + +8.5 Can I translate the license and the FAQ into other languages? +SIL certainly recognises the need for people who are not familiar with English to be able to understand the OFL and its use. Making the license very clear and readable has been a key goal for the OFL, but we know that people understand their own language best. + +If you are an experienced translator, you are very welcome to translate the OFL and OFL-FAQ so that designers and users in your language community can understand the license better. But only the original English version of the license has legal value and has been approved by the community. Translations do not count as legal substitutes and should only serve as a way to explain the original license. SIL - as the author and steward of the license for the community at large - does not approve any translation of the OFL as legally valid because even small translation ambiguities could be abused and create problems. + +SIL gives permission to publish unofficial translations into other languages provided that they comply with the following guidelines: + +- Put the following disclaimer in both English and the target language stating clearly that the translation is unofficial: + +"This is an unofficial translation of the SIL Open Font License into . It was not published by SIL International, and does not legally state the distribution terms for fonts that use the OFL. A release under the OFL is only valid when using the original English text. However, we recognize that this unofficial translation will help users and designers not familiar with English to better understand and use the OFL. We encourage designers who consider releasing their creation under the OFL to read the OFL-FAQ in their own language if it is available. Please go to http://scripts.sil.org/OFL for the official version of the license and the accompanying OFL-FAQ." + +- Keep your unofficial translation current and update it at our request if needed, for example if there is any ambiguity which could lead to confusion. + +If you start such a unofficial translation effort of the OFL and OFL-FAQ please let us know. + + +9 ABOUT SIL INTERNATIONAL + +9.1 Who is SIL International and what do they do? +SIL serves language communities worldwide, building their capacity for sustainable language development, by means of research, translation, training and materials development. SIL makes its services available to all without regard to religious belief, political ideology, gender, race, or ethnic background. SIL's members and volunteers share a Christian commitment. + +9.2 What does this have to do with font licensing? +The ability to read, write, type and publish in one's own language is one of the most critical needs for millions of people around the world. This requires fonts that are widely available and support lesser-known languages. SIL develops - and encourages others to develop - a complete stack of writing systems implementation components available under open licenses. This open stack includes input methods, smart fonts, smart rendering libraries and smart applications. There has been a need for a common open license that is specifically applicable to fonts and related software (a crucial component of this stack), so SIL developed the SIL Open Font License with the help of the Free/Libre and Open Source Software community. + +9.3 How can I contact SIL? +Our main web site is: http://www.sil.org/ +Our site about complex scripts is: http://scripts.sil.org/ +Information about this license (and contact information) is at: http://scripts.sil.org/OFL + + +APPENDIX A - FONTLOG EXAMPLE + +Here is an example of the recommended format for a FONTLOG, although other formats are allowed. + +----- +FONTLOG for the GlobalFontFamily fonts + +This file provides detailed information on the GlobalFontFamily Font Software. This information should be distributed along with the GlobalFontFamily fonts and any derivative works. + +Basic Font Information + +GlobalFontFamily is a Unicode typeface family that supports all languages that use the Latin script and its variants, and could be expanded to support other scripts. + +NewWorldFontFamily is based on the GlobalFontFamily and also supports Greek, Hebrew, Cyrillic and Armenian. + +More specifically, this release supports the following Unicode ranges... +This release contains... +Documentation can be found at... +To contribute to the project... + +ChangeLog + +10 December 2010 (Fred Foobar) GlobalFontFamily-devel version 1.4 +- fix new build and testing system (bug #123456) + +1 August 2008 (Tom Parker) GlobalFontFamily version 1.2.1 +- Tweaked the smart font code (Branch merged with trunk version) +- Provided improved build and debugging environment for smart behaviours + +7 February 2007 (Pat Johnson) NewWorldFontFamily Version 1.3 +- Added Greek and Cyrillic glyphs + +7 March 2006 (Fred Foobar) NewWorldFontFamily Version 1.2 +- Tweaked contextual behaviours + +1 Feb 2005 (Jane Doe) NewWorldFontFamily Version 1.1 +- Improved build script performance and verbosity +- Extended the smart code documentation +- Corrected minor typos in the documentation +- Fixed position of combining inverted breve below (U+032F) +- Added OpenType/Graphite smart code for Armenian +- Added Armenian glyphs (U+0531 -> U+0587) +- Released as "NewWorldFontFamily" + +1 Jan 2005 (Joe Smith) GlobalFontFamily Version 1.0 +- Initial release + +Acknowledgements + +If you make modifications be sure to add your name (N), email (E), web-address (if you have one) (W) and description (D). This list is in alphabetical order. + +N: Jane Doe +E: jane@university.edu +W: http://art.university.edu/projects/fonts +D: Contributor - Armenian glyphs and code + +N: Fred Foobar +E: fred@foobar.org +W: http://foobar.org +D: Contributor - misc Graphite fixes + +N: Pat Johnson +E: pat@fontstudio.org +W: http://pat.fontstudio.org +D: Designer - Greek & Cyrillic glyphs based on Roman design + +N: Tom Parker +E: tom@company.com +W: http://www.company.com/tom/projects/fonts +D: Engineer - original smart font code + +N: Joe Smith +E: joe@fontstudio.org +W: http://joe.fontstudio.org +D: Designer - original Roman glyphs + +Fontstudio.org is an not-for-profit design group whose purpose is... +Foobar.org is a distributed community of developers... +Company.com is a small business who likes to support community designers... +University.edu is a renowned educational institution with a strong design department... +----- + + diff --git a/developer/src/kmc-package/test/fixtures/kmp_2.0/shared/fonts/khmer/mondulkiri/OFL.txt b/developer/src/kmc-package/test/fixtures/kmp_2.0/shared/fonts/khmer/mondulkiri/OFL.txt new file mode 100644 index 00000000000..aef2579114f --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/kmp_2.0/shared/fonts/khmer/mondulkiri/OFL.txt @@ -0,0 +1,95 @@ +This Font Software is Copyright (c) 2003-2014, SIL International +(http://scripts.sil.org/). with Reserved Font Names "Mondulkiri", +"Busra", "Oureang" and "Ratanakiri". + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/developer/src/kmc-package/test/fixtures/kmp_2.0/splash.gif b/developer/src/kmc-package/test/fixtures/kmp_2.0/splash.gif new file mode 100644 index 00000000000..93b44e9d16e Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/kmp_2.0/splash.gif differ diff --git a/developer/src/kmc-package/test/fixtures/kmp_2.0/welcome/KAK_Documentation_EN.pdf b/developer/src/kmc-package/test/fixtures/kmp_2.0/welcome/KAK_Documentation_EN.pdf new file mode 100644 index 00000000000..23b6f62b8fe Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/kmp_2.0/welcome/KAK_Documentation_EN.pdf differ diff --git a/developer/src/kmc-package/test/fixtures/kmp_2.0/welcome/KAK_Documentation_KH.pdf b/developer/src/kmc-package/test/fixtures/kmp_2.0/welcome/KAK_Documentation_KH.pdf new file mode 100644 index 00000000000..85bd8c0b0b7 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/kmp_2.0/welcome/KAK_Documentation_KH.pdf differ diff --git a/developer/src/kmc-package/test/fixtures/kmp_2.0/welcome/image002.png b/developer/src/kmc-package/test/fixtures/kmp_2.0/welcome/image002.png new file mode 100644 index 00000000000..40ea6a2e8e4 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/kmp_2.0/welcome/image002.png differ diff --git a/developer/src/kmc-package/test/fixtures/kmp_2.0/welcome/keyboard_layout.png b/developer/src/kmc-package/test/fixtures/kmp_2.0/welcome/keyboard_layout.png new file mode 100644 index 00000000000..8ca8b04b337 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/kmp_2.0/welcome/keyboard_layout.png differ diff --git a/developer/src/kmc-package/test/fixtures/kmp_2.0/welcome/welcome.htm b/developer/src/kmc-package/test/fixtures/kmp_2.0/welcome/welcome.htm new file mode 100644 index 00000000000..124d9d20e66 --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/kmp_2.0/welcome/welcome.htm @@ -0,0 +1,54 @@ + + + + Khmer Angkor Keyboard + + +

Khmer Angkor Keyboard

+ +

+ Khmer Angkor Keyboard is an OpenSource. It is free and more than just a user you can also contribute to the betterment of the keyboard if you would like to. +

+ +

Keyboards

+

+ With the users' pitfall in typing Khmer words in mind, Khmer Angkor focuses on the unification of the character orders and spelling rules. These make Khmer Angkor uniquely different from any other keyboards. Khmer Angkor's keyboard layouts were adopted from NiDA keyboard which is widely used at the present. + Here is the keyboard layout: +

+ + + + +

You can simply use Khmer Angkor as you would for any NiDA based keyboard. You may type a word in an order of how it is spelled, not how it appears to be, especially when the vowel is to the left of the consonant. For example, to type the word “តែ” which means ‘tea’, one should type the consonant first and then the vowel (i.e. press key “T” and then “Shift E”).

+ +

The order of characters is:

+

Consonant + Subscript(s) + Consonant Shifter + Vowel + Diacritic

+ +

For more details on the Khmer Angkor Keyboard, please find the documentation included in this package.

+ +

Keyboard Documentations

+

For the documentation in English, click here.

+

For the documentation in Khmer, click here.

+ +

Fonts

+

+ To get Khmer fonts, you may visit one of the three sources below: +

+ +

More Information

+

+ +

+ + + + + \ No newline at end of file diff --git a/developer/src/kmc-package/test/fixtures/normalize_paths/build/khmer_angkor.js b/developer/src/kmc-package/test/fixtures/normalize_paths/build/khmer_angkor.js new file mode 100644 index 00000000000..4ee51e4d3e6 --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/normalize_paths/build/khmer_angkor.js @@ -0,0 +1 @@ +if(typeof keyman === 'undefined') {console.log('Keyboard requires KeymanWeb 10.0 or later');if(typeof tavultesoft !== 'undefined') tavultesoft.keymanweb.util.alert("This keyboard requires KeymanWeb 10.0 or later");} else {KeymanWeb.KR(new Keyboard_khmer_angkor());}function Keyboard_khmer_angkor(){this._v=(typeof keyman!="undefined"&&typeof keyman.version=="string")?parseInt(keyman.version,10):9;this.KI="Keyboard_khmer_angkor";this.KN="Khmer Angkor";this.KMINVER="10.0";this.KV={F:' 1em "Khmer Busra Kbd"',K102:0};this.KV.KLS={"rightalt": ["‍","‌","@","","$","€","៙","៚","*","{","}","≈","","","","","ៜ","","ឯ","ឫ","ឨ","[","]","ឦ","ឱ","ឰ","ឩ","ឳ","\\","","","","+","-","×","÷",":","‘","’","ឝ","៘","៖","ៈ","","","","","","","<",">","#","&","ឞ",";","",",",".","/","","","","",""," "],"rightalt-shift": ["","៱","៲","៳","៴","៵","៶","៷","៸","៹","៰","","","","","","᧠","᧡","᧢","᧣","᧤","᧥","᧦","᧧","᧨","᧩","᧪","᧫","","","","","᧬","᧭","᧮","᧯","᧰","᧱","᧲","᧳","᧴","᧵","᧶","","","","","","","᧷","᧸","᧹","᧺","᧻","᧼","᧽","᧾","᧿","","","","","","",""],"default": ["«","១","២","៣","៤","៥","៦","៧","៨","៩","០","ឥ","ឲ","","","","ឆ","","","រ","ត","យ","","","","ផ","","ឪ","ឮ","","","","","ស","ដ","ថ","ង","ហ","","ក","ល","","","","","","","","","ឋ","ខ","ច","វ","ប","ន","ម","","។","","","","","","","​"],"shift": ["»","!","ៗ","\"","៛","%","","","","(",")","","=","","","","ឈ","","","ឬ","ទ","","","","","ភ","","ឧ","ឭ","","","","","","ឌ","ធ","អ","ះ","ញ","គ","ឡ","","","","","","","","","ឍ","ឃ","ជ","","ព","ណ","","","៕","?","","","","","",""]};this.KV.BK=(function(x){var e=Array.apply(null,Array(65)).map(String.prototype.valueOf,""),r=[],v,i,m=['default','shift','ctrl','shift-ctrl','alt','shift-alt','ctrl-alt','shift-ctrl-alt'];for(i=m.length-1;i>=0;i--)if((v=x[m[i]])||r.length)r=(v?v:e).slice().concat(r);return r})(this.KV.KLS);this.KDU=0;this.KH='';this.KM=0;this.KBVER="1.3";this.KMBM=0x0018;this.KVKD="T_17D2_1780 T_17D2_1781 T_17D2_1782 T_17D2_1783 T_17D2_1784 T_17D2_1785 T_17D2_1786 T_17D2_1787 T_17D2_1788 T_17D2_1789 T_17D2_178A T_17D2_178B T_17D2_178C T_17D2_178D T_17D2_178E T_17D2_178F T_17D2_1790 T_17D2_1791 T_17D2_1792 T_17D2_1793 T_17D2_1794 T_17D2_1795 T_17D2_1796 T_17D2_1797 T_17D2_1798 T_17D2_1799 T_17D2_179A T_17D2_179B T_17D2_179C T_17D2_179D T_17D2_179E T_17D2_179F T_17D2_17A0 T_17D2_17A1 T_17D2_17A2 U_0030 U_0031 U_0032 U_0033 U_0034 U_0035 U_0036 U_0037 U_0038 U_0039";this.KVKL={"phone":{"font":"Khmer Busra Kbd","fontsize":"0.8em","displayUnderlying":false,"layer":[{"id":"default","row":[{"id":"1","key":[{"id":"K_Q","text":"\u1786","sk":[{"layer":"shift","id":"K_Q","text":"\u1788"},{"id":"T_17D2_1786","text":"\uEF86"},{"id":"T_17D2_1788","text":"\uEF88"}]},{"id":"K_W","text":"\uEFB9","sk":[{"layer":"shift","id":"K_W","text":"\uEFBA"}]},{"id":"K_E","text":"\uEFC1","sk":[{"layer":"shift","id":"K_E","text":"\uEFC2"},{"layer":"shift","id":"K_S","text":"\uEFC3"},{"layer":"shift","id":"K_V","text":"\uEF12"},{"id":"U_17AF","text":"\u17AF"},{"id":"U_17B0","text":"\u17B0"}]},{"id":"K_R","text":"\u179A","sk":[{"id":"T_17D2_179A","text":"\uEF9A"},{"id":"U_17AB","text":"\u17AB"},{"id":"U_17AC","text":"\u17AC"}]},{"id":"K_T","text":"\u178F","sk":[{"layer":"shift","id":"K_T","text":"\u1791"},{"id":"T_17D2_178F","text":"\uEF8F"},{"layer":"default","id":"T_17D2_1791","text":"\uEF91"}]},{"id":"K_Y","text":"\u1799","sk":[{"id":"T_17D2_1799","text":"\uEF99"}]},{"id":"K_U","text":"\uEFBB","sk":[{"layer":"shift","id":"K_U","text":"\uEFBC"},{"layer":"shift","id":"K_Y","text":"\uEFBD"},{"id":"U_17A7","text":"\u17A7"},{"layer":"shift","id":"U_17AA","text":"\u17AA"},{"layer":"shift","id":"U_17A9","text":"\u17A9"},{"id":"U_17A8","text":"\u17A8"}]},{"id":"K_I","text":"\uEFB7","sk":[{"layer":"shift","id":"K_I","text":"\uEFB8"},{"id":"U_17A5","text":"\u17A5"},{"layer":"shift","id":"U_17A6","text":"\u17A6"}]},{"id":"K_O","text":"\uEFC4","sk":[{"layer":"shift","id":"K_O","text":"\uEFC5"},{"id":"K_LBRKT","text":"\uEFC0"},{"layer":"shift","id":"K_LBRKT","text":"\uEFBF"},{"layer":"shift","id":"K_COLON","text":"\uEF14"},{"id":"U_17B1","text":"\u17B1"},{"id":"U_17B2","text":"\u17B2"},{"layer":"shift","id":"U_17B3","text":"\u17B3"}]},{"id":"K_P","text":"\u1795","sk":[{"layer":"shift","id":"K_P","text":"\u1797"},{"id":"T_17D2_1795","text":"\uEF95"},{"layer":"default","id":"T_17D2_1797","text":"\uEF97"}]}]},{"id":"2","key":[{"width":"100","id":"K_A","text":"\uEFB6","sk":[{"layer":"shift","id":"K_A","text":"\uEF11"}]},{"id":"K_S","text":"\u179F","sk":[{"id":"T_17D2_179F","text":"\uEF9F"},{"id":"U_179D","text":"\u179D"},{"id":"U_179E","text":"\u179E"}]},{"id":"K_D","text":"\u178A","sk":[{"layer":"shift","id":"K_D","text":"\u178C"},{"id":"T_17D2_178A","text":"\uEF8A"},{"layer":"default","id":"T_17D2_178C","text":"\uEF8C"}]},{"id":"K_F","text":"\u1790","sk":[{"layer":"shift","id":"K_F","text":"\u1792"},{"id":"T_17D2_1790","text":"\uEF90"},{"layer":"default","id":"T_17D2_1792","text":"\uEF92"}]},{"id":"K_G","text":"\u1784","sk":[{"layer":"shift","id":"K_G","text":"\u17A2"},{"id":"T_17D2_1784","text":"\uEF84"},{"layer":"default","id":"T_17D2_17A2","text":"\uEFA2"}]},{"id":"K_H","text":"\u17A0","sk":[{"id":"T_17D2_17A0","text":"\uEFA0"},{"layer":"shift","id":"K_H","text":"\u17C7"},{"id":"U_17C8","text":"\u17C8"}]},{"layer":"shift","id":"K_J","text":"\u1789","sk":[{"id":"T_17D2_1789","text":"\uEF89"}]},{"id":"K_K","text":"\u1780","sk":[{"layer":"shift","id":"K_K","text":"\u1782"},{"id":"T_17D2_1780","text":"\uEF80"},{"id":"T_17D2_1782","text":"\uEF82"}]},{"id":"K_L","text":"\u179B","sk":[{"layer":"shift","id":"K_L","text":"\u17A1"},{"id":"T_17D2_179B","text":"\uEF9B"},{"id":"U_17AD","text":"\u17AD"},{"id":"U_17AE","text":"\u17AE"}]},{"id":"K_COLON","text":"\uEFBE"}]},{"id":"3","key":[{"id":"K_Z","text":"\u178B","sk":[{"layer":"shift","id":"K_Z","text":"\u178D"},{"id":"T_17D2_178B","text":"\uEF8B"},{"layer":"default","id":"T_17D2_178D","text":"\uEF8D"}]},{"id":"K_X","text":"\u1781","sk":[{"layer":"shift","id":"K_X","text":"\u1783"},{"id":"T_17D2_1781","text":"\uEF81"},{"layer":"default","id":"T_17D2_1783","text":"\uEF83"}]},{"id":"K_C","text":"\u1785","sk":[{"layer":"shift","id":"K_C","text":"\u1787"},{"id":"T_17D2_1785","text":"\uEF85"},{"layer":"default","id":"T_17D2_1787","text":"\uEF87"}]},{"id":"K_V","text":"\u179C","sk":[{"id":"T_17D2_179C","text":"\uEF9C"}]},{"id":"K_B","text":"\u1794","sk":[{"layer":"shift","id":"K_B","text":"\u1796"},{"id":"T_17D2_1794","text":"\uEF94"},{"layer":"default","id":"T_17D2_1796","text":"\uEF96"}]},{"id":"K_N","text":"\u1793","sk":[{"layer":"shift","id":"K_N","text":"\u178E"},{"id":"T_17D2_1793","text":"\uEF93"},{"layer":"default","id":"T_17D2_178E","text":"\uEF8E"}]},{"id":"K_M","text":"\u1798","sk":[{"id":"T_17D2_1798","text":"\uEF98"},{"layer":"shift","id":"K_M","text":"\uEFC6"}]},{"id":"K_COMMA","text":"\uEF10","sk":[{"layer":"shift","id":"K_COMMA","text":"\uEF13"},{"layer":"shift","id":"K_6","text":"\uEFCD"},{"layer":"shift","id":"K_7","text":"\uEFD0"},{"layer":"shift","id":"K_8","text":"\uEFCF"},{"layer":"shift","id":"K_HYPHEN","text":"\uEFCC"},{"layer":"shift","id":"U_17D1","text":"\uEFD1"},{"layer":"shift","id":"U_17DD","text":"\uEFDD"},{"layer":"shift","id":"U_17CE","text":"\uEFCE"}]},{"width":"100","id":"K_QUOTE","text":"\uEFCB","sk":[{"layer":"shift","id":"K_QUOTE","text":"\uEFC9"},{"id":"K_SLASH","text":"\uEFCA"}]},{"width":"100","id":"K_BKSP","sp":"1","text":"*BkSp*"}]},{"id":"4","key":[{"nextlayer":"numeric","width":"140","id":"K_NUMLOCK","sp":"1","text":"\u17E1\u17E2\u17E3"},{"width":"120","id":"K_LOPT","sp":"1","text":"*Menu*"},{"width":"555","id":"K_SPACE","text":"\u200B","sk":[{"layer":"default","id":"U_0020","text":" "}]},{"width":"120","id":"K_PERIOD","text":"\u17D4","sk":[{"layer":"shift","id":"K_PERIOD","text":"\u17D5"},{"id":"U_0021","text":"!"},{"id":"U_003F","text":"?"}]},{"width":"140","id":"K_ENTER","sp":"1","text":"*Enter*"}]}]},{"id":"numeric","row":[{"id":"1","key":[{"id":"K_1","text":"\u17E1","sk":[{"id":"U_0031","text":"1"}]},{"id":"K_2","text":"\u17E2","sk":[{"id":"U_0032","text":"2"}]},{"id":"K_3","text":"\u17E3","sk":[{"id":"U_0033","text":"3"}]},{"id":"K_4","text":"\u17E4","sk":[{"id":"U_0034","text":"4"}]},{"id":"K_5","text":"\u17E5","sk":[{"id":"U_0035","text":"5"}]},{"id":"K_6","text":"\u17E6","sk":[{"id":"U_0036","text":"6"}]},{"id":"K_7","text":"\u17E7","sk":[{"id":"U_0037","text":"7"}]},{"id":"K_8","text":"\u17E8","sk":[{"id":"U_0038","text":"8"}]},{"id":"K_9","text":"\u17E9","sk":[{"id":"U_0039","text":"9"}]},{"id":"K_0","text":"\u17E0","sk":[{"id":"U_0030","text":"0"},{"id":"U_17D3","text":"\uEFD3"}]}]},{"id":"2","key":[{"id":"U_0040","text":"@","sk":[{"id":"U_00A9","text":"\u00A9"},{"id":"U_00AE","text":"\u00AE"}]},{"id":"U_0023","text":"#","sk":[{"id":"U_2116","text":"\u2116"},{"id":"U_007E","text":"~"}]},{"id":"U_17DB","text":"\u17DB","sk":[{"id":"U_0024","text":"$"},{"id":"U_0E3F","text":"\u0E3F"},{"id":"U_00A2","text":"\u00A2"},{"id":"U_00A3","text":"\u00A3"},{"id":"U_00A5","text":"\u00A5"}]},{"id":"U_0026","text":"&"},{"id":"U_0025","text":"%","sk":[{"id":"U_2030","text":"\u2030"},{"id":"U_2031","text":"\u2031"}]},{"id":"U_002B","text":"+","sk":[{"id":"U_002D","text":"-"},{"id":"U_00D7","text":"\u00D7"},{"id":"U_00F7","text":"\u00F7"},{"id":"U_00B1","text":"\u00B1"}]},{"id":"U_003D","text":"=","sk":[{"id":"U_005F","text":"_"},{"id":"U_2260","text":"\u2260"}]},{"id":"U_002A","text":"*","sk":[{"id":"U_005E","text":"^"}]},{"id":"U_003F","text":"?","sk":[{"id":"U_00BF","text":"\u00BF"}]},{"id":"U_0021","text":"!","sk":[{"id":"U_00A1","text":"\u00A1"}]}]},{"id":"3","key":[{"id":"U_2018","text":"\u2018","sk":[{"id":"U_2019","text":"\u2019"}]},{"id":"U_201C","text":"\u201C","sk":[{"id":"U_201D","text":"\u201D"}]},{"id":"U_00AB","text":"\u00AB","sk":[{"id":"U_00BB","text":"\u00BB"}]},{"id":"U_002F","text":"\/","sk":[{"id":"U_005C","text":"\\"},{"id":"U_007C","text":"|"},{"id":"U_00A6","text":"\u00A6"}]},{"id":"U_0028","text":"(","sk":[{"id":"U_0029","text":")"},{"id":"U_005B","text":"["},{"id":"U_005D","text":"]"},{"id":"U_007B","text":"{"},{"id":"U_007D","text":"}"}]},{"id":"U_17D9","text":"\u17D9","sk":[{"id":"U_17DA","text":"\u17DA"},{"id":"U_17DC","text":"\u17DC"},{"id":"U_00A7","text":"\u00A7"},{"id":"U_00D8","text":"\u00D8"}]},{"id":"U_17D7","text":"\u17D7"},{"id":"U_003C","text":"<","sk":[{"id":"U_2264","text":"\u2264"},{"id":"U_003E","text":">"},{"id":"U_2265","text":"\u2265"}]},{"id":"U_17D6","text":"\u17D6","sk":[{"id":"U_003A","text":":"},{"id":"U_003B","text":";"},{"id":"U_2026","text":"\u2026"}]},{"id":"K_BKSP","sp":"1","text":"*BkSp*"}]},{"id":"4","key":[{"nextlayer":"default","width":"140","id":"K_LCONTROL","sp":"2","text":"\u17E1\u17E2\u17E3"},{"width":"120","id":"K_LOPT","sp":"1","text":"*Menu*"},{"layer":"shift","width":"555","id":"K_SPACE","text":"\u200B"},{"width":"120","id":"K_PERIOD","text":"\u17D4","sk":[{"layer":"shift","id":"K_PERIOD","text":"\u17D5"},{"id":"U_0021","text":"!"},{"id":"U_003F","text":"?"}]},{"width":"140","id":"K_ENTER","sp":"1","text":"*Enter*"}]}]}]},"tablet":{"font":"Khmer Busra Kbd","fontsize":"0.8em","displayUnderlying":false,"layer":[{"id":"default","row":[{"id":"1","key":[{"id":"K_1","text":"\u17E1"},{"id":"K_2","text":"\u17E2"},{"id":"K_3","text":"\u17E3"},{"id":"K_4","text":"\u17E4"},{"id":"K_5","text":"\u17E5"},{"id":"K_6","text":"\u17E6"},{"id":"K_7","text":"\u17E7"},{"id":"K_8","text":"\u17E8"},{"id":"K_9","text":"\u17E9"},{"id":"K_0","text":"\u17E0"},{"id":"K_HYPHEN","text":"\u17A5"},{"id":"K_EQUAL","text":"\u17B2"},{"width":"100","id":"K_BKSP","sp":"1","text":"*BkSp*"}]},{"id":"2","key":[{"id":"K_Q","pad":"75","text":"\u1786"},{"id":"K_W","text":"\uEFB9"},{"id":"K_E","text":"\uEFC1"},{"id":"K_R","text":"\u179A"},{"id":"K_T","text":"\u178F"},{"id":"K_Y","text":"\u1799"},{"id":"K_U","text":"\uEFBB"},{"id":"K_I","text":"\uEFB7"},{"id":"K_O","text":"\uEFC4"},{"id":"K_P","text":"\u1795"},{"id":"K_LBRKT","text":"\uEFC0"},{"id":"K_RBRKT","text":"\u17AA"},{"width":"10","id":"T_new_138","sp":"10"}]},{"id":"3","key":[{"id":"K_BKQUOTE","text":"\u00AB"},{"id":"K_A","text":"\uEFB6"},{"id":"K_S","text":"\u179F"},{"id":"K_D","text":"\u178A"},{"id":"K_F","text":"\u1790"},{"id":"K_G","text":"\u1784"},{"id":"K_H","text":"\u17A0"},{"id":"K_J","text":"\uEFD2"},{"id":"K_K","text":"\u1780"},{"id":"K_L","text":"\u179B"},{"id":"K_COLON","text":"\uEFBE"},{"id":"K_QUOTE","text":"\uEFCB"},{"id":"K_BKSLASH","text":"\u17AE"}]},{"id":"4","key":[{"nextlayer":"shift","width":"160","id":"K_SHIFT","sp":"1","text":"*Shift*"},{"id":"K_oE2"},{"id":"K_Z","text":"\u178B"},{"id":"K_X","text":"\u1781"},{"id":"K_C","text":"\u1785"},{"id":"K_V","text":"\u179C"},{"id":"K_B","text":"\u1794"},{"id":"K_N","text":"\u1793"},{"id":"K_M","text":"\u1798"},{"id":"K_COMMA","text":"\uEF10"},{"id":"K_PERIOD","text":"\u17D4"},{"id":"K_SLASH","text":"\uEFCA"},{"width":"10","id":"T_new_164","sp":"10"}]},{"id":"5","key":[{"nextlayer":"rightalt","width":"160","id":"K_LCONTROL","sp":"1","text":"*AltGr*"},{"width":"160","id":"K_LOPT","sp":"1","text":"*Menu*"},{"width":"930","id":"K_SPACE","text":"\u200B"},{"width":"160","id":"K_ENTER","sp":"1","text":"*Enter*"}]}]},{"id":"rightalt","row":[{"id":"1","key":[{"id":"K_1","text":"\u200C"},{"id":"K_2","text":"@"},{"id":"K_3","text":"\uEFD1"},{"id":"K_4","text":"$"},{"id":"K_5","text":"\u20AC"},{"id":"K_6","text":"\u17D9"},{"id":"K_7","text":"\u17DA"},{"id":"K_8","text":"*"},{"id":"K_9","text":"{"},{"id":"K_0","text":"}"},{"id":"K_HYPHEN","text":"\u2248"},{"id":"K_EQUAL","text":"\uEFCE"},{"width":"100","id":"K_BKSP","sp":"1","text":"*BkSp*"}]},{"id":"2","key":[{"id":"K_Q","pad":"75","text":"\u17DC"},{"id":"K_W","text":"\uEFDD"},{"id":"K_E","text":"\u17AF"},{"id":"K_R","text":"\u17AB"},{"id":"K_T","text":"\u17A8"},{"id":"K_Y","text":"["},{"id":"K_U","text":"]"},{"id":"K_I","text":"\u17A6"},{"id":"K_O","text":"\u17B1"},{"id":"K_P","text":"\u17B0"},{"id":"K_LBRKT","text":"\u17A9"},{"id":"K_RBRKT","text":"\u17B3"},{"width":"10","id":"T_new_307","sp":"10"}]},{"id":"3","key":[{"id":"K_BKQUOTE","text":"\u200D"},{"id":"K_A","text":"+"},{"id":"K_S","text":"-"},{"id":"K_D","text":"\u00D7"},{"id":"K_F","text":"\u00F7"},{"id":"K_G","text":":"},{"id":"K_H","text":"\u2018"},{"id":"K_J","text":"\u2019"},{"id":"K_K","text":"\u179D"},{"id":"K_L","text":"\u17D8"},{"id":"K_COLON","text":"\u17D6"},{"id":"K_QUOTE","text":"\u17C8"},{"id":"K_BKSLASH","text":"\\"}]},{"id":"4","key":[{"nextlayer":"shift","width":"160","id":"K_SHIFT","sp":"1","text":"*Shift*"},{"id":"K_oE2"},{"id":"K_Z","text":"<"},{"id":"K_X","text":">"},{"id":"K_C","text":"#"},{"id":"K_V","text":"&"},{"id":"K_B","text":"\u179E"},{"id":"K_N","text":";"},{"id":"K_M","text":"\uEFD3"},{"id":"K_COMMA","text":","},{"id":"K_PERIOD","text":"."},{"id":"K_SLASH","text":"\/"},{"width":"10","id":"T_new_333","sp":"10"}]},{"id":"5","key":[{"nextlayer":"default","width":"160","id":"K_LCONTROL","sp":"2","text":"*AltGr*"},{"width":"160","id":"K_LOPT","sp":"1","text":"*Menu*"},{"width":"930","id":"K_SPACE","text":"\u00A0"},{"width":"160","id":"K_ENTER","sp":"1","text":"*Enter*"}]}]},{"id":"shift","row":[{"id":"1","key":[{"id":"K_1","text":"!"},{"id":"K_2","text":"\u17D7"},{"id":"K_3","text":"\""},{"id":"K_4","text":"\u17DB"},{"id":"K_5","text":"%"},{"id":"K_6","text":"\uEFCD"},{"id":"K_7","text":"\uEFD0"},{"id":"K_8","text":"\uEFCF"},{"id":"K_9","text":"("},{"id":"K_0","text":")"},{"id":"K_HYPHEN","text":"\uEFCC"},{"id":"K_EQUAL","text":"="},{"width":"100","id":"K_BKSP","sp":"1","text":"*BkSp*"}]},{"id":"2","key":[{"id":"K_Q","pad":"75","text":"\u1788"},{"id":"K_W","text":"\uEFBA"},{"id":"K_E","text":"\uEFC2"},{"id":"K_R","text":"\u17AC"},{"id":"K_T","text":"\u1791"},{"id":"K_Y","text":"\uEFBD"},{"id":"K_U","text":"\uEFBC"},{"id":"K_I","text":"\uEFB8"},{"id":"K_O","text":"\uEFC5"},{"id":"K_P","text":"\u1797"},{"id":"K_LBRKT","text":"\uEFBF"},{"id":"K_RBRKT","text":"\u17A7"},{"width":"10","id":"T_new_364","sp":"10"}]},{"id":"3","key":[{"id":"K_BKQUOTE","text":"\u00BB"},{"id":"K_A","text":"\uEF11"},{"id":"K_S","text":"\uEFC3"},{"id":"K_D","text":"\u178C"},{"id":"K_F","text":"\u1792"},{"id":"K_G","text":"\u17A2"},{"id":"K_H","text":"\u17C7"},{"id":"K_J","text":"\u1789"},{"id":"K_K","text":"\u1782"},{"id":"K_L","text":"\u17A1"},{"id":"K_COLON","text":"\uEF14"},{"id":"K_QUOTE","text":"\uEFC9"},{"id":"K_BKSLASH","text":"\u17AD"}]},{"id":"4","key":[{"nextlayer":"default","width":"160","id":"K_SHIFT","sp":"2","text":"*Shift*"},{"id":"K_oE2"},{"id":"K_Z","text":"\u178D"},{"id":"K_X","text":"\u1783"},{"id":"K_C","text":"\u1787"},{"id":"K_V","text":"\uEF12"},{"id":"K_B","text":"\u1796"},{"id":"K_N","text":"\u178E"},{"id":"K_M","text":"\uEFC6"},{"id":"K_COMMA","text":"\uEF13"},{"id":"K_PERIOD","text":"\u17D5"},{"id":"K_SLASH","text":"?"},{"width":"10","id":"T_new_390","sp":"10"}]},{"id":"5","key":[{"nextlayer":"rightalt","width":"160","id":"K_LCONTROL","sp":"1","text":"*AltGr*"},{"width":"160","id":"K_LOPT","sp":"1","text":"*Menu*"},{"width":"930","id":"K_SPACE"},{"width":"160","id":"K_ENTER","sp":"1","text":"*Enter*"}]}]}]}};this.s12=['','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''];this.s13="កខគឃងចឆជឈញដឋឌឍណតថទធនបផពភមយរលវសហឡអឝឞ";this.s14=['','','','','','','','','','','','','','','',''];this.s15="ាិីឹឺុូួើឿៀេែៃោៅ";this.s16=['','',''];this.s17="ំះៈ";this.s18=['','','','','','','','','','','','','','','','','','',''];this.s19="ាិីឹឺុូួើឿៀេែៃោៅំះៈ";this.s20="ាិីឹឺុូួើឿៀេែៃោៅំះៈ";this.s21="េោុិីឹែ";this.s22="ាុ";this.s23="េោុិីឹែាុ";this.s24=['','','','','','','','','','','','','','',''];this.s25="ឥឦឧឨឩឪឫឬឭឮឯឰឱឲឳ";this.s26=['','','','','','','','','','',''];this.s27="់័៌៏៍ៈ៎៑៝ៜ្";this.s28=['',''];this.s29="៉៊";this.s30=['','','','','','','',''];this.s31="។៕៖ៗ៘៙៚៓";this.s32=['','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''];this.s33="«»()!\"%=?{}\\@*,×./[]‍‌+-÷:≈‘’;<>#&";this.s34=['','',''];this.s35="​  ";this.s36=['','',''];this.s37="៛$€";this.s38=['','','','','','','','','',''];this.s39="០១២៣៤៥៦៧៨៩";this.s40=['','','','','','','','','',''];this.s41="៰៱៲៳៴៵៶៷៸៹";this.s42=['','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''];this.s43="᧬᧻᧹᧮᧢᧯᧰᧱᧧᧲᧳᧴᧽᧼᧨᧩᧠᧣᧭᧤᧦᧺᧡᧸᧥᧷᧵᧾᧿᧪᧫᧶";this.s44=['','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''];this.s45="កខគឃងចឆជឈញដឋឌឍណតថទធនបផពភមយរលវឝឞសហឡអ";this.s46=['','','','','','','','','',''];this.s47="0123456789";this.s48="ិីឹឺើ័";this.s49="សហអ";this.s50="ប";this.s51="ងញមយរវនល";this.s52="ងញមយរវនលប";this.s53="យមងបវ";this.s54="យលងរ";this.s55="បហអ";this.s56="ហសអ";this.s57="បយលមនញងរវអ";this.s58="ឆឈបផតទ";this.s59="វឣ";this.s63="touch";this.KVER="15.0.270.0";this.KVS=[];this.gs=function(t,e) {return this.g0(t,e);};this.gs=function(t,e) {return this.g0(t,e);};this.g0=function(t,e) {var k=KeymanWeb,r=0,m=0;if(k.KKM(e,16384,8)) {if(k.KFCM(2,t,['្',{t:'a',a:this.s13}])&&k.KIFS(31,this.s63,t)){r=m=1;k.KDC(2,t);}else if(k.KFCM(2,t,[{t:'a',a:this.s22},'ំ'])){r=m=1;k.KDC(2,t);}else if(k.KFCM(2,t,[{t:'a',a:this.s21},'ះ'])){r=m=1;k.KDC(2,t);}}else if(k.KKM(e,16392,75)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឝ");}}else if(k.KKM(e,16392,66)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឞ");}}else if(k.KKM(e,16392,222)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ៈ");}else if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ៈ");}}else if(k.KKM(e,16392,221)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឳ");}}else if(k.KKM(e,16392,80)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឰ");}}else if(k.KKM(e,16392,73)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឦ");}}else if(k.KKM(e,16392,84)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឨ");}}else if(k.KKM(e,16392,79)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឱ");}}else if(k.KKM(e,16392,219)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឩ");}}else if(k.KKM(e,16392,82)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឫ");}}else if(k.KKM(e,16392,69)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឯ");}}else if(k.KKM(e,16392,87)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៝");}}else if(k.KKM(e,16392,51)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៑");}}else if(k.KKM(e,16392,187)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៎");}}else if(k.KKM(e,16392,81)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ៜ");}}else if(k.KKM(e,16392,186)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៖");}}else if(k.KKM(e,16392,77)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៓");}}else if(k.KKM(e,16392,76)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៘");}}else if(k.KKM(e,16392,54)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៙");}}else if(k.KKM(e,16392,55)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៚");}}else if(k.KKM(e,16392,192)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"‍");}}else if(k.KKM(e,16392,49)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"‌");}}else if(k.KKM(e,16392,85)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"]");}}else if(k.KKM(e,16392,89)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"[");}}else if(k.KKM(e,16392,191)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"/");}}else if(k.KKM(e,16392,65)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"+");}}else if(k.KKM(e,16392,83)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"-");}}else if(k.KKM(e,16392,70)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"÷");}}else if(k.KKM(e,16392,190)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,".");}}else if(k.KKM(e,16392,220)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"\\");}}else if(k.KKM(e,16392,48)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"}");}}else if(k.KKM(e,16392,71)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,":");}}else if(k.KKM(e,16392,68)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"×");}}else if(k.KKM(e,16392,188)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,",");}}else if(k.KKM(e,16392,189)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"≈");}}else if(k.KKM(e,16392,56)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"*");}}else if(k.KKM(e,16392,72)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"‘");}}else if(k.KKM(e,16392,50)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"@");}}else if(k.KKM(e,16392,74)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"’");}}else if(k.KKM(e,16392,78)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,";");}}else if(k.KKM(e,16392,90)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"<");}}else if(k.KKM(e,16392,88)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,">");}}else if(k.KKM(e,16392,57)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"{");}}else if(k.KKM(e,16392,86)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"&");}}else if(k.KKM(e,16392,67)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"#");}}else if(k.KKM(e,16392,53)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"€");}}else if(k.KKM(e,16392,52)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"$");}}else if(k.KKM(e,16408,52)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៴");}}else if(k.KKM(e,16408,56)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៸");}}else if(k.KKM(e,16408,48)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៰");}}else if(k.KKM(e,16408,49)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៱");}}else if(k.KKM(e,16408,50)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៲");}}else if(k.KKM(e,16408,51)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៳");}}else if(k.KKM(e,16408,57)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៹");}}else if(k.KKM(e,16408,53)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៵");}}else if(k.KKM(e,16408,54)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៶");}}else if(k.KKM(e,16408,55)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៷");}}else if(k.KKM(e,16408,221)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧫");}}else if(k.KKM(e,16408,219)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧪");}}else if(k.KKM(e,16408,65)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧬");}}else if(k.KKM(e,16408,66)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧻");}}else if(k.KKM(e,16408,67)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧹");}}else if(k.KKM(e,16408,68)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧮");}}else if(k.KKM(e,16408,69)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧢");}}else if(k.KKM(e,16408,70)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧯");}}else if(k.KKM(e,16408,71)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧰");}}else if(k.KKM(e,16408,72)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧱");}}else if(k.KKM(e,16408,222)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧶");}}else if(k.KKM(e,16408,74)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧲");}}else if(k.KKM(e,16408,75)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧳");}}else if(k.KKM(e,16408,76)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧴");}}else if(k.KKM(e,16408,77)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧽");}}else if(k.KKM(e,16408,78)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧼");}}else if(k.KKM(e,16408,79)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧨");}}else if(k.KKM(e,16408,80)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧩");}}else if(k.KKM(e,16408,81)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧠");}}else if(k.KKM(e,16408,82)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧣");}}else if(k.KKM(e,16408,83)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧭");}}else if(k.KKM(e,16408,84)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧤");}}else if(k.KKM(e,16408,85)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧦");}}else if(k.KKM(e,16408,86)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧺");}}else if(k.KKM(e,16408,87)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧡");}}else if(k.KKM(e,16408,88)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧸");}}else if(k.KKM(e,16408,89)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧥");}}else if(k.KKM(e,16408,190)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧿");}}else if(k.KKM(e,16408,90)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧷");}}else if(k.KKM(e,16408,186)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧵");}}else if(k.KKM(e,16408,188)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧾");}}else if(k.KKM(e,16408,73)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"᧧");}}else if(k.KKM(e,16392,32)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t," ");}}else if(k.KKM(e,16384,261)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ច");}}else if(k.KKM(e,16384,260)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ង");}}else if(k.KKM(e,16384,264)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ឈ");}}else if(k.KKM(e,16384,265)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ញ");}}else if(k.KKM(e,16384,262)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ឆ");}}else if(k.KKM(e,16384,259)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ឃ");}}else if(k.KKM(e,16384,266)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ដ");}}else if(k.KKM(e,16384,267)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ឋ");}}else if(k.KKM(e,16384,268)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ឌ");}}if(m) {}else if(k.KKM(e,16384,290)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្អ");}}else if(k.KKM(e,16384,289)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ឡ");}}else if(k.KKM(e,16384,288)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ហ");}}else if(k.KKM(e,16384,287)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ស");}}else if(k.KKM(e,16384,286)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ឞ");}}else if(k.KKM(e,16384,285)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ឝ");}}else if(k.KKM(e,16384,284)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្វ");}}else if(k.KKM(e,16384,283)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ល");}}else if(k.KKM(e,16384,282)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្រ");}}else if(k.KKM(e,16384,281)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្យ");}}else if(k.KKM(e,16384,280)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ម");}}else if(k.KKM(e,16384,279)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ភ");}}else if(k.KKM(e,16384,278)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ព");}}else if(k.KKM(e,16384,277)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ផ");}}else if(k.KKM(e,16384,276)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ប");}}else if(k.KKM(e,16384,275)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ន");}}else if(k.KKM(e,16384,274)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ធ");}}else if(k.KKM(e,16384,273)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ទ");}}else if(k.KKM(e,16384,272)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ថ");}}else if(k.KKM(e,16384,271)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ត");}}else if(k.KKM(e,16384,256)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ក");}}else if(k.KKM(e,16384,270)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ណ");}}else if(k.KKM(e,16384,257)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ខ");}}else if(k.KKM(e,16384,258)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្គ");}}else if(k.KKM(e,16384,269)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ឍ");}}else if(k.KKM(e,16384,263)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្ជ");}}else if(k.KKM(e,16384,106)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"*");}}else if(k.KKM(e,16400,106)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"*");}}else if(k.KKM(e,16384,107)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"+");}}else if(k.KKM(e,16400,107)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"+");}}else if(k.KKM(e,16384,109)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"-");}}else if(k.KKM(e,16400,109)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"-");}}else if(k.KKM(e,16384,110)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,".");}}else if(k.KKM(e,16400,110)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,".");}}else if(k.KKM(e,16384,111)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"/");}}else if(k.KKM(e,16400,111)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"/");}}else if(k.KKM(e,16384,32)) {if(k.KFCM(1,t,['​'])){r=m=1;k.KDC(1,t);k.KO(-1,t," ");}else if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"​");}}else if(k.KKM(e,16400,32)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t," ");}}else if(k.KKM(e,16400,49)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"!");}}else if(k.KKM(e,16400,222)) {if(k.KFCM(3,t,[{t:'a',a:this.s58},'្','អ'])){r=m=1;k.KDC(3,t);k.KIO(-1,this.s58,1,t);k.KO(-1,t,"្អ៉");k.KB(t);}else if(k.KFCM(3,t,['ល','្',{t:'a',a:this.s55}])){r=m=1;k.KDC(3,t);k.KO(-1,t,"ល្");k.KIO(-1,this.s55,3,t);k.KO(-1,t,"៉");k.KB(t);}else if(k.KFCM(3,t,['ម','្',{t:'a',a:this.s56}])){r=m=1;k.KDC(3,t);k.KO(-1,t,"ម្");k.KIO(-1,this.s56,3,t);k.KO(-1,t,"៉");k.KB(t);}else if(k.KFCM(3,t,['ស','្',{t:'a',a:this.s57}])){r=m=1;k.KDC(3,t);k.KO(-1,t,"ស្");k.KIO(-1,this.s57,3,t);k.KO(-1,t,"៉");k.KB(t);}else if(k.KFCM(3,t,[{t:'a',a:this.s59},'្','ហ'])){r=m=1;k.KDC(3,t);k.KIO(-1,this.s59,1,t);k.KO(-1,t,"្ហ៉");k.KB(t);}else if(k.KFCM(3,t,['អ','្','ង'])){r=m=1;k.KDC(3,t);k.KO(-1,t,"អ្ង៉");k.KB(t);}else if(k.KFCM(3,t,['អ','្','វ'])){r=m=1;k.KDC(3,t);k.KO(-1,t,"អ្វ៉");k.KB(t);}else if(k.KFCM(1,t,[{t:'a',a:this.s29}])){r=m=1;k.KDC(1,t);k.KIO(-1,this.s29,1,t);k.KB(t);}else if(k.KFCM(1,t,[{t:'a',a:this.s49}])){r=m=1;k.KDC(1,t);k.KIO(-1,this.s49,1,t);k.KO(-1,t,"៉");k.KB(t);}else if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៉");}}else if(k.KKM(e,16400,51)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"\"");}}else if(k.KKM(e,16400,52)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៛");}}else if(k.KKM(e,16400,53)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"%");}}else if(k.KKM(e,16400,55)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"័");}}else if(k.KKM(e,16384,222)) {if(k.KFCM(2,t,['្',{t:'a',a:this.s13}])){r=m=1;k.KDC(2,t);k.KO(-1,t,"្");k.KIO(-1,this.s13,2,t);k.KB(t);}else if(k.KFCM(1,t,[{t:'a',a:this.s15}])){r=m=1;k.KDC(1,t);k.KIO(-1,this.s15,1,t);k.KB(t);}else if(k.KFCM(1,t,[{t:'a',a:this.s17}])){r=m=1;k.KDC(1,t);k.KIO(-1,this.s17,1,t);k.KB(t);}else if(k.KFCM(1,t,[{t:'a',a:this.s29}])){r=m=1;k.KDC(1,t);k.KIO(-1,this.s29,1,t);k.KB(t);}else if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"់");}}else if(k.KKM(e,16400,57)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"(");}}else if(k.KKM(e,16400,48)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,")");}}else if(k.KKM(e,16400,56)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៏");}}else if(k.KKM(e,16400,187)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"=");}}else if(k.KKM(e,16384,188)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ុំ");}}else if(k.KKM(e,16384,189)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឥ");}}else if(k.KKM(e,16384,190)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"។");}}else if(k.KKM(e,16384,191)) {if(k.KFCM(3,t,['ល','្',{t:'a',a:this.s53}])){r=m=1;k.KDC(3,t);k.KO(-1,t,"ល្");k.KIO(-1,this.s53,3,t);k.KO(-1,t,"៊");k.KB(t);}else if(k.KFCM(3,t,['ម','្',{t:'a',a:this.s54}])){r=m=1;k.KDC(3,t);k.KO(-1,t,"ម្");k.KIO(-1,this.s54,3,t);k.KO(-1,t,"៊");k.KB(t);}else if(k.KFCM(1,t,[{t:'a',a:this.s29}])){r=m=1;k.KDC(1,t);k.KIO(-1,this.s29,1,t);k.KB(t);}else if(k.KFCM(1,t,[{t:'a',a:this.s52}])){r=m=1;k.KDC(1,t);k.KIO(-1,this.s52,1,t);k.KO(-1,t,"៊");k.KB(t);}else if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៊");}}else if(k.KKM(e,16384,48)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"០");}}else if(k.KKM(e,16384,49)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"១");}}else if(k.KKM(e,16384,50)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"២");}}else if(k.KKM(e,16384,51)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៣");}}else if(k.KKM(e,16384,52)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៤");}}else if(k.KKM(e,16384,53)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៥");}}else if(k.KKM(e,16384,54)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៦");}}else if(k.KKM(e,16384,55)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៧");}}else if(k.KKM(e,16384,56)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៨");}}else if(k.KKM(e,16384,57)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៩");}}else if(k.KKM(e,16400,186)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ោះ");}}else if(k.KKM(e,16384,186)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ើ");}}else if(k.KKM(e,16400,188)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ុះ");}}else if(k.KKM(e,16384,187)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឲ");}}else if(k.KKM(e,16400,190)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៕");}}else if(k.KKM(e,16400,191)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"?");}}else if(k.KKM(e,16400,50)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ៗ");}}else if(k.KKM(e,16400,65)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ាំ");}}else if(k.KKM(e,16400,66)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ព");}}else if(k.KKM(e,16400,67)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ជ");}}else if(k.KKM(e,16400,68)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឌ");}}else if(k.KKM(e,16400,69)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ែ");}}else if(k.KKM(e,16400,70)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ធ");}}else if(k.KKM(e,16400,71)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"អ");}}else if(k.KKM(e,16400,72)) {if(k.KFCM(1,t,['ះ'])){r=m=1;k.KDC(1,t);k.KO(-1,t,"ៈ");}else if(k.KFCM(1,t,['ៈ'])){r=m=1;k.KDC(1,t);k.KO(-1,t,"ះ");}else if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ះ");}}else if(k.KKM(e,16400,73)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ី");}}else if(k.KKM(e,16400,74)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ញ");}}else if(k.KKM(e,16400,75)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"គ");}}else if(k.KKM(e,16400,76)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឡ");}}else if(k.KKM(e,16400,77)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ំ");}}else if(k.KKM(e,16400,78)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ណ");}}else if(k.KKM(e,16400,79)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ៅ");}}else if(k.KKM(e,16400,80)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ភ");}}else if(k.KKM(e,16400,81)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឈ");}}else if(k.KKM(e,16400,82)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឬ");}}else if(k.KKM(e,16400,83)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ៃ");}}else if(k.KKM(e,16400,84)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ទ");}}else if(k.KKM(e,16400,85)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ូ");}}else if(k.KKM(e,16400,86)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"េះ");}}else if(k.KKM(e,16400,87)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឺ");}}else if(k.KKM(e,16400,88)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឃ");}}else if(k.KKM(e,16400,89)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ួ");}}else if(k.KKM(e,16400,90)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឍ");}}else if(k.KKM(e,16384,219)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ៀ");}}else if(k.KKM(e,16384,220)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឮ");}}else if(k.KKM(e,16384,221)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឪ");}}else if(k.KKM(e,16400,54)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៍");}}if(m) {}else if(k.KKM(e,16400,189)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"៌");}}else if(k.KKM(e,16384,192)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"«");}}else if(k.KKM(e,16384,65)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ា");}}else if(k.KKM(e,16384,66)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ប");}}else if(k.KKM(e,16384,67)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ច");}}else if(k.KKM(e,16384,68)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ដ");}}else if(k.KKM(e,16384,69)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"េ");}}else if(k.KKM(e,16384,70)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ថ");}}else if(k.KKM(e,16384,71)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ង");}}else if(k.KKM(e,16384,72)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ហ");}}else if(k.KKM(e,16384,73)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ិ");}}else if(k.KKM(e,16384,74)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"្");}}else if(k.KKM(e,16384,75)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ក");}}else if(k.KKM(e,16384,76)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ល");}}else if(k.KKM(e,16384,77)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ម");}}else if(k.KKM(e,16384,78)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ន");}}else if(k.KKM(e,16384,79)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ោ");}}else if(k.KKM(e,16384,80)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ផ");}}else if(k.KKM(e,16384,81)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឆ");}}else if(k.KKM(e,16384,82)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"រ");}}else if(k.KKM(e,16384,83)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ស");}}else if(k.KKM(e,16384,84)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ត");}}else if(k.KKM(e,16384,85)) {if(k.KFCM(3,t,[{t:'a',a:this.s49},'ា','ំ'])){r=m=1;k.KDC(3,t);k.KIO(-1,this.s49,1,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(3,t,[{t:'a',a:this.s52},'ា','ំ'])){r=m=1;k.KDC(3,t);k.KIO(-1,this.s52,1,t);k.KO(-1,t,"៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ុ");}}else if(k.KKM(e,16384,86)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"វ");}}else if(k.KKM(e,16384,87)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឹ");}}else if(k.KKM(e,16384,88)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ខ");}}else if(k.KKM(e,16384,89)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"យ");}}else if(k.KKM(e,16384,90)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឋ");}}else if(k.KKM(e,16400,219)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឿ");}}else if(k.KKM(e,16400,220)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឭ");}}else if(k.KKM(e,16400,221)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"ឧ");}}else if(k.KKM(e,16400,192)) {if(1){r=m=1;k.KDC(0,t);k.KO(-1,t,"»");}}if(m==1) {k.KDC(-1,t);r=this.g1(t,e);m=2;}return r;};this.g1=function(t,e) {var k=KeymanWeb,r=1,m=0;if(k.KFCM(7,t,[{t:'a',a:this.s58},'្','អ','ុ','ំ','ា','ំ'])){m=1;k.KDC(7,t);k.KIO(-1,this.s58,1,t);k.KO(-1,t,"្");k.KO(-1,t,"អ៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(7,t,['ល','្',{t:'a',a:this.s55},'ុ','ំ','ា','ំ'])){m=1;k.KDC(7,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s55,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(7,t,['ម','្',{t:'a',a:this.s56},'ុ','ំ','ា','ំ'])){m=1;k.KDC(7,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s56,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(7,t,['ស','្','ប','ុ','ំ','ា','ំ'])){m=1;k.KDC(7,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KO(-1,t,"ប៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(7,t,['ស','្',{t:'a',a:this.s57},'ុ','ំ','ា','ំ'])){m=1;k.KDC(7,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KIO(-1,this.s57,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(7,t,[{t:'a',a:this.s59},'្','ហ','ុ','ំ','ា','ំ'])){m=1;k.KDC(7,t);k.KIO(-1,this.s59,1,t);k.KO(-1,t,"្");k.KO(-1,t,"ហ៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(7,t,['អ','្','ង','ុ','ំ','ា','ំ'])){m=1;k.KDC(7,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"ង៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(7,t,['អ','្','វ','ុ','ំ','ា','ំ'])){m=1;k.KDC(7,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"វ៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(7,t,['ហ','្','ប','ុ','ំ','ា','ំ'])){m=1;k.KDC(7,t);k.KO(-1,t,"ហ");k.KO(-1,t,"្");k.KO(-1,t,"ប៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(7,t,['ហ','្',{t:'a',a:this.s52},'ុ','ំ','ា','ំ'])){m=1;k.KDC(7,t);k.KO(-1,t,"ហ");k.KO(-1,t,"្");k.KIO(-1,this.s52,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(7,t,['ល','្',{t:'a',a:this.s53},'ុ','ំ','ា','ំ'])){m=1;k.KDC(7,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s53,3,t);k.KO(-1,t,"៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(7,t,['ម','្',{t:'a',a:this.s54},'ុ','ំ','ា','ំ'])){m=1;k.KDC(7,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s54,3,t);k.KO(-1,t,"៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['្','ដ',{t:'a',a:this.s22},'ំ','្','រ'])){m=1;k.KDC(6,t);k.KO(-1,t,"្ត");k.KO(-1,t,"្");k.KO(-1,t,"រ");k.KIO(-1,this.s22,3,t);k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['្','ដ',{t:'a',a:this.s21},'ះ','្','រ'])){m=1;k.KDC(6,t);k.KO(-1,t,"្ត");k.KO(-1,t,"្");k.KO(-1,t,"រ");k.KIO(-1,this.s21,3,t);k.KO(-1,t,"ះ");}else if(k.KFCM(6,t,['្','រ',{t:'a',a:this.s22},'ំ','្','ដ'])){m=1;k.KDC(6,t);k.KO(-1,t,"្ត");k.KO(-1,t,"្");k.KO(-1,t,"រ");k.KIO(-1,this.s22,3,t);k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['្','រ',{t:'a',a:this.s21},'ះ','្','ដ'])){m=1;k.KDC(6,t);k.KO(-1,t,"្ត");k.KO(-1,t,"្");k.KO(-1,t,"រ");k.KIO(-1,this.s21,3,t);k.KO(-1,t,"ះ");}else if(k.KFCM(6,t,['្','រ',{t:'a',a:this.s22},'ំ','្',{t:'a',a:this.s45}])){m=1;k.KDC(6,t);k.KO(-1,t,"្");k.KIO(-1,this.s45,6,t);k.KO(-1,t,"្");k.KO(-1,t,"រ");k.KIO(-1,this.s22,3,t);k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['្','រ',{t:'a',a:this.s21},'ះ','្',{t:'a',a:this.s45}])){m=1;k.KDC(6,t);k.KO(-1,t,"្");k.KIO(-1,this.s45,6,t);k.KO(-1,t,"្");k.KO(-1,t,"រ");k.KIO(-1,this.s21,3,t);k.KO(-1,t,"ះ");}else if(k.KFCM(6,t,[{t:'a',a:this.s58},'្','អ','ុ','ា','ំ'])){m=1;k.KDC(6,t);k.KIO(-1,this.s58,1,t);k.KO(-1,t,"្");k.KO(-1,t,"អ៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ល','្',{t:'a',a:this.s55},'ុ','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s55,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ម','្',{t:'a',a:this.s56},'ុ','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s56,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ស','្','ប','ុ','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KO(-1,t,"ប៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ស','្',{t:'a',a:this.s57},'ុ','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KIO(-1,this.s57,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,[{t:'a',a:this.s59},'្','ហ','ុ','ា','ំ'])){m=1;k.KDC(6,t);k.KIO(-1,this.s59,1,t);k.KO(-1,t,"្");k.KO(-1,t,"ហ៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['អ','្','ង','ុ','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"ង៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['អ','្','វ','ុ','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"វ៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ហ','្','ប','ុ','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ហ");k.KO(-1,t,"្");k.KO(-1,t,"ប៉");k.KO(-1,t,"ប");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ហ','្',{t:'a',a:this.s52},'ុ','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ហ");k.KO(-1,t,"្");k.KIO(-1,this.s52,3,t);k.KO(-1,t,"៊");k.KIO(-1,this.s52,3,t);k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ល','្',{t:'a',a:this.s53},'ុ','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s53,3,t);k.KO(-1,t,"៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ម','្',{t:'a',a:this.s54},'ុ','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s54,3,t);k.KO(-1,t,"៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ល','្',{t:'a',a:this.s53},'៊',{t:'a',a:this.s15},{t:'a',a:this.s17}])){m=1;k.KDC(6,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s53,3,t);k.KO(-1,t,"៉");k.KIO(-1,this.s15,5,t);k.KIO(-1,this.s17,6,t);}else if(k.KFCM(6,t,['ម','្',{t:'a',a:this.s54},'៊',{t:'a',a:this.s15},{t:'a',a:this.s17}])){m=1;k.KDC(6,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s54,3,t);k.KO(-1,t,"៉");k.KIO(-1,this.s15,5,t);k.KIO(-1,this.s17,6,t);}else if(k.KFCM(6,t,[{t:'a',a:this.s58},'្','អ','៉','ា','ំ'])){m=1;k.KDC(6,t);k.KIO(-1,this.s58,1,t);k.KO(-1,t,"្");k.KO(-1,t,"អ៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ល','្',{t:'a',a:this.s55},'៉','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s55,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ម','្',{t:'a',a:this.s56},'៉','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s56,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ស','្','ប','៉','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KO(-1,t,"ប៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ស','្',{t:'a',a:this.s57},'៉','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KIO(-1,this.s57,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,[{t:'a',a:this.s59},'្','ហ','៉','ា','ំ'])){m=1;k.KDC(6,t);k.KIO(-1,this.s59,1,t);k.KO(-1,t,"្");k.KO(-1,t,"ហ៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['អ','្','ង','៉','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"ង៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['អ','្','វ','៉','ា','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"វ៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,[{t:'a',a:this.s58},'្','អ','ា','ុ','ំ'])){m=1;k.KDC(6,t);k.KIO(-1,this.s58,1,t);k.KO(-1,t,"្");k.KO(-1,t,"អ៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,[{t:'a',a:this.s58},'្','អ','ុ','ំ','ា'])){m=1;k.KDC(6,t);k.KIO(-1,this.s58,1,t);k.KO(-1,t,"្");k.KO(-1,t,"អ៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ល','្',{t:'a',a:this.s55},'ា','ុ','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s55,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ល','្',{t:'a',a:this.s55},'ុ','ំ','ា'])){m=1;k.KDC(6,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s55,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ម','្',{t:'a',a:this.s56},'ា','ុ','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s56,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ម','្',{t:'a',a:this.s56},'ុ','ំ','ា'])){m=1;k.KDC(6,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s56,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ស','្',{t:'a',a:this.s57},'ា','ុ','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KIO(-1,this.s57,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ស','្',{t:'a',a:this.s57},'ុ','ំ','ា'])){m=1;k.KDC(6,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KIO(-1,this.s57,3,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,[{t:'a',a:this.s59},'្','ហ','ា','ុ','ំ'])){m=1;k.KDC(6,t);k.KIO(-1,this.s59,1,t);k.KO(-1,t,"្");k.KO(-1,t,"ហ៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,[{t:'a',a:this.s59},'្','ហ','ុ','ំ','ា'])){m=1;k.KDC(6,t);k.KIO(-1,this.s59,1,t);k.KO(-1,t,"្");k.KO(-1,t,"ហ៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['អ','្','ង','ា','ុ','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"ង៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['អ','្','ង','ុ','ំ','ា'])){m=1;k.KDC(6,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"ង៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['អ','្','វ','ា','ុ','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"វ៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['អ','្','វ','ុ','ំ','ា'])){m=1;k.KDC(6,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"វ៊");k.KO(-1,t,"ុ");k.KO(-1,t,"ា");}else if(k.KFCM(6,t,['ល','្',{t:'a',a:this.s53},'ា','ុ','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s53,3,t);k.KO(-1,t,"៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ល','្',{t:'a',a:this.s53},'ុ','ំ','ា'])){m=1;k.KDC(6,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s53,3,t);k.KO(-1,t,"៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ម','្',{t:'a',a:this.s54},'ា','ុ','ំ'])){m=1;k.KDC(6,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s54,3,t);k.KO(-1,t,"៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,['ម','្',{t:'a',a:this.s54},'ុ','ំ','ា'])){m=1;k.KDC(6,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s54,3,t);k.KO(-1,t,"៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(6,t,[{t:'a',a:this.s58},'្','អ','េ','ុ','ី'])){m=1;k.KDC(6,t);k.KIO(-1,this.s58,1,t);k.KO(-1,t,"្");k.KO(-1,t,"អ៊ើ");}else if(k.KFCM(6,t,[{t:'a',a:this.s58},'្','អ','ុ','េ','ី'])){m=1;k.KDC(6,t);k.KIO(-1,this.s58,1,t);k.KO(-1,t,"្");k.KO(-1,t,"អ៊ើ");}else if(k.KFCM(6,t,[{t:'a',a:this.s58},'្','អ','៉','េ','ី'])){m=1;k.KDC(6,t);k.KIO(-1,this.s58,1,t);k.KO(-1,t,"្");k.KO(-1,t,"អ៊ើ");}else if(k.KFCM(6,t,['ល','្',{t:'a',a:this.s55},'េ','ុ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s55,3,t);k.KO(-1,t,"៊ើ");}else if(k.KFCM(6,t,['ល','្',{t:'a',a:this.s55},'ុ','េ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s55,3,t);k.KO(-1,t,"៊ើ");}else if(k.KFCM(6,t,['ល','្',{t:'a',a:this.s55},'៉','េ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s55,3,t);k.KO(-1,t,"៊ើ");}else if(k.KFCM(6,t,['ម','្',{t:'a',a:this.s56},'េ','ុ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s56,3,t);k.KO(-1,t,"៊ើ");}else if(k.KFCM(6,t,['ម','្',{t:'a',a:this.s56},'ុ','េ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s56,3,t);k.KO(-1,t,"៊ើ");}else if(k.KFCM(6,t,['ម','្',{t:'a',a:this.s56},'៉','េ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s56,3,t);k.KO(-1,t,"៊ើ");}else if(k.KFCM(6,t,['ស','្',{t:'a',a:this.s57},'េ','ុ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KIO(-1,this.s57,3,t);k.KO(-1,t,"៊ើ");}else if(k.KFCM(6,t,['ស','្',{t:'a',a:this.s57},'ុ','េ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KIO(-1,this.s57,3,t);k.KO(-1,t,"៊ើ");}else if(k.KFCM(6,t,['ស','្',{t:'a',a:this.s57},'៉','េ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KIO(-1,this.s57,3,t);k.KO(-1,t,"៊ើ");}else if(k.KFCM(6,t,[{t:'a',a:this.s59},'្','ហ','េ','ុ','ី'])){m=1;k.KDC(6,t);k.KIO(-1,this.s59,1,t);k.KO(-1,t,"្");k.KO(-1,t,"ហ៊ើ");}else if(k.KFCM(6,t,[{t:'a',a:this.s59},'្','ហ','ុ','េ','ី'])){m=1;k.KDC(6,t);k.KIO(-1,this.s59,1,t);k.KO(-1,t,"្");k.KO(-1,t,"ហ៊ើ");}else if(k.KFCM(6,t,[{t:'a',a:this.s59},'្','ហ','៉','េ','ី'])){m=1;k.KDC(6,t);k.KIO(-1,this.s59,1,t);k.KO(-1,t,"្");k.KO(-1,t,"ហ៊ើ");}else if(k.KFCM(6,t,['អ','្','ង','េ','ុ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"ង៊ើ");}else if(k.KFCM(6,t,['អ','្','ង','ុ','េ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"ង៊ើ");}else if(k.KFCM(6,t,['អ','្','ង','៉','េ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"ង៊ើ");}else if(k.KFCM(6,t,['អ','្','វ','េ','ុ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"វ៊ើ");}else if(k.KFCM(6,t,['អ','្','វ','ុ','េ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"វ៊ើ");}else if(k.KFCM(6,t,['អ','្','វ','៉','េ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"វ៊ើ");}else if(k.KFCM(6,t,['ល','្',{t:'a',a:this.s53},'េ','ុ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s53,3,t);k.KO(-1,t,"៉ើ");}else if(k.KFCM(6,t,['ល','្',{t:'a',a:this.s53},'ុ','េ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s53,3,t);k.KO(-1,t,"៉ើ");}else if(k.KFCM(6,t,['ល','្',{t:'a',a:this.s53},'៊','េ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s53,3,t);k.KO(-1,t,"៉ើ");}else if(k.KFCM(6,t,['ម','្',{t:'a',a:this.s54},'េ','ុ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s54,3,t);k.KO(-1,t,"៉ើ");}else if(k.KFCM(6,t,['ម','្',{t:'a',a:this.s54},'ុ','េ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s54,3,t);k.KO(-1,t,"៉ើ");}else if(k.KFCM(6,t,['ម','្',{t:'a',a:this.s54},'៊','េ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s54,3,t);k.KO(-1,t,"៉ើ");}else if(k.KFCM(6,t,['្','យ','្',{t:'a',a:this.s13},'េ','ឺ'])){m=1;k.KDC(6,t);k.KO(-1,t,"្");k.KIO(-1,this.s13,4,t);k.KO(-1,t,"ឿ");}else if(k.KFCM(6,t,['្','យ','្',{t:'a',a:this.s13},'េ','ឹ'])){m=1;k.KDC(6,t);k.KO(-1,t,"្");k.KIO(-1,this.s13,4,t);k.KO(-1,t,"ឿ");}else if(k.KFCM(6,t,['្','យ','្',{t:'a',a:this.s13},'េ','ី'])){m=1;k.KDC(6,t);k.KO(-1,t,"្");k.KIO(-1,this.s13,4,t);k.KO(-1,t,"ឿ");}else if(k.KFCM(5,t,[{t:'a',a:this.s29},{t:'a',a:this.s22},'ំ','្',{t:'a',a:this.s45}])){m=1;k.KDC(5,t);k.KO(-1,t,"្");k.KIO(-1,this.s45,5,t);k.KIO(-1,this.s29,1,t);k.KIO(-1,this.s22,2,t);k.KO(-1,t,"ំ");}else if(k.KFCM(5,t,[{t:'a',a:this.s29},{t:'a',a:this.s21},'ះ','្',{t:'a',a:this.s45}])){m=1;k.KDC(5,t);k.KO(-1,t,"្");k.KIO(-1,this.s45,5,t);k.KIO(-1,this.s29,1,t);k.KIO(-1,this.s21,2,t);k.KO(-1,t,"ះ");}else if(k.KFCM(5,t,['្','ដ',{t:'a',a:this.s20},'្','រ'])){m=1;k.KDC(5,t);k.KO(-1,t,"្ត");k.KO(-1,t,"្");k.KO(-1,t,"រ");k.KIO(-1,this.s20,3,t);}else if(k.KFCM(5,t,['្','រ',{t:'a',a:this.s20},'្','ដ'])){m=1;k.KDC(5,t);k.KO(-1,t,"្ត");k.KO(-1,t,"្");k.KO(-1,t,"រ");k.KIO(-1,this.s20,3,t);}else if(k.KFCM(5,t,['្','រ',{t:'a',a:this.s29},'្',{t:'a',a:this.s45}])){m=1;k.KDC(5,t);k.KO(-1,t,"្");k.KIO(-1,this.s45,5,t);k.KO(-1,t,"្");k.KO(-1,t,"រ");k.KIO(-1,this.s29,3,t);}else if(k.KFCM(5,t,['្','រ',{t:'a',a:this.s20},'្',{t:'a',a:this.s45}])){m=1;k.KDC(5,t);k.KO(-1,t,"្");k.KIO(-1,this.s45,5,t);k.KO(-1,t,"្");k.KO(-1,t,"រ");k.KIO(-1,this.s20,3,t);}else if(k.KFCM(5,t,[{t:'a',a:this.s58},'្','អ','ុ',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KIO(-1,this.s58,1,t);k.KO(-1,t,"្");k.KO(-1,t,"អ៊");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,[{t:'a',a:this.s58},'្','អ',{t:'a',a:this.s48},'ុ'])){m=1;k.KDC(5,t);k.KIO(-1,this.s58,1,t);k.KO(-1,t,"្");k.KO(-1,t,"អ៊");k.KIO(-1,this.s48,4,t);}else if(k.KFCM(5,t,['ល','្',{t:'a',a:this.s55},'ុ',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s55,3,t);k.KO(-1,t,"៊");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['ល','្',{t:'a',a:this.s55},{t:'a',a:this.s48},'ុ'])){m=1;k.KDC(5,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s55,3,t);k.KO(-1,t,"៊");k.KIO(-1,this.s48,4,t);}else if(k.KFCM(5,t,['ម','្',{t:'a',a:this.s56},'ុ',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s56,3,t);k.KO(-1,t,"៊");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['ម','្',{t:'a',a:this.s56},{t:'a',a:this.s48},'ុ'])){m=1;k.KDC(5,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s56,3,t);k.KO(-1,t,"៊");k.KIO(-1,this.s48,4,t);}if(m) {}else if(k.KFCM(5,t,['ស','្','ប','ុ',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KO(-1,t,"ប៉");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['ស','្','ប',{t:'a',a:this.s48},'ុ'])){m=1;k.KDC(5,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KO(-1,t,"ប៉");k.KIO(-1,this.s48,4,t);}else if(k.KFCM(5,t,['ស','្',{t:'a',a:this.s57},'ុ',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KIO(-1,this.s57,3,t);k.KO(-1,t,"៊");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['ស','្',{t:'a',a:this.s57},{t:'a',a:this.s48},'ុ'])){m=1;k.KDC(5,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KIO(-1,this.s57,3,t);k.KO(-1,t,"៊");k.KIO(-1,this.s48,4,t);}else if(k.KFCM(5,t,[{t:'a',a:this.s59},'្','ហ','ុ',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KIO(-1,this.s59,1,t);k.KO(-1,t,"្");k.KO(-1,t,"ហ៊");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,[{t:'a',a:this.s59},'្','ហ',{t:'a',a:this.s48},'ុ'])){m=1;k.KDC(5,t);k.KIO(-1,this.s59,1,t);k.KO(-1,t,"្");k.KO(-1,t,"ហ៊");k.KIO(-1,this.s48,4,t);}else if(k.KFCM(5,t,['អ','្','ង','ុ',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"ង៊");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['អ','្','ង',{t:'a',a:this.s48},'ុ'])){m=1;k.KDC(5,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"ង៊");k.KIO(-1,this.s48,4,t);}else if(k.KFCM(5,t,['អ','្','វ','ុ',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"វ៊");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['អ','្','វ',{t:'a',a:this.s48},'ុ'])){m=1;k.KDC(5,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"វ៊");k.KIO(-1,this.s48,4,t);}else if(k.KFCM(5,t,['ហ','្','ប','ុ',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"ហ");k.KO(-1,t,"្");k.KO(-1,t,"ប៉");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['ហ','្','ប',{t:'a',a:this.s48},'ុ'])){m=1;k.KDC(5,t);k.KO(-1,t,"ហ");k.KO(-1,t,"្");k.KO(-1,t,"ប៉");k.KIO(-1,this.s48,4,t);}else if(k.KFCM(5,t,['ហ','្',{t:'a',a:this.s52},'ុ',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"ហ");k.KO(-1,t,"្");k.KIO(-1,this.s52,3,t);k.KO(-1,t,"៊");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['ហ','្',{t:'a',a:this.s52},{t:'a',a:this.s48},'ុ'])){m=1;k.KDC(5,t);k.KO(-1,t,"ហ");k.KO(-1,t,"្");k.KIO(-1,this.s52,3,t);k.KO(-1,t,"៊");k.KIO(-1,this.s48,4,t);}else if(k.KFCM(5,t,['ល','្',{t:'a',a:this.s53},'ុ',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s53,3,t);k.KO(-1,t,"៉");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['ល','្',{t:'a',a:this.s53},{t:'a',a:this.s48},'ុ'])){m=1;k.KDC(5,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s53,3,t);k.KO(-1,t,"៉");k.KIO(-1,this.s48,4,t);}else if(k.KFCM(5,t,['ម','្',{t:'a',a:this.s54},'ុ',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s54,3,t);k.KO(-1,t,"៉");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['ម','្',{t:'a',a:this.s54},{t:'a',a:this.s48},'ុ'])){m=1;k.KDC(5,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s54,3,t);k.KO(-1,t,"៉");k.KIO(-1,this.s48,4,t);}else if(k.KFCM(5,t,[{t:'a',a:this.s49},'ុ','ំ','ា','ំ'])){m=1;k.KDC(5,t);k.KIO(-1,this.s49,1,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(5,t,[{t:'a',a:this.s52},'ុ','ំ','ា','ំ'])){m=1;k.KDC(5,t);k.KIO(-1,this.s52,1,t);k.KO(-1,t,"៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(5,t,['ល','្',{t:'a',a:this.s53},'៊',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s53,3,t);k.KO(-1,t,"៉");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['ម','្',{t:'a',a:this.s54},'៊',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s54,3,t);k.KO(-1,t,"៉");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['្',{t:'a',a:this.s51},'៊',{t:'a',a:this.s15},{t:'a',a:this.s17}])){m=1;k.KDC(5,t);k.KO(-1,t,"្");k.KIO(-1,this.s51,2,t);k.KO(-1,t,"៊");k.KIO(-1,this.s15,4,t);k.KIO(-1,this.s17,5,t);}else if(k.KFCM(5,t,[{t:'a',a:this.s58},'្','អ','៉',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KIO(-1,this.s58,1,t);k.KO(-1,t,"្");k.KO(-1,t,"អ៊");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['ល','្',{t:'a',a:this.s55},'៉',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"ល");k.KO(-1,t,"្");k.KIO(-1,this.s55,3,t);k.KO(-1,t,"៊");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['ម','្',{t:'a',a:this.s56},'៉',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"ម");k.KO(-1,t,"្");k.KIO(-1,this.s56,3,t);k.KO(-1,t,"៊");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['ស','្','ប','៉',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KO(-1,t,"ប៉");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['ស','្',{t:'a',a:this.s57},'៉',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"ស");k.KO(-1,t,"្");k.KIO(-1,this.s57,3,t);k.KO(-1,t,"៊");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,[{t:'a',a:this.s59},'្','ហ','៉',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KIO(-1,this.s59,1,t);k.KO(-1,t,"្");k.KO(-1,t,"ហ៊");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['អ','្','ង','៉',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"ង៊");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['អ','្','វ','៉',{t:'a',a:this.s48}])){m=1;k.KDC(5,t);k.KO(-1,t,"អ");k.KO(-1,t,"្");k.KO(-1,t,"វ៊");k.KIO(-1,this.s48,5,t);}else if(k.KFCM(5,t,['ព','័','ន','្','ឋ'])){m=1;k.KDC(5,t);k.KO(-1,t,"ព");k.KO(-1,t,"័");k.KO(-1,t,"ន");k.KO(-1,t,"្ធ");}else if(k.KFCM(4,t,[{t:'a',a:this.s15},{t:'a',a:this.s17},{t:'a',a:this.s15},{t:'a',a:this.s17}])){m=1;k.KDC(4,t);k.KIO(-1,this.s15,3,t);k.KIO(-1,this.s17,4,t);}else if(k.KFCM(4,t,[{t:'a',a:this.s22},'ំ','្',{t:'a',a:this.s45}])){m=1;k.KDC(4,t);k.KO(-1,t,"្");k.KIO(-1,this.s45,4,t);k.KIO(-1,this.s22,1,t);k.KO(-1,t,"ំ");}else if(k.KFCM(4,t,[{t:'a',a:this.s21},'ះ','្',{t:'a',a:this.s45}])){m=1;k.KDC(4,t);k.KO(-1,t,"្");k.KIO(-1,this.s45,4,t);k.KIO(-1,this.s21,1,t);k.KO(-1,t,"ះ");}else if(k.KFCM(4,t,[{t:'a',a:this.s29},{t:'a',a:this.s20},'្',{t:'a',a:this.s45}])){m=1;k.KDC(4,t);k.KO(-1,t,"្");k.KIO(-1,this.s45,4,t);k.KIO(-1,this.s29,1,t);k.KIO(-1,this.s20,2,t);}else if(k.KFCM(4,t,['្','ដ','្','រ'])){m=1;k.KDC(4,t);k.KO(-1,t,"្ត");k.KO(-1,t,"្");k.KO(-1,t,"រ");}else if(k.KFCM(4,t,['្','រ','្','ដ'])){m=1;k.KDC(4,t);k.KO(-1,t,"្ត");k.KO(-1,t,"្");k.KO(-1,t,"រ");}else if(k.KFCM(4,t,['្','រ','្',{t:'a',a:this.s45}])){m=1;k.KDC(4,t);k.KO(-1,t,"្");k.KIO(-1,this.s45,4,t);k.KO(-1,t,"្");k.KO(-1,t,"រ");}else if(k.KFCM(4,t,[{t:'a',a:this.s29},{t:'a',a:this.s15},{t:'a',a:this.s17},{t:'a',a:this.s29}])){m=1;k.KDC(4,t);k.KIO(-1,this.s15,2,t);k.KIO(-1,this.s17,3,t);k.KIO(-1,this.s29,4,t);}else if(k.KFCM(4,t,[{t:'a',a:this.s49},'ុ','ា','ំ'])){m=1;k.KDC(4,t);k.KIO(-1,this.s49,1,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(4,t,[{t:'a',a:this.s52},'ុ','ា','ំ'])){m=1;k.KDC(4,t);k.KIO(-1,this.s52,1,t);k.KO(-1,t,"៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(4,t,[{t:'a',a:this.s51},'៊',{t:'a',a:this.s15},{t:'a',a:this.s17}])){m=1;k.KDC(4,t);k.KIO(-1,this.s51,1,t);k.KO(-1,t,"៉");k.KIO(-1,this.s15,3,t);k.KIO(-1,this.s17,4,t);}else if(k.KFCM(4,t,['្',{t:'a',a:this.s51},'៊',{t:'a',a:this.s48}])){m=1;k.KDC(4,t);k.KO(-1,t,"្");k.KIO(-1,this.s51,2,t);k.KO(-1,t,"៊");k.KIO(-1,this.s48,4,t);}else if(k.KFCM(4,t,['ប','្','យ',{t:'a',a:this.s29}])){m=1;k.KDC(4,t);k.KO(-1,t,"ប្យ");k.KIO(-1,this.s29,4,t);}else if(k.KFCM(4,t,['ស','្','ប',{t:'a',a:this.s29}])){m=1;k.KDC(4,t);k.KO(-1,t,"ស្ប");k.KIO(-1,this.s29,4,t);}else if(k.KFCM(4,t,['ឆ','្','ប',{t:'a',a:this.s29}])){m=1;k.KDC(4,t);k.KO(-1,t,"ឆ្ប");k.KIO(-1,this.s29,4,t);}else if(k.KFCM(4,t,['ប','្','យ',{t:'a',a:this.s29}])){m=1;k.KDC(4,t);k.KO(-1,t,"ប្យ");k.KIO(-1,this.s29,4,t);}else if(k.KFCM(4,t,['ស','្','ប',{t:'a',a:this.s29}])){m=1;k.KDC(4,t);k.KO(-1,t,"ស្ប");k.KIO(-1,this.s29,4,t);}else if(k.KFCM(4,t,['ឆ','្','ប',{t:'a',a:this.s29}])){m=1;k.KDC(4,t);k.KO(-1,t,"ឆ្ប");k.KIO(-1,this.s29,4,t);}else if(k.KFCM(4,t,[{t:'a',a:this.s49},'៉',{t:'a',a:this.s15},{t:'a',a:this.s17}])){m=1;k.KDC(4,t);k.KIO(-1,this.s49,1,t);k.KO(-1,t,"៊");k.KIO(-1,this.s15,3,t);k.KIO(-1,this.s17,4,t);}else if(k.KFCM(4,t,[{t:'a',a:this.s49},'ា','ុ','ំ'])){m=1;k.KDC(4,t);k.KIO(-1,this.s49,1,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(4,t,[{t:'a',a:this.s49},'ុ','ំ','ា'])){m=1;k.KDC(4,t);k.KIO(-1,this.s49,1,t);k.KO(-1,t,"៊");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(4,t,[{t:'a',a:this.s52},'ា','ុ','ំ'])){m=1;k.KDC(4,t);k.KIO(-1,this.s52,1,t);k.KO(-1,t,"៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(4,t,[{t:'a',a:this.s52},'ុ','ំ','ា'])){m=1;k.KDC(4,t);k.KIO(-1,this.s52,1,t);k.KO(-1,t,"៉");k.KO(-1,t,"ា");k.KO(-1,t,"ំ");}else if(k.KFCM(4,t,[{t:'a',a:this.s49},'េ','ុ','ី'])){m=1;k.KDC(4,t);k.KIO(-1,this.s49,1,t);k.KO(-1,t,"៊ើ");}else if(k.KFCM(4,t,[{t:'a',a:this.s49},'ុ','េ','ី'])){m=1;k.KDC(4,t);k.KIO(-1,this.s49,1,t);k.KO(-1,t,"៊ើ");}else if(k.KFCM(4,t,[{t:'a',a:this.s49},'៉','េ','ី'])){m=1;k.KDC(4,t);k.KIO(-1,this.s49,1,t);k.KO(-1,t,"៊ើ");}else if(k.KFCM(4,t,[{t:'a',a:this.s51},'េ','ុ','ី'])){m=1;k.KDC(4,t);k.KIO(-1,this.s51,1,t);k.KO(-1,t,"៉ើ");}else if(k.KFCM(4,t,[{t:'a',a:this.s51},'ុ','េ','ី'])){m=1;k.KDC(4,t);k.KIO(-1,this.s51,1,t);k.KO(-1,t,"៉ើ");}else if(k.KFCM(4,t,[{t:'a',a:this.s51},'៊','េ','ី'])){m=1;k.KDC(4,t);k.KIO(-1,this.s51,1,t);k.KO(-1,t,"៉ើ");}else if(k.KFCM(4,t,['ព','ន','្','ឋ'])){m=1;k.KDC(4,t);k.KO(-1,t,"ព");k.KO(-1,t,"ន");k.KO(-1,t,"្ធ");}else if(k.KFCM(4,t,['្','យ','េ','ឺ'])){m=1;k.KDC(4,t);k.KO(-1,t,"ឿ");}else if(k.KFCM(4,t,['្','យ','េ','ឹ'])){m=1;k.KDC(4,t);k.KO(-1,t,"ឿ");}else if(k.KFCM(4,t,['្','យ','េ','ី'])){m=1;k.KDC(4,t);k.KO(-1,t,"ឿ");}else if(k.KFCM(3,t,[{t:'a',a:this.s15},{t:'a',a:this.s17},{t:'a',a:this.s15}])){m=1;k.KDC(3,t);k.KIO(-1,this.s15,3,t);}else if(k.KFCM(3,t,[{t:'a',a:this.s15},{t:'a',a:this.s17},{t:'a',a:this.s17}])){m=1;k.KDC(3,t);k.KIO(-1,this.s17,3,t);}else if(k.KFCM(3,t,[{t:'a',a:this.s15},{t:'a',a:this.s15},{t:'a',a:this.s17}])){m=1;k.KDC(3,t);k.KIO(-1,this.s15,2,t);k.KIO(-1,this.s17,3,t);}else if(k.KFCM(3,t,[{t:'a',a:this.s17},{t:'a',a:this.s15},{t:'a',a:this.s17}])){m=1;k.KDC(3,t);k.KIO(-1,this.s15,2,t);k.KIO(-1,this.s17,3,t);}else if(k.KFCM(3,t,['្',{t:'a',a:this.s15},{t:'a',a:this.s17}])){m=1;k.KDC(3,t);k.KIO(-1,this.s15,2,t);k.KIO(-1,this.s17,3,t);}else if(k.KFCM(3,t,[{t:'a',a:this.s20},'្',{t:'a',a:this.s45}])){m=1;k.KDC(3,t);k.KO(-1,t,"្");k.KIO(-1,this.s45,3,t);k.KIO(-1,this.s20,1,t);}else if(k.KFCM(3,t,[{t:'a',a:this.s29},'្',{t:'a',a:this.s45}])){m=1;k.KDC(3,t);k.KO(-1,t,"្");k.KIO(-1,this.s45,3,t);k.KIO(-1,this.s29,1,t);}else if(k.KFCM(3,t,[{t:'a',a:this.s15},{t:'a',a:this.s17},{t:'a',a:this.s29}])){m=1;k.KDC(3,t);k.KIO(-1,this.s29,3,t);k.KIO(-1,this.s15,1,t);k.KIO(-1,this.s17,2,t);}else if(k.KFCM(3,t,[{t:'a',a:this.s29},{t:'a',a:this.s20},{t:'a',a:this.s29}])){m=1;k.KDC(3,t);k.KIO(-1,this.s29,3,t);k.KIO(-1,this.s20,2,t);}else if(k.KFCM(3,t,[{t:'a',a:this.s49},'ុ',{t:'a',a:this.s48}])){m=1;k.KDC(3,t);k.KIO(-1,this.s49,1,t);k.KO(-1,t,"៊");k.KIO(-1,this.s48,3,t);}else if(k.KFCM(3,t,[{t:'a',a:this.s49},{t:'a',a:this.s48},'ុ'])){m=1;k.KDC(3,t);k.KIO(-1,this.s49,1,t);k.KO(-1,t,"៊");k.KIO(-1,this.s48,2,t);}else if(k.KFCM(3,t,[{t:'a',a:this.s52},'ុ',{t:'a',a:this.s48}])){m=1;k.KDC(3,t);k.KIO(-1,this.s52,1,t);k.KO(-1,t,"៉");k.KIO(-1,this.s48,3,t);}else if(k.KFCM(3,t,[{t:'a',a:this.s52},{t:'a',a:this.s48},'ុ'])){m=1;k.KDC(3,t);k.KIO(-1,this.s52,1,t);k.KO(-1,t,"៉");k.KIO(-1,this.s48,2,t);}else if(k.KFCM(3,t,[{t:'a',a:this.s51},'៊',{t:'a',a:this.s48}])){m=1;k.KDC(3,t);k.KIO(-1,this.s51,1,t);k.KO(-1,t,"៉");k.KIO(-1,this.s48,3,t);}else if(k.KFCM(3,t,[{t:'a',a:this.s49},'៉',{t:'a',a:this.s48}])){m=1;k.KDC(3,t);k.KIO(-1,this.s49,1,t);k.KO(-1,t,"៊");k.KIO(-1,this.s48,3,t);}else if(k.KFCM(3,t,[{t:'a',a:this.s13},{t:'a',a:this.s15},'៌'])){m=1;k.KDC(3,t);k.KIO(-1,this.s13,1,t);k.KO(-1,t,"៌");k.KIO(-1,this.s15,2,t);}else if(k.KFCM(3,t,['ណ','្','ត'])){m=1;k.KDC(3,t);k.KO(-1,t,"ណ");k.KO(-1,t,"្ដ");}else if(k.KFCM(3,t,['ន','្','ដ'])){m=1;k.KDC(3,t);k.KO(-1,t,"ន");k.KO(-1,t,"្ត");}else if(k.KFCM(3,t,['ទ','្','ប'])){m=1;k.KDC(3,t);k.KO(-1,t,"ឡ");}else if(k.KFCM(3,t,['ប','្','ញ'])){m=1;k.KDC(3,t);k.KO(-1,t,"ឫ");}else if(k.KFCM(3,t,['ព','្','ញ'])){m=1;k.KDC(3,t);k.KO(-1,t,"ឭ");}else if(k.KFCM(3,t,['ព','្','ឋ'])){m=1;k.KDC(3,t);k.KO(-1,t,"ឰ");}else if(k.KFCM(3,t,['ដ','្','ធ'])){m=1;k.KDC(3,t);k.KO(-1,t,"ដ្ឋ");}else if(k.KFCM(3,t,['ទ','្','ឋ'])){m=1;k.KDC(3,t);k.KO(-1,t,"ទ្ធ");}else if(k.KFCM(3,t,['ឪ','្','យ'])){m=1;k.KDC(3,t);k.KO(-1,t,"ឱ");k.KO(-1,t,"្");k.KO(-1,t,"យ");}else if(k.KFCM(3,t,['ឳ','្','យ'])){m=1;k.KDC(3,t);k.KO(-1,t,"ឱ");k.KO(-1,t,"្");k.KO(-1,t,"យ");}else if(k.KFCM(3,t,['ញ','្','វ'])){m=1;k.KDC(3,t);k.KO(-1,t,"ព");k.KO(-1,t,"្");k.KO(-1,t,"វា");}else if(k.KFCM(2,t,['េ','ា'])){m=1;k.KDC(2,t);k.KO(-1,t,"ោ");}else if(k.KFCM(2,t,['ា','េ'])){m=1;k.KDC(2,t);k.KO(-1,t,"ោ");}else if(k.KFCM(2,t,['េ','ី'])){m=1;k.KDC(2,t);k.KO(-1,t,"ើ");}else if(k.KFCM(2,t,['ី','េ'])){m=1;k.KDC(2,t);k.KO(-1,t,"ើ");}else if(k.KFCM(2,t,['ំ','ុ'])){m=1;k.KDC(2,t);k.KO(-1,t,"ុំ");}else if(k.KFCM(2,t,['ំ','ា'])){m=1;k.KDC(2,t);k.KO(-1,t,"ាំ");}else if(k.KFCM(2,t,[{t:'a',a:this.s15},{t:'a',a:this.s15}])){m=1;k.KDC(2,t);k.KIO(-1,this.s15,2,t);}else if(k.KFCM(2,t,[{t:'a',a:this.s17},{t:'a',a:this.s17}])){m=1;k.KDC(2,t);k.KIO(-1,this.s17,2,t);}if(m) {}else if(k.KFCM(2,t,['្','្'])){m=1;k.KDC(2,t);k.KO(-1,t,"្");}else if(k.KFCM(2,t,['្',{t:'a',a:this.s20}])){m=1;k.KDC(2,t);k.KIO(-1,this.s20,2,t);}else if(k.KFCM(2,t,[{t:'a',a:this.s20},{t:'a',a:this.s29}])){m=1;k.KDC(2,t);k.KIO(-1,this.s29,2,t);k.KIO(-1,this.s20,1,t);}else if(k.KFCM(2,t,['ឫ','ុ'])){m=1;k.KDC(2,t);k.KO(-1,t,"ឬ");}else if(k.KFCM(2,t,['ឭ','ា'])){m=1;k.KDC(2,t);k.KO(-1,t,"ញ");}else if(k.KFCM(2,t,['ឮ','ា'])){m=1;k.KDC(2,t);k.KO(-1,t,"ញ");}else if(k.KFCM(2,t,['ឭ','ុ'])){m=1;k.KDC(2,t);k.KO(-1,t,"ឮ");}else if(k.KFCM(2,t,['ឧ','ិ'])){m=1;k.KDC(2,t);k.KO(-1,t,"ឱ");}else if(k.KFCM(2,t,['ឧ','៌'])){m=1;k.KDC(2,t);k.KO(-1,t,"ឱ");}else if(k.KFCM(2,t,['ឧ','៍'])){m=1;k.KDC(2,t);k.KO(-1,t,"ឱ");}return r;};} \ No newline at end of file diff --git a/developer/src/kmc-package/test/fixtures/normalize_paths/source/khmer_angkor.kps b/developer/src/kmc-package/test/fixtures/normalize_paths/source/khmer_angkor.kps index 6b16473c078..bcac45d65a6 100644 --- a/developer/src/kmc-package/test/fixtures/normalize_paths/source/khmer_angkor.kps +++ b/developer/src/kmc-package/test/fixtures/normalize_paths/source/khmer_angkor.kps @@ -27,28 +27,16 @@ ..\build\khmer_angkor.js - File khmer_angkor.js + Keyboard Khmer Angkor 0 .js - - ..\build\khmer_angkor.kvk - File khmer_angkor.kvk - 0 - .kvk - ..\build\khmer_angkor.kmx Keyboard Khmer Angkor 0 .kmx - - welcome\keyboard_layout.png - File keyboard_layout.png - 0 - .png - welcome\welcome.htm File welcome.htm @@ -56,41 +44,29 @@ .htm - ..\shared\fonts\khmer\mondulkiri\FONTLOG.txt + ..\..\kmp_2.0\shared\fonts\khmer\mondulkiri\FONTLOG.txt File FONTLOG.txt 0 .txt - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf + ..\..\kmp_2.0\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf Font Khmer Mondulkiri 0 .ttf - ..\shared\fonts\khmer\mondulkiri\OFL.txt + ..\..\kmp_2.0\shared\fonts\khmer\mondulkiri\OFL.txt File OFL.txt 0 .txt - ..\shared\fonts\khmer\mondulkiri\OFL-FAQ.txt + ..\..\kmp_2.0\shared\fonts\khmer\mondulkiri\OFL-FAQ.txt File OFL-FAQ.txt 0 .txt - - welcome\KAK_Documentation_EN.pdf - File KAK_Documentation_EN.pdf - 0 - .pdf - - - welcome\KAK_Documentation_KH.pdf - File KAK_Documentation_KH.pdf - 0 - .pdf - readme.htm File readme.htm @@ -98,13 +74,7 @@ .htm - welcome\image002.png - File image002.png - 0 - .png - - - ..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf + ..\..\kmp_2.0\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf Font KhmerBusraKbd 0 .ttf @@ -121,8 +91,8 @@ Khmer Angkor khmer_angkor 1.3 - ..\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf - ..\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf + ..\..\kmp_2.0\shared\fonts\khmer\busrakbd\khmer_busra_kbd.ttf + ..\..\kmp_2.0\shared\fonts\khmer\mondulkiri\Mondulkiri-R.ttf Central Khmer (Khmer, Cambodia) diff --git a/developer/src/kmc-package/test/fixtures/normalize_paths/source/readme.htm b/developer/src/kmc-package/test/fixtures/normalize_paths/source/readme.htm new file mode 100644 index 00000000000..b7113f711c1 --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/normalize_paths/source/readme.htm @@ -0,0 +1,23 @@ + + + + + Khmer Angkor Keyboard + + + + +

Khmer Angkor Keyboard

+ +

+ With the users' pitfall in typing Khmer words in mind, Khmer Angkor focuses on the unification of the character orders and spelling rules. These make Khmer Angkor uniquely different from any other keyboards. Khmer Angkor's keyboard layouts were adopted from NiDA keyboard which is widely used at the present. +

+ +

© SIL International

+ + + diff --git a/developer/src/kmc-package/test/fixtures/normalize_paths/source/splash.gif b/developer/src/kmc-package/test/fixtures/normalize_paths/source/splash.gif new file mode 100644 index 00000000000..93b44e9d16e Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/normalize_paths/source/splash.gif differ diff --git a/developer/src/kmc-package/test/fixtures/normalize_paths/source/welcome/welcome.htm b/developer/src/kmc-package/test/fixtures/normalize_paths/source/welcome/welcome.htm new file mode 100644 index 00000000000..124d9d20e66 --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/normalize_paths/source/welcome/welcome.htm @@ -0,0 +1,54 @@ + + + + Khmer Angkor Keyboard + + +

Khmer Angkor Keyboard

+ +

+ Khmer Angkor Keyboard is an OpenSource. It is free and more than just a user you can also contribute to the betterment of the keyboard if you would like to. +

+ +

Keyboards

+

+ With the users' pitfall in typing Khmer words in mind, Khmer Angkor focuses on the unification of the character orders and spelling rules. These make Khmer Angkor uniquely different from any other keyboards. Khmer Angkor's keyboard layouts were adopted from NiDA keyboard which is widely used at the present. + Here is the keyboard layout: +

+ + + + +

You can simply use Khmer Angkor as you would for any NiDA based keyboard. You may type a word in an order of how it is spelled, not how it appears to be, especially when the vowel is to the left of the consonant. For example, to type the word “តែ” which means ‘tea’, one should type the consonant first and then the vowel (i.e. press key “T” and then “Shift E”).

+ +

The order of characters is:

+

Consonant + Subscript(s) + Consonant Shifter + Vowel + Diacritic

+ +

For more details on the Khmer Angkor Keyboard, please find the documentation included in this package.

+ +

Keyboard Documentations

+

For the documentation in English, click here.

+

For the documentation in Khmer, click here.

+ +

Fonts

+

+ To get Khmer fonts, you may visit one of the three sources below: +

+ +

More Information

+

+ +

+ + + + + \ No newline at end of file diff --git a/developer/src/kmc-package/test/fixtures/online/api.github.com/#repos#silnrsi#fonts#commits#main b/developer/src/kmc-package/test/fixtures/online/api.github.com/#repos#silnrsi#fonts#commits#main new file mode 100644 index 00000000000..690ef170170 --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/online/api.github.com/#repos#silnrsi#fonts#commits#main @@ -0,0 +1,913 @@ +{ + "sha": "044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "node_id": "C_kwDOGD8YNtoAKDA0NGExMDQyNmNkYWJmYTNkZDNiMTNkMDQwYTU2ZDRiNzBlYTQwNTg", + "commit": { + "author": { + "name": "Lorna Evans", + "email": "LornaSIL@users.noreply.github.com", + "date": "2024-10-29T17:41:20Z" + }, + "committer": { + "name": "Lorna Evans", + "email": "LornaSIL@users.noreply.github.com", + "date": "2024-10-29T17:41:20Z" + }, + "message": "Update Abyssinica to v2.300 after running updatefamilydata.py.", + "tree": { + "sha": "3ac7e29c3c1b12b239dc69e110b3aa7e87195e1c", + "url": "https://api.github.com/repos/silnrsi/fonts/git/trees/3ac7e29c3c1b12b239dc69e110b3aa7e87195e1c" + }, + "url": "https://api.github.com/repos/silnrsi/fonts/git/commits/044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/silnrsi/fonts/commits/044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "html_url": "https://github.com/silnrsi/fonts/commit/044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "comments_url": "https://api.github.com/repos/silnrsi/fonts/commits/044a10426cdabfa3dd3b13d040a56d4b70ea4058/comments", + "author": { + "login": "LornaSIL", + "id": 7071907, + "node_id": "MDQ6VXNlcjcwNzE5MDc=", + "avatar_url": "https://avatars.githubusercontent.com/u/7071907?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/LornaSIL", + "html_url": "https://github.com/LornaSIL", + "followers_url": "https://api.github.com/users/LornaSIL/followers", + "following_url": "https://api.github.com/users/LornaSIL/following{/other_user}", + "gists_url": "https://api.github.com/users/LornaSIL/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LornaSIL/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LornaSIL/subscriptions", + "organizations_url": "https://api.github.com/users/LornaSIL/orgs", + "repos_url": "https://api.github.com/users/LornaSIL/repos", + "events_url": "https://api.github.com/users/LornaSIL/events{/privacy}", + "received_events_url": "https://api.github.com/users/LornaSIL/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "LornaSIL", + "id": 7071907, + "node_id": "MDQ6VXNlcjcwNzE5MDc=", + "avatar_url": "https://avatars.githubusercontent.com/u/7071907?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/LornaSIL", + "html_url": "https://github.com/LornaSIL", + "followers_url": "https://api.github.com/users/LornaSIL/followers", + "following_url": "https://api.github.com/users/LornaSIL/following{/other_user}", + "gists_url": "https://api.github.com/users/LornaSIL/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LornaSIL/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LornaSIL/subscriptions", + "organizations_url": "https://api.github.com/users/LornaSIL/orgs", + "repos_url": "https://api.github.com/users/LornaSIL/repos", + "events_url": "https://api.github.com/users/LornaSIL/events{/privacy}", + "received_events_url": "https://api.github.com/users/LornaSIL/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "7d5dfbbb67a38c1fa4a9612154ec63abb27a56a9", + "url": "https://api.github.com/repos/silnrsi/fonts/commits/7d5dfbbb67a38c1fa4a9612154ec63abb27a56a9", + "html_url": "https://github.com/silnrsi/fonts/commit/7d5dfbbb67a38c1fa4a9612154ec63abb27a56a9" + } + ], + "stats": { + "total": 2209, + "additions": 1578, + "deletions": 631 + }, + "files": [ + { + "sha": "0bbe26ca19ecabe1d80ff524ba00ed2bf32392d7", + "filename": "basefiles/abyssinicasil_base.json", + "status": "modified", + "additions": 2, + "deletions": 2, + "changes": 4, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/basefiles%2Fabyssinicasil_base.json", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/basefiles%2Fabyssinicasil_base.json", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/basefiles%2Fabyssinicasil_base.json?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -4,10 +4,10 @@\n \"family\": \"Abyssinica SIL\",\n \"familyid\": \"abyssinicasil\",\n \"license\": \"OFL\",\n- \"packageurl\": \"https://software.sil.org/downloads/r/abyssinica/AbyssinicaSIL-2.201.zip\",\n+ \"packageurl\": \"https://software.sil.org/downloads/r/abyssinica/AbyssinicaSIL-2.300.zip\",\n \"siteurl\": \"https://software.sil.org/abyssinica/\",\n \"source\": \"SIL\",\n \"status\": \"current\",\n- \"ziproot\": \"AbyssinicaSIL-2.201\"\n+ \"ziproot\": \"AbyssinicaSIL-2.300\"\n }\n }\n\\ No newline at end of file" + }, + { + "sha": "2a96dde5b4a6612e94c20c573142f712d289912a", + "filename": "families.json", + "status": "modified", + "additions": 6, + "deletions": 6, + "changes": 12, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/families.json", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/families.json", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/families.json?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -29,17 +29,17 @@\n \"family\": \"Abyssinica SIL\",\n \"familyid\": \"abyssinicasil\",\n \"files\": {\n- \"AbyssinicaSIL-Regular.ttf\": { \"axes\": { \"ital\": 0, \"wght\": 400.0 }, \"flourl\": \"https://fonts.languagetechnology.org/fonts/sil/abyssinicasil/AbyssinicaSIL-Regular.ttf\", \"packagepath\": \"AbyssinicaSIL-Regular.ttf\", \"url\": \"https://github.com/silnrsi/fonts/raw/main/fonts/sil/abyssinicasil/AbyssinicaSIL-Regular.ttf\", \"zippath\": \"AbyssinicaSIL-2.201/AbyssinicaSIL-Regular.ttf\" },\n- \"AbyssinicaSIL-Regular.woff\": { \"axes\": { \"ital\": 0, \"wght\": 400.0 }, \"flourl\": \"https://fonts.languagetechnology.org/fonts/sil/abyssinicasil/web/AbyssinicaSIL-Regular.woff\", \"packagepath\": \"web/AbyssinicaSIL-Regular.woff\", \"url\": \"https://github.com/silnrsi/fonts/raw/main/fonts/sil/abyssinicasil/web/AbyssinicaSIL-Regular.woff\", \"zippath\": \"AbyssinicaSIL-2.201/web/AbyssinicaSIL-Regular.woff\" },\n- \"AbyssinicaSIL-Regular.woff2\": { \"axes\": { \"ital\": 0, \"wght\": 400.0 }, \"flourl\": \"https://fonts.languagetechnology.org/fonts/sil/abyssinicasil/web/AbyssinicaSIL-Regular.woff2\", \"packagepath\": \"web/AbyssinicaSIL-Regular.woff2\", \"url\": \"https://github.com/silnrsi/fonts/raw/main/fonts/sil/abyssinicasil/web/AbyssinicaSIL-Regular.woff2\", \"zippath\": \"AbyssinicaSIL-2.201/web/AbyssinicaSIL-Regular.woff2\" }\n+ \"AbyssinicaSIL-Regular.ttf\": { \"axes\": { \"ital\": 0, \"wght\": 400.0 }, \"flourl\": \"https://fonts.languagetechnology.org/fonts/sil/abyssinicasil/AbyssinicaSIL-Regular.ttf\", \"packagepath\": \"AbyssinicaSIL-Regular.ttf\", \"url\": \"https://github.com/silnrsi/fonts/raw/main/fonts/sil/abyssinicasil/AbyssinicaSIL-Regular.ttf\", \"zippath\": \"AbyssinicaSIL-2.300/AbyssinicaSIL-Regular.ttf\" },\n+ \"AbyssinicaSIL-Regular.woff\": { \"axes\": { \"ital\": 0, \"wght\": 400.0 }, \"flourl\": \"https://fonts.languagetechnology.org/fonts/sil/abyssinicasil/web/AbyssinicaSIL-Regular.woff\", \"packagepath\": \"web/AbyssinicaSIL-Regular.woff\", \"url\": \"https://github.com/silnrsi/fonts/raw/main/fonts/sil/abyssinicasil/web/AbyssinicaSIL-Regular.woff\", \"zippath\": \"AbyssinicaSIL-2.300/web/AbyssinicaSIL-Regular.woff\" },\n+ \"AbyssinicaSIL-Regular.woff2\": { \"axes\": { \"ital\": 0, \"wght\": 400.0 }, \"flourl\": \"https://fonts.languagetechnology.org/fonts/sil/abyssinicasil/web/AbyssinicaSIL-Regular.woff2\", \"packagepath\": \"web/AbyssinicaSIL-Regular.woff2\", \"url\": \"https://github.com/silnrsi/fonts/raw/main/fonts/sil/abyssinicasil/web/AbyssinicaSIL-Regular.woff2\", \"zippath\": \"AbyssinicaSIL-2.300/web/AbyssinicaSIL-Regular.woff2\" }\n },\n \"license\": \"OFL\",\n- \"packageurl\": \"https://software.sil.org/downloads/r/abyssinica/AbyssinicaSIL-2.201.zip\",\n+ \"packageurl\": \"https://software.sil.org/downloads/r/abyssinica/AbyssinicaSIL-2.300.zip\",\n \"siteurl\": \"https://software.sil.org/abyssinica/\",\n \"source\": \"SIL\",\n \"status\": \"current\",\n- \"version\": \"2.201\",\n- \"ziproot\": \"AbyssinicaSIL-2.201\"\n+ \"version\": \"2.300\",\n+ \"ziproot\": \"AbyssinicaSIL-2.300\"\n },\n \"akatab\": {\n \"defaults\": {" + }, + { + "sha": "e126900d9d86cab08a1be685e5b049c8e0a0e977", + "filename": "fonts/sil/abyssinicasil/AbyssinicaSIL-Regular.ttf", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2FAbyssinicaSIL-Regular.ttf", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2FAbyssinicaSIL-Regular.ttf", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2FAbyssinicaSIL-Regular.ttf?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "f83c5e0702ad5a50b6fafb12df73b2dfe6359b08", + "filename": "fonts/sil/abyssinicasil/FONTLOG.txt", + "status": "modified", + "additions": 51, + "deletions": 8, + "changes": 59, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2FFONTLOG.txt", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2FFONTLOG.txt", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2FFONTLOG.txt?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -20,20 +20,19 @@ Latin characters and symbols. This font makes use of state-of-the-art font\n technologies to support the need to position arbitrary combinations of \n *Ethiopic* base glyphs and combining marks optimally. It also supports\n almost 200 kerning pairs. This version of the font also supports Character \n-Variants (OpenType) or Features (Graphite) which make glyph alternates \n-available for a number of Ethiopic and punctuation characters. \n+Variants (OpenType) which make glyph alternates available for a number of \n+Ethiopic and punctuation characters. \n \n One font from this typeface family is included in this release:\n \n * Abyssinica SIL Regular \n \n-\n A Note Regarding the Open Font License and TypeTuner\n ----------------------------------------------------\n \n The OFL prohibits the use of Reserved Font Names \"Abyssinica\" and \"SIL\" in\n the name of any font that is derived from the Original Version of \n-Abyssinica SIL. However, SIL International (the Copyright Holder) grants \n+Abyssinica SIL. However, SIL Global (the Copyright Holder) grants \n through this separate written agreement the right to use the Reserved Font\n Names in any Modified Version of this font created by using TypeTuner as \n long as the feature information contained in the Original Version is used, \n@@ -54,6 +53,50 @@ ChangeLog\n ---------\n (This should list both major and minor changes, most recent first.)\n \n+### 29 Oct 2024 (WSTech Team) Abyssinica SIL version 2.300\n+\n+#### Improved\n+\n+- Adjusted glyph shapes for\n+ - 1214 ETHIOPIC SYLLABLE HHEE\n+ - 1264 ETHIOPIC SYLLABLE BEE\n+ - 126C ETHIOPIC SYLLABLE VEE\n+ - 129C ETHIOPIC SYLLABLE NYEE\n+ - 12DC ETHIOPIC SYLLABLE ZEE\n+ - 1334 ETHIOPIC SYLLABLE PHEE\n+ - 133C ETHIOPIC SYLLABLE TSEE\n+ - AB14 ETHIOPIC SYLLABLE DZEE\n+ - AB2C ETHIOPIC SYLLABLE BBEE\n+ - 1E7E4 ETHIOPIC SYLLABLE HHYEE\n+ - 1E7EA ETHIOPIC SYLLABLE HHWEE\n+- Improve diacritic position to support multiple above diacritics\n+\n+#### Added\n+\n+- Added gzi Ligature\n+- 2080 SUBSCRIPT ZERO\n+- 2081 SUBSCRIPT ONE\n+- 2082 SUBSCRIPT TWO\n+- 2083 SUBSCRIPT THREE\n+- 2084 SUBSCRIPT FOUR\n+- 2085 SUBSCRIPT FIVE\n+- 2086 SUBSCRIPT SIX\n+- 2087 SUBSCRIPT SEVEN\n+- 2088 SUBSCRIPT EIGHT\n+- 2089 SUBSCRIPT NINE\n+- 2460 CIRCLED DIGIT ONE\n+- 2461 CIRCLED DIGIT TWO\n+- 2462 CIRCLED DIGIT THREE\n+- 2463 CIRCLED DIGIT FOUR\n+- 2464 CIRCLED DIGIT FIVE\n+- 2465 CIRCLED DIGIT SIX\n+- 2466 CIRCLED DIGIT SEVEN\n+- 2467 CIRCLED DIGIT EIGHT\n+- 2468 CIRCLED DIGIT NINE\n+\n+#### Remove\n+- Graphite\n+\n ### 23 June 2023 (WSTech Team) Abyssinica SIL version 2.201\n - Fixed bug in TypeTuner support for cv46 tswa alternate\n \n@@ -111,7 +154,7 @@ to best submit your contributions.\n \n To enable us to accept contributions in a way that honors your contribution \n and respects your copyright while preserving long-term flexibility for open \n-source licensing, you would also need to agree to the SIL International \n+source licensing, you would also need to agree to the SIL Global \n Contributor License Agreement for Font Software (v1.0) prior to sending us \n your contribution. To read more about this requirement and find out how to \n submit the required form, please visit the CLA information page\n@@ -173,14 +216,14 @@ D: Designer\n N: Daniel Yacob\n E: yacob@geez.org\n W: https://www.geez.org/, https://github.com/geezorg\n-D: Font designer, contributed significant input on the design of extended Ethiopic\n+D: Font designer, contributed significant input on the design of extended Ethiopic and additional digit forms\n \n N: Kjell Magne Yri\n D: Font based on his original calligraphic design\n \n-The Abyssinica SIL project is maintained by SIL International.\n+The Abyssinica SIL project is maintained by SIL Global.\n \n-For more information please visit the Abyssinica SIL page on SIL International's\n+For more information please visit the Abyssinica SIL page on SIL Global's\n Computers and Writing systems website:\n https://software.sil.org/abyssinica\n " + }, + { + "sha": "63fc8b1e0ba81c8849ba0f2a1dbc4e1e8d3c8fab", + "filename": "fonts/sil/abyssinicasil/OFL-FAQ.txt", + "status": "modified", + "additions": 98, + "deletions": 83, + "changes": 181, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2FOFL-FAQ.txt", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2FOFL-FAQ.txt", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2FOFL-FAQ.txt?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,13 +1,13 @@\n-OFL FAQ - Frequently Asked Questions about the SIL Open Font License (OFL)\n-Version 1.1-update6 - December 2020\n-The OFL FAQ is copyright (c) 2005-2020 SIL International.\n+OFL FAQ - Frequently Asked Questions about the SIL Open Font License (OFL)\n+Version 1.1-update7 - November 2023\n+The OFL FAQ is Copyright (c) 2005-2023, SIL International (https://www.sil.org)\n Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n-(See https://scripts.sil.org/OFL for updates)\n+(See https://openfontlicense.org/ofl-faq for updates)\n \n \n CONTENTS OF THIS FAQ\n 1 USING AND DISTRIBUTING FONTS LICENSED UNDER THE OFL\n-2 USING OFL FONTS FOR WEB PAGES AND ONLINE WEB FONT SERVICES\n+2 USING OFL FONTS FOR WEBPAGES AND ONLINE WEBFONT SERVICES\n 3 MODIFYING OFL-LICENSED FONTS\n 4 LICENSING YOUR ORIGINAL FONTS UNDER THE OFL\n 5 CHOOSING RESERVED FONT NAMES\n@@ -18,8 +18,7 @@ CONTENTS OF THIS FAQ\n APPENDIX A - FONTLOG EXAMPLE\n \n 1 USING AND DISTRIBUTING FONTS LICENSED UNDER THE OFL\n-\n-1.1 Can I use the fonts for a book or other print publication, to create logos or other graphics or even to manufacture objects based on their outlines?\n+1.1 Can I use the fonts for a book or other print publication, to create logos or other graphics, or even to manufacture objects based on their outlines?\n Yes. You are very welcome to do so. Authors of fonts released under the OFL allow you to use their font software as such for any kind of design work. No additional license or permission is required, unlike with some other licenses. Some examples of these uses are: logos, posters, business cards, stationery, video titling, signage, t-shirts, personalised fabric, 3D-printed/laser-cut shapes, sculptures, rubber stamps, cookie cutters and lead type.\n \n 1.1.1 Does that restrict the license or distribution of that artwork?\n@@ -29,13 +28,13 @@ No. You remain the author and copyright holder of that newly derived graphic or\n No. Font authors may appreciate being mentioned in your artwork's acknowledgements alongside the name of the font, possibly with a link to their website, but that is not required.\n \n 1.2 Can the fonts be included with Free/Libre and Open Source Software collections such as GNU/Linux and BSD distributions and repositories?\n-Yes! Fonts licensed under the OFL can be freely included alongside other software under FLOSS (Free/Libre and Open Source Software) licenses. Since fonts are typically aggregated with, not merged into, existing software, there is little need to be concerned about incompatibility with existing software licenses. You may also repackage the fonts and the accompanying components in a .rpm or .deb package (or other similar package formats or installers) and include them in distribution CD/DVDs and online repositories. (Also see section 5.9 about rebuilding from source.)\n+Yes! Fonts licensed under the OFL can be freely included alongside other software under FLOSS (Free/Libre and Open Source Software) licenses. Since fonts are typically aggregated with, not merged into, existing software, there is little need to be concerned about incompatibility with existing software licenses. You may also repackage the fonts and the accompanying components in a .rpm or .deb package (or other similar package formats or installers) and include them in distribution CD/DVDs and online repositories. (Also see entry 5.9 about rebuilding from source.)\n \n-1.3 I want to distribute the fonts with my program. Does this mean my program also has to be Free/Libre and Open Source Software?\n+1.3 I want to distribute the fonts with my program, does this mean my program also has to be Free/Libre and Open Source Software?\n No. Only the portions based on the Font Software are required to be released under the OFL. The intent of the license is to allow aggregation or bundling with software under restricted licensing as well.\n \n 1.4 Can I sell a software package that includes these fonts?\n-Yes, you can do this with both the Original Version and a Modified Version of the fonts. Examples of bundling made possible by the OFL would include: word processors, design and publishing applications, training and educational software, games and entertainment software, mobile device applications, etc.\n+Yes, you can do this with both the Original Version and a Modified Version of the fonts. Examples of bundling made possible by the OFL would include: text editors, word processors, design and publishing applications, training and educational software, games and entertainment software, mobile device applications, etc.\n \n 1.5 Can I include the fonts on a CD of freeware or commercial fonts?\n Yes, as long some other font or software is also on the disk, so the OFL font is not sold by itself.\n@@ -46,14 +45,14 @@ The intent is to keep people from making money by simply redistributing the font\n 1.7 What about sharing OFL fonts with friends on a CD, DVD or USB stick?\n You are very welcome to share open fonts with friends, family and colleagues through removable media. Just remember to include the full font package, including any copyright notices and licensing information as available in OFL.txt. In the case where you sell the font, it has to come bundled with software.\n \n-1.8 Can I host the fonts on a web site for others to use?\n-Yes, as long as you make the full font package available. In most cases it may be best to point users to the main site that distributes the Original Version so they always get the most recent stable and complete version. See also discussion of web fonts in Section 2.\n+1.8 Can I host the fonts on a website for others to use?\n+Yes, as long as you make the full font package available. In most cases it may be best to point users to the main site that distributes the Original Version so they always get the most recent stable and complete version. See also discussion of webfonts in Section 2.\n \n 1.9 Can I host the fonts on a server for use over our internal network?\n Yes. If the fonts are transferred from the server to the client computer by means that allow them to be used even if the computer is no longer attached to the network, the full package (copyright notices, licensing information, etc.) should be included.\n \n 1.10 Does the full OFL license text always need to accompany the font?\n-The only situation in which an OFL font can be distributed without the text of the OFL (either in a separate file or in font metadata), is when a font is embedded in a document or bundled within a program. In the case of metadata included within a font, it is legally sufficient to include only a link to the text of the OFL on https://scripts.sil.org/OFL, but we strongly recommend against this. Most modern font formats include metadata fields that will accept the full OFL text, and full inclusion increases the likelihood that users will understand and properly apply the license.\n+The only situation in which an OFL font can be distributed without the text of the OFL (either in a separate file or in font metadata), is when a font is embedded in a document or bundled within a program. In the case of metadata included within a font, it is legally sufficient to include only a link to the text of the OFL on https://openfontlicense.org, but we strongly recommend against this. Most modern font formats include metadata fields that will accept the full OFL text, and full inclusion increases the likelihood that users will understand and properly apply the license.\n \n 1.11 What do you mean by 'embedding'? How does that differ from other means of distribution?\n By 'embedding' we mean inclusion of the font in a document or file in a way that makes extraction (and redistribution) difficult or clearly discouraged. In many cases the names of embedded fonts might also not be obvious to those reading the document, the font data format might be altered, and only a subset of the font - only the glyphs required for the text - might be included. Any other means of delivering a font to another person is considered 'distribution', and needs to be accompanied by any copyright notices and licensing information available in OFL.txt.\n@@ -62,7 +61,7 @@ By 'embedding' we mean inclusion of the font in a document or file in a way that\n Yes, either in full or a subset. The restrictions regarding font modification and redistribution do not apply, as the font is not intended for use outside the document.\n \n 1.13 Does embedding alter the license of the document itself?\n-No. Referencing or embedding an OFL font in any document does not change the license of the document itself. The requirement for fonts to remain under the OFL does not apply to any document created using the fonts and their derivatives. Similarly, creating any kind of graphic using a font under OFL does not make the resulting artwork subject to the OFL.\n+No. Referencing or embedding an OFL font in any document does not change the license of the document itself. The requirement for fonts to remain under the OFL does not apply to any document created using the fonts and their derivatives. Similarly, creating any kind of graphic using a font under the OFL does not make the resulting artwork subject to the OFL.\n \n 1.14 If OFL fonts are extracted from a document in which they are embedded (such as a PDF file), what can be done with them? Is this a risk to author(s)?\n The few utilities that can extract fonts embedded in a PDF will typically output limited amounts of outlines - not a complete font. To create a working font from this method is much more difficult and time consuming than finding the source of the original OFL font. So there is little chance that an OFL font would be extracted and redistributed inappropriately through this method. Even so, copyright laws address any misrepresentation of authorship. All Font Software released under the OFL and marked as such by the author(s) is intended to remain under this license regardless of the distribution method, and cannot be redistributed under any other license. We strongly discourage any font extraction - we recommend directly using the font sources instead - but if you extract font outlines from a document, please be considerate: respect the work of the author(s) and the licensing model.\n@@ -74,85 +73,90 @@ Certain document formats may allow the inclusion of an unmodified font within th\n The requirements differ depending on whether the fonts are linked, embedded or distributed (bundled or aggregated). Some ebook formats use web technologies to do font linking via @font-face, others are designed for font embedding, some use fonts distributed with the document or reading software, and a few rely solely on the fonts already present on the target system. The license requirements depend on the type of inclusion as discussed in 1.15.\n \n 1.17 Can Font Software released under the OFL be subject to URL-based access restrictions methods or DRM (Digital Rights Management) mechanisms?\n-Yes, but these issues are out-of-scope for the OFL. The license itself neither encourages their use nor prohibits them since such mechanisms are not implemented in the components of the Font Software but through external software. Such restrictions are put in place for many different purposes corresponding to various usage scenarios. One common example is to limit potentially dangerous cross-site scripting attacks. However, in the spirit of libre/open fonts and unrestricted writing systems, we strongly encourage open sharing and reuse of OFL fonts, and the establishment of an environment where such restrictions are unnecessary. Note that whether you wish to use such mechanisms or you prefer not to, you must still abide by the rules set forth by the OFL when using fonts released by their authors under this license. Derivative fonts must be licensed under the OFL, even if they are part of a service for which you charge fees and/or for which access to source code is restricted. You may not sell the fonts on their own - they must be part of a larger software package, bundle or subscription plan. For example, even if the OFL font is distributed in a software package or via an online service using a DRM mechanism, the user would still have the right to extract that font, use, study, modify and redistribute it under the OFL.\n+Yes, but these issues are out of scope for the OFL. The license itself neither encourages their use nor prohibits them since such mechanisms are not implemented in the components of the Font Software but through external software. Such restrictions are put in place for many different purposes corresponding to various usage scenarios. One common example is to limit potentially dangerous cross-site scripting attacks. However, in the spirit of libre/open fonts and unrestricted writing systems, we strongly encourage open sharing and reuse of OFL fonts, and the establishment of an environment where such restrictions are unnecessary. Note that whether you wish to use such mechanisms or you prefer not to, you must still abide by the rules set forth by the OFL when using fonts released by their authors under this license. Derivative fonts must be licensed under the OFL, even if they are part of a service for which you charge fees and/or for which access to source code is restricted. You may not sell the fonts on their own - they must be part of a larger software package, bundle or subscription plan. For example, even if the OFL font is distributed in a software package or via an online service using a DRM mechanism, the user would still have the right to extract that font, use, study, modify and redistribute it under the OFL.\n \n 1.18 I've come across a font released under the OFL. How can I easily get more information about the Original Version? How can I know where it stands compared to the Original Version or other Modified Versions?\n Consult the copyright statement(s) in the license for ways to contact the original authors. Consult the FONTLOG (see section 6 for more details and examples) for information on how the font differs from the Original Version, and get in touch with the various contributors via the information in the acknowledgement section. Please consider using the Original Versions of the fonts whenever possible.\n \n 1.19 What do you mean in condition 4 of the OFL's permissions and conditions? Can you provide examples of abusive promotion / endorsement / advertisement vs. normal acknowledgement?\n-The intent is that the goodwill and reputation of the author(s) should not be used in a way that makes it sound like the original author(s) endorse or approve of a specific Modified Version or software bundle. For example, it would not be right to advertise a word processor by naming the author(s) in a listing of software features, or to promote a Modified Version on a web site by saying \"designed by ...\". However, it would be appropriate to acknowledge the author(s) if your software package has a list of people who deserve thanks. We realize that this can seem to be a grey area, but the standard used to judge an acknowledgement is that if the acknowledgement benefits the author(s) it is allowed, but if it primarily benefits other parties, or could reflect poorly on the author(s), then it is not.\n+The intent is that the goodwill and reputation of the author(s) should not be used in a way that makes it sound like the original author(s) endorse or approve of a specific Modified Version or software bundle. For example, it would not be right to advertise a word processor by naming the author(s) in a listing of software features, or to promote a Modified Version on a website by saying \"designed by ...\". However, it would be appropriate to acknowledge the author(s) if your software package has a list of people who deserve thanks. We realize that this can seem to be a grey area, but the standard used to judge an acknowledgement is that if the acknowledgement benefits the author(s) it is allowed, but if it primarily benefits other parties, or could reflect poorly on the author(s), then it is not.\n \n-1.20 I'm writing a small app for mobile platforms, do I need to include the whole package? \n+1.20 I'm writing a small app for mobile platforms, do I need to include the whole package? \n If you bundle a font under the OFL with your mobile app you must comply with the terms of the license. At a minimum you must include the copyright statement, the license notice and the license text. A mention of this information in your About box or Changelog, with a link to where the font package is from, is good practice, and the extra space needed to carry these items is very small. You do not, however, need to include the full contents of the font package - only the fonts you use and the copyright and license that apply to them. For example, if you only use the regular weight in your app, you do not need to include the italic and bold versions.\n \n-1.21 What about including OFL fonts by default in my firmware or dedicated operating system? \n+1.21 What about including OFL fonts by default in my firmware or dedicated operating system? \n Many such systems are restricted and turned into appliances so that users cannot study or modify them. Using open fonts to increase quality and language coverage is a great idea, but you need to be aware that if there is a way for users to extract fonts you cannot legally prevent them from doing that. The fonts themselves, including any changes you make to them, must be distributed under the OFL even if your firmware has a more restrictive license. If you do transform the fonts and change their formats when you include them in your firmware you must respect any names reserved by the font authors via the RFN mechanism and pick your own font name. Alternatively if you directly add a font under the OFL to the font folder of your firmware without modifying or optimizing it you are simply bundling the font like with any other software collection, and do not need to make any further changes.\n \n-1.22 Can I make and publish CMS themes or templates that use OFL fonts? Can I include the fonts themselves in the themes or templates? Can I sell the whole package?\n-Yes, you are very welcome to integrate open fonts into themes and templates for your preferred CMS and make them more widely available. Remember that you can only sell the fonts and your CMS add-on as part of a software bundle. (See 1.4 for details and examples about selling bundles).\n+1.22 Can I make and publish CMS themes or templates that use OFL fonts? Can I include the fonts themselves in the themes or templates? Can I sell the whole package?\n+Yes, you are very welcome to integrate open fonts into themes and templates for your preferred CMS and make them more widely available. Remember that you can only sell the fonts and your CMS add-on as part of a software bundle. (See entry 1.4 for details and examples about selling bundles).\n \n 1.23 Can OFL fonts be included in services that deliver fonts to the desktop from remote repositories? Even if they contain both OFL and non-OFL fonts?\n Yes. Some foundries have set up services to deliver fonts to subscribers directly to desktops from their online repositories; similarly, plugins are available to preview and use fonts directly in your design tool or publishing suite. These services may mix open and restricted fonts in the same channel, however they should make a clear distinction between them to users. These services should also not hinder users (such as through DRM or obfuscation mechanisms) from extracting and using the OFL fonts in other environments, or continuing to use OFL fonts after subscription terms have ended, as those uses are specifically allowed by the OFL.\n \n 1.24 Can services that provide or distribute OFL fonts restrict my use of them?\n No. The terms of use of such services cannot replace or restrict the terms of the OFL, as that would be the same as distributing the fonts under a different license, which is not allowed. You are still entitled to use, modify and redistribute them as the original authors have intended outside of the sole control of that particular distribution channel. Note, however, that the fonts provided by these services may differ from the Original Versions.\n \n+1.25 Can a font released under the OFL be used as a source by an AI (Artificial Intelligence), an ML (Machine Learning) model, a NN (neural network), or similar system to create a new font and release it under a different license?\n+No. Any font produced from such systems whose input or training data contains any source file from a font project licensed under the OFL should be considered a derivative work. All Font Software released under the OFL and marked as such by the author(s) must remain under the OFL regardless of the way the sources might have been transformed, in whole or in part. If you would like to use font sources to produce a font to be released under a different license, then you need to contact the corresponding authors directly to ask for their explicit permission.\n \n-2 USING OFL FONTS FOR WEBPAGES AND ONLINE WEB FONT SERVICES\n+1.26 Can OFL fonts be used by AI-based design tools?\n+Yes, as long as the resulting work is not intended to be a font. Using such automated systems to produce graphical output - something that is not a font - is considered similar to normal usage. It is equivalent to using an OFL font in the graphic design process as discussed in question 1.1.\n \n-NOTE: This section often refers to a separate paper on 'Web Fonts & RFNs'. This is available at https://scripts.sil.org/OFL_web_fonts_and_RFNs\n \n-2.1 Can I make webpages using these fonts?\n-Yes! Go ahead! Using CSS (Cascading Style Sheets) is recommended. Your three best options are: \n-- referring directly in your stylesheet to open fonts which may be available on the user's system\n-- providing links to download the full package of the font - either from your own website or from elsewhere - so users can install it themselves\n-- using @font-face to distribute the font directly to browsers. This is recommended and explicitly allowed by the licensing model because it is distribution. The font file itself is distributed with other components of the webpage. It is not embedded in the webpage but referenced through a web address which will cause the browser to retrieve and use the corresponding font to render the webpage (see 1.11 and 1.15 for details related to embedding fonts into documents). As you take advantage of the @font-face cross-platform standard, be aware that web fonts are often tuned for a web environment and not intended for installation and use outside a browser. The reasons in favour of using web fonts are to allow design of dynamic text elements instead of static graphics, to make it easier for content to be localized and translated, indexed and searched, and all this with cross-platform open standards without depending on restricted extensions or plugins. You should check the CSS cascade (the order in which fonts are being called or delivered to your users) when testing.\n+2 USING OFL FONTS FOR WEBPAGES AND ONLINE WEBFONT SERVICES\n \n-2.2 Can I make and use WOFF (Web Open Font Format) versions of OFL fonts?\n-Yes, but you need to be careful. A change in font format normally is considered modification, and Reserved Font Names (RFNs) cannot be used. Because of the design of the WOFF format, however, it is possible to create a WOFF version that is not considered modification, and so would not require a name change. You are allowed to create, use and distribute a WOFF version of an OFL font without changing the font name, but only if:\n+NOTE: This section often refers to a separate paper on 'Webfonts and Reserved Font Names'. This is available at https://openfontlicense.org/webfonts-and-reserved-font-names\n \n-- the original font data remains unchanged except for WOFF compression, and\n-- WOFF-specific metadata is either omitted altogether or present and includes, unaltered, the contents of all equivalent metadata in the original font.\n+2.1 Can I make webpages using OFL fonts?\n+Yes! Go ahead! You could ask visitors to download and install the fonts, but loading the fonts dynamically as webfonts through CSS @font-face declarations is a much better method. The referenced fonts can be hosted on the same server as other site assets and content, or loaded from a separate webfont service. This is recommended and explicitly allowed by the licensing model because it is distribution.\n+\n+2.2 Can I make and use WOFF (Web Open Font Format) versions of OFL fonts?\n+Yes, but you need to be careful. A change in font format normally is considered modification, and Reserved Font Names (RFNs) cannot be used. Because of the design of the WOFF and WOFF2 formats, however, it is possible to create a WOFF/WOFF2 version that is not considered modification, and so would not require a name change.\n \n-If the original font data or metadata is changed, or the WOFF-specific metadata is incomplete, the font must be considered a Modified Version, the OFL restrictions would apply and the name of the font must be changed: any RFNs cannot be used and copyright notices and licensing information must be included and cannot be deleted or modified. You must come up with a unique name - we recommend one corresponding to your domain or your particular web application. Be aware that only the original author(s) can use RFNs. This is to prevent collisions between a derivative tuned to your audience and the original upstream version and so to reduce confusion.\n+2.2.1 How can I make sure that a WOFF/WOFF2 version is not considered modification?\n+You are allowed to create, use and distribute a WOFF version of an OFL font without changing the font name, but only if the original font data remains unchanged except for WOFF compression, and WOFF-specific metadata is either omitted altogether or present and includes, unaltered, the contents of all equivalent metadata in the original font.\n \n-Please note that most WOFF conversion tools and online services do not meet the two requirements listed above, and so their output must be considered a Modified Version. So be very careful and check to be sure that the tool or service you're using is compressing unchanged data and completely and accurately reflecting the original font metadata.\n+2.2.2 Do WOFF conversion tools and services automatically meet these requirements?\n+No. Some WOFF conversion tools and online services do not meet the two requirements listed above, and so their output must be considered a Modified Version. So be very careful and check to be sure that the tool or service you're using is compressing unchanged data and completely and accurately reflecting the original font metadata.\n \n-2.3 What about other web font formats such as EOT/EOTLite/CWT/etc.?\n-In most cases these formats alter the original font data more than WOFF, and do not completely support appropriate metadata, so their use must be considered modification and RFNs may not be used. However, there may be certain formats or usage scenarios that may allow the use of RFNs. See https://scripts.sil.org/OFL_web_fonts_and_RFNs \n+2.3 What about other webfont formats such as EOT/EOTLite/CWT/etc.?\n+In most cases these formats alter the original font data more than WOFF, and do not completely support appropriate metadata, so their use must be considered modification and RFNs may not be used. However, there may be certain formats or usage scenarios that may allow the use of RFNs. See https://openfontlicense.org/webfonts-and-reserved-font-names\n \n-2.4 Can I make OFL fonts available through web font online services?\n-Yes, you are welcome to include OFL fonts in online web font services as long as you properly meet all the conditions of the license. The origin and open status of the font should be clear among the other fonts you are hosting. Authorship, copyright notices and license information must be sufficiently visible to your users or subscribers so they know where the font comes from and the rights granted by the author(s). Make sure the font file contains the needed copyright notice(s) and licensing information in its metadata. Please double-check the accuracy of every field to prevent contradictory information. Other font formats, including EOT/EOTLite/CWT and superior alternatives like WOFF, already provide fields for this information. Remember that if you modify the font within your library or convert it to another format for any reason the OFL restrictions apply and you need to change the names accordingly. Please respect the author's wishes as expressed in the OFL and do not misrepresent original designers and their work. Don't lump quality open fonts together with dubious freeware or public domain fonts. Consider how you can best work with the original designers and foundries, support their efforts and generate goodwill that will benefit your service. (See 1.17 for details related to URL-based access restrictions methods or DRM mechanisms).\n+2.4 Can I make OFL fonts available through webfont online services?\n+Yes, you are welcome to include OFL fonts in online webfont services as long as you properly meet all the conditions of the license. The origin and open status of the font should be clear among the other fonts you are hosting. Authorship, copyright notices and license information must be sufficiently visible to your users or subscribers so they know where the font comes from and the rights granted by the author(s). Make sure the font file contains the needed copyright notice(s) and licensing information in its metadata. Please double-check the accuracy of every field to prevent contradictory information. Other font formats, including EOT/EOTLite/CWT and superior alternatives like WOFF, already provide fields for this information. Remember that if you modify the font within your library or convert it to another format for any reason the OFL restrictions apply and you need to change the names accordingly. Please respect the author's wishes as expressed in the OFL and do not misrepresent original designers and their work. Don't lump quality open fonts together with dubious freeware or public domain fonts. Consider how you can best work with the original designers and foundries, support their efforts and generate goodwill that will benefit your service. (See entry 1.17 for details related to URL-based access restrictions methods or DRM mechanisms).\n \n-2.5 Some web font formats and services provide ways of \"optimizing\" the font for a particular website or web application; is that allowed? \n+2.5 Some webfont formats and services provide ways of 'optimizing' the font for a particular website or web application; is that allowed? \n Yes, it is permitted, but remember that these optimized versions are Modified Versions and so must follow OFL requirements like appropriate renaming. Also you need to bear in mind the other important parameters beyond compression, speed and responsiveness: you need to consider the audience of your particular website or web application, as choosing some optimization parameters may turn out to be less than ideal for them. Subsetting by removing certain glyphs or features may seriously limit functionality of the font in various languages that your users expect. It may also introduce degradation of quality in the rendering or specific bugs on the various target platforms compared to the original font from upstream. In other words, remember that one person's optimized font may be another person's missing feature. Various advanced typographic features (OpenType, Graphite or AAT) are also available through CSS and may provide the desired effects without the need to modify the font.\n \n-2.6 Is subsetting a web font considered modification?\n-Yes. Removing any parts of the font when delivering a web font to a browser, including unused glyphs and smart font code, is considered modification. This is permitted by the OFL but would not normally allow the use of RFNs. Some newer subsetting technologies may be able to subset in a way that allows users to effectively have access to the complete font, including smart font behaviour. See 2.8 and https://scripts.sil.org/OFL_web_fonts_and_RFNs\n+2.6 Is subsetting a webfont considered modification?\n+Yes. Removing any parts of the font when delivering a webfont to a browser, including unused glyphs and smart font code, is considered modification. This is permitted by the OFL but would not normally allow the use of RFNs. Some newer subsetting technologies may be able to subset in a way that allows users to effectively have access to the complete font, including smart font behaviour. See entry 2.8 and https://openfontlicense.org/webfonts-and-reserved-font-names\n \n-2.7 Are there any situations in which a modified web font could use RFNs?\n-Yes. If a web font is optimized only in ways that preserve Functional Equivalence (see 2.8), then it may use RFNs, as it reasonably represents the Original Version and respects the intentions of the author(s) and the main purposes of the RFN mechanism (avoids collisions, protects authors, minimizes support, encourages derivatives). However this is technically very difficult and often impractical, so a much better scenario is for the web font service or provider to sign a separate agreement with the author(s) that allows the use of RFNs for Modified Versions.\n+2.7 Are there any situations in which a modified webfont could use RFNs?\n+Yes. If a webfont is optimized only in ways that preserve Functional Equivalence (see entry 2.8), then it may use RFNs, as it reasonably represents the Original Version and respects the intentions of the author(s) and the main purposes of the RFN mechanism (avoids collisions, protects authors, minimizes support, encourages derivatives). However this is technically very difficult and often impractical, so a much better scenario is for the webfont service or provider to sign a separate agreement with the author(s) that allows the use of RFNs for Modified Versions.\n \n-2.8 How do you know if an optimization to a web font preserves Functional Equivalence?\n-Functional Equivalence is described in full in the 'Web fonts and RFNs' paper at https://scripts.sil.org/OFL_web_fonts_and_RFNs, in general, an optimized font is deemed to be Functionally Equivalent (FE) to the Original Version if it:\n+2.8 How do you know if an optimization to a webfont preserves Functional Equivalence?\n+Functional Equivalence is described in full in the 'Webfonts and Reserved Font Names' paper at https://openfontlicense.org/webfonts-and-reserved-font-names, in general, an optimized font is deemed to be Functionally Equivalent (FE) to the Original Version if it:\n \n-- Supports the same full character inventory. If a character can be properly displayed using the Original Version, then that same character, encoded correctly on a web page, will display properly. \n+- Supports the same full character inventory. If a character can be properly displayed using the Original Version, then that same character, encoded correctly on a webpage, will display properly.\n - Provides the same smart font behavior. Any dynamic shaping behavior that works with the Original Version should work when optimized, unless the browser or environment does not support it. There does not need to be guaranteed support in the client, but there should be no forced degradation of smart font or shaping behavior, such as the removal or obfuscation of OpenType, Graphite or AAT tables.\n - Presents text with no obvious degradation in visual quality. The lettershapes should be equally (or more) readable, within limits of the rendering platform.\n - Preserves original author, project and license metadata. At a minimum, this should include: Copyright and authorship; The license as stated in the Original Version, whether that is the full text of the OFL or a link to the web version; Any RFN declarations; Information already present in the font or documentation that points back to the Original Version, such as a link to the project or the author's website.\n \n If an optimized font meets these requirements, and so is considered to be FE, then it's very likely that the original author would feel that the optimized font is a good and reasonable equivalent. If it falls short of any of these requirements, the optimized font does not reasonably represent the Original Version, and so should be considered to be a Modified Version. Like other Modified Versions, it would not be allowed to use any RFNs and you simply need to pick your own font name.\n \n-2.9 Isn't use of web fonts another form of embedding?\n-No. Unlike embedded fonts in a PDF, web fonts are not an integrated part of the document itself. They are not specific to a single document and are often applied to thousands of documents around the world. The font data is not stored alongside the document data and often originates from a different location. The ease by which the web fonts used by a document may be identified and downloaded for desktop use demonstrates that they are philosophically and technically separate from the web pages that specify them. See https://scripts.sil.org/OFL_web_fonts_and_RFNs\n+2.9 Can fonts released under the OFL be used with Incremental Font Transfer (IFT) or similar on-the-fly subsetting and compression technologies?\n+Yes, if they provide a sufficient level of Functional Equivalence. Extra care should be taken to make sure that such processes - both on the server and on the client - do not break glyph coverage and smart features especially for lesser-known and lesser-resourced languages in the resulting document or app. See the 'Webfonts and Reserved Font Names' paper on https://openfontlicense.org/webfonts-and-reserved-font-names for more about the goals and the rationale.\n \n-2.10 So would it be better to not use RFNs at all if you want your font to be distributed by a web fonts service?\n-No. Although the OFL does not require authors to use RFNs, the RFN mechanism is an important part of the OFL model and completely compatible with web font services. If that web font service modifies the fonts, then the best solution is to sign a separate agreement for the use of any RFNs. It is perfectly valid for an author to not declare any RFNs, but before they do so they need to fully understand the benefits they are giving up, and the overall negative effect of allowing many different versions bearing the same name to be widely distributed. As a result, we don't generally recommend it.\n+2.10 Isn't use of webfonts another form of embedding?\n+No. Unlike embedded fonts in a PDF, webfonts are not an integrated part of the document itself. They are not specific to a single document and are often applied to thousands of documents around the world. The font data is not stored alongside the document data and often originates from a different location. The ease by which the webfonts used by a document may be identified and downloaded for desktop use demonstrates that they are philosophically and technically separate from the webpages that specify them. See https://openfontlicense.org/webfonts-and-reserved-font-names\n \n-2.11 What should an agreement for the use of RFNs say? Are there any examples?\n-There is no prescribed format for this agreement, as legal systems vary, and no recommended examples. Authors may wish to add specific clauses to further restrict use, require author review of Modified Versions, establish user support mechanisms or provide terms for ending the agreement. Such agreements are usually not public, and apply only to the main parties. However, it would be very beneficial for web font services to clearly state when they have established such agreements, so that the public understands clearly that their service is operating appropriately.\n+2.11 So would it be better to not use RFNs at all if you want your font to be distributed by a webfont service?\n+No. Although the OFL does not require authors to use RFNs, the RFN mechanism is an important part of the OFL model and completely compatible with webfont services. If that webfont service modifies the fonts, then the best solution is to sign a separate agreement for the use of any RFNs. It is perfectly valid for an author to not declare any RFNs, but before they do so they need to fully understand the benefits they are giving up, and the overall negative effect of allowing many different versions bearing the same name to be widely distributed. As a result, we don't generally recommend it.\n \n-See the separate paper on 'Web Fonts & RFNs' for in-depth discussion of issues related to the use of RFNs for web fonts. This is available at https://scripts.sil.org/OFL_web_fonts_and_RFNs\n+2.12 What should an agreement for the use of RFNs say? Are there any examples?\n+There is no prescribed format for this agreement, as legal systems vary, and no recommended examples. Authors may wish to add specific clauses to further restrict use, require author review of Modified Versions, establish user support mechanisms or provide terms for ending the agreement. Such agreements are usually not public, and apply only to the main parties. However, it would be very beneficial for webfont services to clearly state when they have established such agreements, so that the public understands clearly that their service is operating appropriately.\n+\n+See the separate paper on 'Webfonts and Reserved Font Names' for in-depth discussion of issues related to the use of RFNs for webfonts. This is available at https://openfontlicense.org/webfonts-and-reserved-font-names\n \n \n 3 MODIFYING OFL-LICENSED FONTS\n@@ -178,7 +182,7 @@ No, but please consider sharing your improvements with others. You may find that\n 3.7 If a trademark is claimed in the OFL font, does that trademark need to remain in modified fonts?\n Yes. Any trademark notices must remain in any derivative fonts to respect trademark laws, but you may add any additional trademarks you claim, officially registered or not. For example if an OFL font called \"Foo\" contains a notice that \"Foo is a trademark of Acme\", then if you rename the font to \"Bar\" when creating a Modified Version, the new trademark notice could say \"Foo is a trademark of Acme Inc. - Bar is a trademark of Roadrunner Technologies Ltd.\". Trademarks work alongside the OFL and are not subject to the terms of the licensing agreement. The OFL does not grant any rights under trademark law. Bear in mind that trademark law varies from country to country and that there are no international trademark conventions as there are for copyright. You may need to significantly invest in registering and defending a trademark for it to remain valid in the countries you are interested in. This may be costly for an individual independent designer.\n \n-3.8 If I commit changes to a font (or publish a branch in a DVCS) as part of a public open source software project, do I have to change the internal font names? \n+3.8 If I commit changes to a font (or publish a branch in a DVCS) as part of a public open source software project, do I have to change the internal font names? \n Only if there are declared RFNs. Making a public commit or publishing a public branch is effectively redistributing your modifications, so any change to the font will require that you do not use the RFNs. Even if there are no RFNs, it may be useful to change the name or add a suffix indicating that a particular version of the font is still in development and not released yet. This will clearly indicate to users and fellow designers that this particular font is not ready for release yet. See section 5 for more details.\n \n \n@@ -192,21 +196,23 @@ If you want to release your fonts under the OFL, we recommend you do the followi\n \n 4.2.1 Put your copyright and Reserved Font Names information at the beginning of the main OFL.txt file in place of the dedicated placeholders (marked with the <> characters). Include this file in your release package.\n \n-4.2.2 Put your copyright and the OFL text with your chosen Reserved Font Name(s) into your font files (the copyright and license fields). A link to the OFL text on the OFL web site is an acceptable (but not recommended) alternative. Also add this information to any other components (build scripts, glyph databases, documentation, test files, etc). Accurate metadata in your font files is beneficial to you as an increasing number of applications are exposing this information to the user. For example, clickable links can bring users back to your website and let them know about other work you have done or services you provide. Depending on the format of your fonts and sources, you can use template human-readable headers or machine-readable metadata. You should also double-check that there is no conflicting metadata in the font itself contradicting the license, such as the fstype bits in the os2 table or fields in the name table.\n+4.2.2 Put your copyright and the OFL text with your chosen Reserved Font Name(s) into your font files (the copyright and license fields). A link to the OFL text on the OFL website is an acceptable (but not recommended) alternative. Also add this information to any other components (build scripts, glyph databases, documentation, test files, etc). Accurate metadata in your font files is beneficial to you as an increasing number of applications are exposing this information to the user. For example, clickable links can bring users back to your website and let them know about other work you have done or services you provide. Depending on the format of your fonts and sources, you can use template human-readable headers or machine-readable metadata. You should also double-check that there is no conflicting metadata in the font itself contradicting the license, such as the fstype bits in the os2 table or fields in the name table.\n \n 4.2.3 Write an initial FONTLOG.txt for your font and include it in the release package (see Section 6 and Appendix A for details including a template).\n \n 4.2.4 Include the relevant practical documentation on the license by adding the current OFL-FAQ.txt file in your package.\n \n-4.2.5 If you wish you can use the OFL graphics (https://scripts.sil.org/OFL_logo) on your website. \n+4.2.5 If you wish you can use the OFL graphics (https://openfontlicense.org/promotion) on your website. \n \n 4.3 Will you make my font OFL for me?\n-We won't do the work for you. We can, however, try to answer your questions, unfortunately we do not have the resources to review and check your font packages for correct use of the OFL. We recommend you turn to designers, foundries or consulting companies with experience in doing open font design to provide this service to you. \n+We won't do the work for you. We can, however, try to answer your questions. Unfortunately we do not have the resources to review and check your font packages for correct use of the OFL. We recommend you turn to designers, foundries or consulting companies with experience in doing open font design to provide this service to you.\n \n 4.4 Will you distribute my OFL font for me?\n-No, although if the font is of sufficient quality and general interest we may include a link to it on our partial list of OFL fonts on the OFL web site. You may wish to consider other open font catalogs or hosting services, such as the Unifont Font Guide (https://unifont.org/fontguide), The League of Movable Type (https://www.theleagueofmoveabletype.com/) or the Open Font Library (https://fontlibrary.org/), which despite the name has no direct relationship to the OFL or SIL. We do not endorse any particular catalog or hosting service - it is your responsibility to determine if the service is right for you and if it treats authors with fairness. \n+No. The easiest way for users to always get the most current version of the font is for you to distribute it through your own website. You can also distribute your own font source files, or host them on services such as GitHub or GitLab. You can use various channels, including social media, to promote and get attention to your project. If you want someone else to distribute the font, consider services and sites that already distribute OFL fonts. Some of those are listed on the OFL website (https://openfontlicense.org/ofl-fonts). Contact them to find out how to submit fonts to them. We do not endorse any particular catalog or hosting service. It is your responsibility to determine if the service is right for you and if it treats authors with fairness.\n \n 4.5 Why should I use the OFL for my fonts?\n+Here are a few of the many good reasons:\n+\n - to meet needs for fonts that can be modified to support lesser-known languages\n - to provide a legal and clear way for people to respect your work but still use it (and reduce piracy)\n - to involve others in your font project\n@@ -218,15 +224,21 @@ No, although if the font is of sufficient quality and general interest we may in\n - to educate students about quality typeface and font design\n - to expand your test base and get more useful feedback \n - to extend your reach to new markets when users see your metadata and go to your website\n-- to get your font more easily into one of the web font online services\n+- to get your font more easily into one of the webfont online services\n - to attract attention for your commercial fonts\n-- to make money through web font services\n+- to make money through webfont services\n - to make money by bundling fonts with applications\n - to make money adjusting and extending existing open fonts\n-- to get a better chance that foundations/NGOs/charities/companies who commission fonts will pick you \n+- to get a better chance that foundations, NGOs, charities, or companies who commission fonts will pick you \n - to be part of a sharing design and development community \n - to give back and contribute to a growing body of font sources\n \n+4.6 Can I cancel or undo the OFL license for a font that I've already released under it?\n+No, as an author, you cannot cancel or undo the permissions you have granted earlier by releasing a font under the OFL. But as an original author of that specific font you can always re-release it separately under another license of your own choosing. Of course, you cannot re-license a font for which you are not the author. If there are multiple authors they need to be all in official written agreement with the re-licensing. For practical reasons, a different name than an existing and publicly available open font should be chosen.\n+\n+4.7 Should I apply the OFL early in the design process, even before the font is complete, or wait until I want to release a completed version?\n+It is really up to you and the circumstances of your project. But in any case, we would recommend you place appropriate warning messages in your public repository or website to say something like \"Please wait for a finished release before using and redistributing this font\". We recommend you have a clear versioning scheme and repository tagging to make it as easy as possible to see if the font is a released version or still under development. You can also consider choosing a separate name (or suffix) for the development version, and only give the final name to a released version.\n+\n \n 5 CHOOSING RESERVED FONT NAMES\n \n@@ -237,7 +249,7 @@ These are font names, or portions of font names, that the author has chosen to r\n The best way to acknowledge the source of the design is to thank the original authors and any other contributors in the files that are distributed with your revised font (although no acknowledgement is required). The FONTLOG is a natural place to do this. Reserved Font Names ensure that the only fonts that have the original names are the unmodified Original Versions. This allows designers to maintain artistic integrity while allowing collaboration to happen. It eliminates potential confusion and name conflicts. When choosing a name, be creative and avoid names that reuse almost all the same letters in the same order or sound like the original. It will help everyone if Original Versions and Modified Versions can easily be distinguished from one another and from other derivatives. Any substitution and matching mechanism is outside the scope of the license.\n \n 5.3 What do you mean by \"primary name as presented to the user\"? Are you referring to the font menu name?\n-Yes, this applies to the font menu name and other mechanisms that specify a font in a document. It would be fine, however, to keep a text reference to the original fonts in the description field, in your modified source file or in documentation provided alongside your derivative as long as no one could be confused that your modified source is the original. But you cannot use the Reserved Font Names in any way to identify the font to the user (unless the Copyright Holder(s) allow(s) it through a separate agreement). Users who install derivatives (Modified Versions) on their systems should not see any of the original Reserved Font Names in their font menus, for example. Again, this is to ensure that users are not confused and do not mistake one font for another and so expect features only another derivative or the Original Version can actually offer. \n+Yes, this applies to the font menu name and other mechanisms that specify a font in a document. It would be fine, however, to keep a text reference to the original fonts in the description field, in your modified source file or in documentation provided alongside your derivative as long as no one could be confused that your modified source is the original. But you cannot use the Reserved Font Names in any way to identify the font to the user (unless the Copyright Holder(s) allow(s) it through a separate agreement). Users who install derivatives (Modified Versions) on their systems should not see any of the original Reserved Font Names in their font menus, for example. Again, this is to ensure that users are not confused and do not mistake one font for another and so expect features only another derivative or the Original Version can actually offer.\n \n 5.4 Am I not allowed to use any part of the Reserved Font Names?\n You may not use individual words from the Reserved Font Names, but you would be allowed to use parts of words, as long as you do not use any word from the Reserved Font Names entirely. We do not recommend using parts of words because of potential confusion, but it is allowed. For example, if \"Foobar\" was a Reserved Font Name, you would be allowed to use \"Foo\" or \"bar\", although we would not recommend it. Such an unfortunate choice would confuse the users of your fonts as well as make it harder for other designers to contribute.\n@@ -246,13 +258,13 @@ You may not use individual words from the Reserved Font Names, but you would be\n Original authors are encouraged to name their fonts using clear, distinct names, and only declare the unique parts of the name as Reserved Font Names. For example, the author of a font called \"Foobar Sans\" would declare \"Foobar\" as a Reserved Font Name, but not \"Sans\", as that is a common typographical term, and may be a useful word to use in a derivative font name. Reserved Font Names should also be single words for simplicity and legibility. A font called \"Flowing River\" should have Reserved Font Names \"Flowing\" and \"River\", not \"Flowing River\". You also need to be very careful about reserving font names which are already linked to trademarks (whether registered or not) which you do not own.\n \n 5.6 Do I, as an author, have to identify any Reserved Font Names?\n-No. RFNs are optional and not required, but we encourage you to use them. This is primarily to avoid confusion between your work and Modified Versions. As an author you can release a font under the OFL and not declare any Reserved Font Names. There may be situations where you find that using no RFNs and letting your font be changed and modified - including any kind of modification - without having to change the original name is desirable. However you need to be fully aware of the consequences. There will be no direct way for end-users and other designers to distinguish your Original Version from many Modified Versions that may be created. You have to trust whoever is making the changes and the optimizations to not introduce problematic changes. The RFNs you choose for your own creation have value to you as an author because they allow you to maintain artistic integrity and keep some control over the distribution channel to your end-users. For discussion of RFNs and web fonts see section 2.\n+No. RFNs are optional and not required, but we encourage you to use them. This is primarily to avoid confusion between your work and Modified Versions. As an author you can release a font under the OFL and not declare any Reserved Font Names. There may be situations where you find that using no RFNs and letting your font be changed and modified - including any kind of modification - without having to change the original name is desirable. However you need to be fully aware of the consequences. There will be no direct way for end-users and other designers to distinguish your Original Version from many Modified Versions that may be created. You have to trust whoever is making the changes and the optimizations to not introduce problematic changes. The RFNs you choose for your own creation have value to you as an author because they allow you to maintain artistic integrity and keep some control over the distribution channel to your end-users. For discussion of RFNs and webfonts see section 2.\n \n 5.7 Are any names (such as the main font name) reserved by default?\n No. That is a change to the license as of version 1.1. If you want any names to be Reserved Font Names, they must be specified after the copyright statement(s).\n \n 5.8 Is there any situation in which I can use Reserved Font Names for a Modified Version?\n-The Copyright Holder(s) can give certain trusted parties the right to use any of the Reserved Font Names through separate written agreements. For example, even if \"Foobar\" is a RFN, you could write up an agreement to give company \"XYZ\" the right to distribute a modified version with a name that includes \"Foobar\". This allows for freedom without confusion. The existence of such an agreement should be made as clear as possible to downstream users and designers in the distribution package and the relevant documentation. They need to know if they are a party to the agreement or not and what they are practically allowed to do or not even if all the details of the agreement are not public.\n+The Copyright Holder(s) can give certain trusted parties the right to use any of the Reserved Font Names through separate written agreements. For example, even if \"Foobar\" is an RFN, you could write up an agreement to give company \"XYZ\" the right to distribute a modified version with a name that includes \"Foobar\". This allows for freedom without confusion. The existence of such an agreement should be made as clear as possible to downstream users and designers in the distribution package and the relevant documentation. They need to know if they are a party to the agreement or not and what they are practically allowed to do or not even if all the details of the agreement are not public.\n \n 5.9 Do font rebuilds require a name change? Do I have to change the name of the font when my packaging workflow includes a full rebuild from source?\n Yes, all rebuilds which change the font data and the smart code are Modified Versions and the requirements of the OFL apply: you need to respect what the Author(s) have chosen in terms of Reserved Font Names. However if a package (or installer) is simply a wrapper or a compressed structure around the final font - leaving them intact on the inside - then no name change is required. Please get in touch with the author(s) and copyright holder(s) to inquire about the presence of font sources beyond the final font file(s) and the recommended build path. That build path may very well be non-trivial and hard to reproduce accurately by the maintainer. If a full font build path is made available by the upstream author(s) please be aware that any regressions and changes you may introduce when doing a rebuild for packaging purposes is your own responsibility as a package maintainer since you are effectively creating a separate branch. You should make it very clear to your users that your rebuilt version is not the canonical one from upstream.\n@@ -270,7 +282,7 @@ It has three purposes: 1) to provide basic information on the font to users and\n It is not a requirement of the license, but we strongly recommend you have one.\n \n 6.3 Am I required to update the FONTLOG when making Modified Versions?\n-No, but users, designers and other developers might get very frustrated with you if you don't. People need to know how derivative fonts differ from the original, and how to take advantage of the changes, or build on them. There are utilities that can help create and maintain a FONTLOG, such as the FONTLOG support in FontForge.\n+No, but users, designers and other developers might get very frustrated with you if you don't. People need to know how derivative fonts differ from the original, and how to take advantage of the changes, or build on them. There are utilities that can help create and maintain a FONTLOG.\n \n 6.4 What should the FONTLOG look like?\n It is typically a separate text file (FONTLOG.txt), but can take other formats. It commonly includes these four sections:\n@@ -301,7 +313,7 @@ It is likely that most authors of OFL fonts would accept financial contributions\n 8 ABOUT THE LICENSE ITSELF\n \n 8.1 I see that this is version 1.1 of the license. Will there be later changes?\n-Version 1.1 is the first minor revision of the OFL. We are confident that version 1.1 will meet most needs, but are open to future improvements. Any revisions would be for future font releases, and previously existing licenses would remain in effect. No retroactive changes are possible, although the Copyright Holder(s) can re-release the font under a revised OFL. All versions will be available on our web site: https://scripts.sil.org/OFL.\n+Version 1.1 is the first minor revision of the OFL. We are confident that version 1.1 will meet most needs, but are open to future improvements. Any revisions would be for future font releases, and previously existing licenses would remain in effect. No retroactive changes are possible, although the Copyright Holder(s) can re-release the font under a revised OFL. All versions will be available on our website: https://openfontlicense.org.\n \n 8.2 Does this license restrict the rights of the Copyright Holder(s)?\n No. The Copyright Holder(s) still retain(s) all the rights to their creation; they are only releasing a portion of it for use in a specific way. For example, the Copyright Holder(s) may choose to release a 'basic' version of their font under the OFL, but sell a restricted 'enhanced' version under a different license. They may also choose to release the same font under both the OFL and some other license. Only the Copyright Holder(s) can do this, and doing so does not change the terms of the OFL as it applies to that font.\n@@ -310,14 +322,14 @@ No. The Copyright Holder(s) still retain(s) all the rights to their creation; th\n The OFL is a worldwide license based on international copyright agreements and conventions. It is not a contract and so does not require you to sign it to have legal validity. By using, modifying and redistributing components under the OFL you indicate that you accept the license.\n \n 8.4 I really like the terms of the OFL, but want to change it a little. Am I allowed to take ideas and actual wording from the OFL and put them into my own custom license for distributing my fonts?\n-We strongly recommend against creating your very own unique open licensing model. Using a modified or derivative license will likely cut you off - along with the font(s) under that license - from the community of designers using the OFL, potentially expose you and your users to legal liabilities, and possibly put your work and rights at risk. The OFL went though a community and legal review process that took years of effort, and that review is only applicable to an unmodified OFL. The text of the OFL has been written by SIL (with review and consultation from the community) and is copyright (c) 2005-2017 SIL International. You may re-use the ideas and wording (in part, not in whole) in another non-proprietary license provided that you call your license by another unambiguous name, that you do not use the preamble, that you do not mention SIL and that you clearly present your license as different from the OFL so as not to cause confusion by being too similar to the original. If you feel the OFL does not meet your needs for an open license, please contact us.\n+We strongly recommend against creating your very own unique open licensing model. Using a modified or derivative license will likely cut you off - along with the font(s) under that license - from the community of designers using the OFL, potentially expose you and your users to legal liabilities, and possibly put your work and rights at risk. The OFL went though a community and legal review process that took years of effort, and that review is only applicable to an unmodified OFL. The text of the OFL has been written by SIL (with review and consultation from the community) and is copyright (c) 2005-2023 SIL International. You may re-use the ideas and wording (in part, not in whole) in another non-proprietary license provided that you call your license by another unambiguous name, that you do not use the preamble, that you do not mention SIL and that you clearly present your license as different from the OFL so as not to cause confusion by being too similar to the original. If you feel the OFL does not meet your needs for an open license, please contact us.\n \n 8.5 Can I quote from the OFL FAQ?\n Yes, SIL gives permission to quote from the OFL FAQ (OFL-FAQ.txt), in whole or in part, provided that the quoted text is:\n \n - unmodified,\n - used to help explain the intent of the OFL, rather than cause misunderstanding, and\n-- accompanied with the following attribution: \"From the OFL FAQ (OFL-FAQ.txt), copyright (c) 2005-2020 SIL International. Used by permission. https://scripts.sil.org/OFL-FAQ_web\".\n+- accompanied with the following attribution: \"From the OFL FAQ (OFL-FAQ.txt), copyright (c) 2005-2023 SIL International. Used by permission. https://openfontlicense.org/OFL-FAQ\".\n \n 8.6 Can I translate the license and the FAQ into other languages?\n SIL certainly recognises the need for people who are not familiar with English to be able to understand the OFL and its use. Making the license very clear and readable has been a key goal for the OFL, but we know that people understand their own language best.\n@@ -326,30 +338,33 @@ If you are an experienced translator, you are very welcome to translate the OFL\n \n SIL gives permission to publish unofficial translations into other languages provided that they comply with the following guidelines:\n \n-- Put the following disclaimer in both English and the target language stating clearly that the translation is unofficial:\n+Put the following disclaimer in both English and the target language stating clearly that the translation is unofficial: \"This is an unofficial translation of the SIL Open Font License into . It was not published by SIL International, and does not legally state the distribution terms for fonts that use the OFL. A release under the OFL is only valid when using the original English text. However, we recognize that this unofficial translation will help users and designers not familiar with English to better understand and use the OFL. We encourage designers who consider releasing their creation under the OFL to read the OFL-FAQ in their own language if it is available. Please go to https://openfontlicense.org for the official version of the license and the accompanying OFL-FAQ.\"\n \n-\"This is an unofficial translation of the SIL Open Font License into . It was not published by SIL International, and does not legally state the distribution terms for fonts that use the OFL. A release under the OFL is only valid when using the original English text. However, we recognize that this unofficial translation will help users and designers not familiar with English to better understand and use the OFL. We encourage designers who consider releasing their creation under the OFL to read the OFL-FAQ in their own language if it is available. Please go to https://scripts.sil.org/OFL for the official version of the license and the accompanying OFL-FAQ.\"\n+Keep your unofficial translation current and update it at our request if needed, for example if there is any ambiguity which could lead to confusion. If you start such an unofficial translation effort of the OFL and OFL-FAQ please let us know.\n \n-- Keep your unofficial translation current and update it at our request if needed, for example if there is any ambiguity which could lead to confusion. \n+8.7 Does the OFL have an explicit expiration term?\n+No, the implicit intent of the OFL is that the permissions granted are perpetual and irrevocable.\n \n-If you start such a unofficial translation effort of the OFL and OFL-FAQ please let us know.\n+8.8 Why is there no automatic upgrade clause, a 'version 1.1 or later' like in the GPL?\n+This is by design, with the goals of establishing clear trust and of preventing any situation where the actual terms could be changed from underneath any user of the license. That would introduce uncertainty and confusion. Any perceived benefits of automatic incremental licensing under newer versions is strongly outweighed by the inherent risks and confusion it would cause. If a new version becomes officially available, Copyright Holder(s) can review the new version and decide whether to re-release their fonts under it. Derivative fonts could not be re-licensed unless the original versions were re-released first.\n \n-8.7 Does the OFL have an explicit expiration term?\n-No, the implicit intent of the OFL is that the permissions granted are perpetual and irrevocable. \n+8.9 How do you pronounce the name of the license?\n+The OFL is pronounced as three individual letters /ˈɑː.əf.əl/ or OH-EFF-ELL.\n \n \n 9 ABOUT SIL INTERNATIONAL\n \n 9.1 Who is SIL International and what do they do?\n-SIL serves language communities worldwide, building their capacity for sustainable language development, by means of research, translation, training and materials development. SIL makes its services available to all without regard to religious belief, political ideology, gender, race, or ethnic background. SIL's members and volunteers share a Christian commitment.\n+SIL is a global, faith-based nonprofit that works with local communities around the world to develop language solutions that expand possibilities for a better life. SIL serves language communities worldwide, building their capacity for sustainable language development, by means of research, translation, training and materials development. SIL makes its services available to all without regard to religious belief, political ideology, gender, race, or ethnic background. SIL's members and volunteers share a Christian commitment.\n \n 9.2 What does this have to do with font licensing?\n The ability to read, write, type and publish in one's own language is one of the most critical needs for millions of people around the world. This requires fonts that are widely available and support lesser-known languages. SIL develops - and encourages others to develop - a complete stack of writing systems implementation components available under open licenses. This open stack includes input methods, smart fonts, smart rendering libraries and smart applications. There has been a need for a common open license that is specifically applicable to fonts and related software (a crucial component of this stack), so SIL developed the SIL Open Font License with the help of the Free/Libre and Open Source Software community.\n \n 9.3 How can I contact SIL?\n-Our main web site is: https://www.sil.org/\n-Our site about complex scripts is: https://scripts.sil.org/\n-Information about this license (and contact information) is at: https://scripts.sil.org/OFL\n+Our main website is: https://www.sil.org/\n+Our main site about fonts and software is: https://software.sil.org/\n+Our site about complex scripts is: https://scriptsource.org/\n+Information about this license (and contact information) is at: https://openfontlicense.org \n \n \n APPENDIX A - FONTLOG EXAMPLE\n@@ -378,7 +393,7 @@ ChangeLog\n - fix new build and testing system (bug #123456)\n \n 1 August 2008 (Tom Parker) GlobalFontFamily version 1.2.1\n-- Tweaked the smart font code (Branch merged with trunk version)\n+- Tweaked the smart font code (Branch merged with main)\n - Provided improved build and debugging environment for smart behaviours\n \n 7 February 2007 (Pat Johnson) NewWorldFontFamily Version 1.3\n@@ -405,27 +420,27 @@ If you make modifications be sure to add your name (N), email (E), web-address (\n \n N: Jane Doe\n E: jane@university.edu\n-W: http://art.university.edu/projects/fonts\n+W: https://art.university.edu/projects/fonts\n D: Contributor - Armenian glyphs and code\n \n N: Fred Foobar\n E: fred@foobar.org\n-W: http://foobar.org\n+W: https://foobar.org\n D: Contributor - misc Graphite fixes\n \n N: Pat Johnson\n E: pat@fontstudio.org\n-W: http://pat.fontstudio.org\n+W: https://pat.fontstudio.org\n D: Designer - Greek & Cyrillic glyphs based on Roman design\n \n N: Tom Parker\n E: tom@company.com\n-W: http://www.company.com/tom/projects/fonts\n+W: https://www.company.com/tom/projects/fonts\n D: Engineer - original smart font code\n \n N: Joe Smith\n E: joe@fontstudio.org\n-W: http://joe.fontstudio.org\n+W: https://joe.fontstudio.org\n D: Designer - original Roman glyphs\n \n Fontstudio.org is an not-for-profit design group whose purpose is..." + }, + { + "sha": "1da0bc6aaf40387d9a4edbc7ddc9466313351bd3", + "filename": "fonts/sil/abyssinicasil/OFL.txt", + "status": "modified", + "additions": 2, + "deletions": 2, + "changes": 4, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2FOFL.txt", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2FOFL.txt", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2FOFL.txt?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,11 +1,11 @@\n-This Font Software is Copyright (c) 2000-2023, SIL International (https://www.sil.org/)\n+This Font Software is Copyright (c) 2000-2024, SIL Global (https://www.sil.org/)\n with Reserved Font Names \"Abyssinica\" and \"SIL\".\n \n Modern Gurage glyphs Copyright (c) 2021-2022 The Ge'ez Frontier Foundation.\n \n This Font Software is licensed under the SIL Open Font License, Version 1.1.\n This license is copied below, and is also available with a FAQ at:\n-https://scripts.sil.org/OFL\n+https://openfontlicense.org/\n \n \n " + }, + { + "sha": "8d30ec7505089b67192f0d40d59c65728bdcb932", + "filename": "fonts/sil/abyssinicasil/README.txt", + "status": "modified", + "additions": 3, + "deletions": 6, + "changes": 9, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2FREADME.txt", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2FREADME.txt", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2FREADME.txt?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -9,7 +9,7 @@ Abyssinica SIL provides glyphs for a wide range of Ethiopic and Latin.\n Please read the online documentation to see what ranges are supported. \n \n Abyssinica SIL is released under the SIL Open Font License.\n-Abyssinica SIL is a trademark of SIL International.\n+Abyssinica SIL is a trademark of SIL Global.\n \t\n See the OFL and OFL-FAQ for details of the SIL Open Font License.\n See the FONTLOG for information on this and previous releases.\n@@ -71,14 +71,11 @@ glyphs (symbols) in a font and allow you to enter them by clicking on the\n glyph you want.\n \n Rendering:\n-This font is designed to work with either of two advanced font technologies, \n-Graphite or OpenType. To take advantage of the advanced typographic \n-capabilities of this font, you must be using applications that provide an\n-adequate level of support for Graphite or OpenType. \n+This font is designed to work with the OpenType font technology. To take advantage of the advanced typographic capabilities of this font, you must be using applications that provide an adequate level of support for OpenType. The OpenType advanced capabilities provide access to the variant character forms used in some languages.\n \n CONTACT\n ========\n-For more information please visit the Abyssinica SIL page on SIL International's\n+For more information please visit the Abyssinica SIL page on SIL Global's\n Computers and Writing systems website:\n https://software.sil.org/abyssinica/\n " + }, + { + "sha": "290ddfca5f598d93efcfad44a124dec1464d2237", + "filename": "fonts/sil/abyssinicasil/documentation/about.html", + "status": "modified", + "additions": 67, + "deletions": 18, + "changes": 85, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fabout.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fabout.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fabout.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -15,35 +15,84 @@\n

Abyssinica SIL - About

\n \n

About this project

\n-

Abyssinica SIL is based on Ethiopic calligraphic traditions. The Ethiopic script is used for writing many of the languages of Ethiopia and Eritrea. This project is intended to provide a free and open font for all current languages and writing systems that use the Ethiopic script. It supports the complete range of Unicode characters for Ethiopic.

\n-

For more information on the visual characteristics of the font see Design.

\n+

Abyssinica SIL is based on Ethiopic calligraphic traditions. The\n+ Ethiopic script is used for writing many of the languages of\n+ Ethiopia and Eritrea. This project is intended to provide a free and\n+ open font for all current languages and writing systems that use the\n+ Ethiopic script. It supports the complete range of Unicode\n+ characters for Ethiopic.

\n+

For more information on the visual characteristics of the font\n+ see Design.

\n

Future plans

\n-

This font is actively maintained and improved, and recent changes to its development process will enable more frequent releases.

\n-

The highest priorities for future additions and enhancements are mainly driven by:

\n+

This font is actively maintained and improved, and recent changes\n+ to its development process will enable more frequent releases.

\n+

The highest priorities for future additions and enhancements are\n+ mainly driven by:

\n \n-

Please send us your requests using the form on the font website. If you are interested in helping us make the font better see the Developer page.

\n+

Please send us your requests using the form on\n+ the font website. If you are interested in helping us make the\n+ font better see the Developer page.

\n

Announcement list

\n-

If you wish to receive announcements about updates to any of our SIL fonts, please subscribe to our SIL Font News Announcement List. This is an announcement-only list with messages approximately once a month. It does not allow any discussion.

\n+

If you wish to receive announcements about updates to any of our\n+ SIL fonts, please subscribe to our SIL\n+ Font News Announcement List. This is an announcement-only list\n+ with messages approximately once a month. It does not allow any\n+ discussion.

\n

You can subscribe using either of the two following options.

\n
    \n-
  • If you use a Google profile and join the group, you will be able to access the group and control your subscription and notification options with a web browser. Make sure you are logged in to your Google profile and go to the SIL Font News Google Group. Click on Join group.

  • \n-
  • If you would rather not use a Google profile, you can subscribe any email address by sending a message to sil-font-news+subscribe@groups.sil.org and following the instructions you get in the confirmation message.

  • \n+
  • If you use a Google profile and join the group, you will be\n+ able to access the group and control your subscription and\n+ notification options with a web browser. Make sure you are logged in\n+ to your Google profile and go to the SIL\n+ Font News Google Group. Click on Join\n+ group.

  • \n+
  • If you would rather not use a Google profile, you can\n+ subscribe any email address by sending a message to sil-font-news+subscribe@groups.sil.org\n+ and following the instructions you get in the confirmation\n+ message.

  • \n
\n-

Our font announcements are also available through Twitter [@silfonts](https://twitter.com/silfonts).

\n+

Our font announcements are also available through X (formerly\n+ Twitter) @silfonts.

\n

Supporting the project

\n-

This font is provided at no cost, however it is expensive to produce and maintain. Please consider donating to SIL’s font development efforts to support future development. Go to SIL’s Give Direct page and designate your gift for Scripts & Fonts. Thank you!

\n-

About SIL International

\n-

SIL International is a global, faith-based nonprofit that works with local communities around the world to develop language solutions that expand possibilities for a better life.

\n-

We are involved in approximately 1,350 active language projects in 104 countries. These projects impact more than 1.1 billion people within 1,600 local communities. SIL’s work brings together more than 4,300 staff from 89 countries who work alongside thousands more local partners and community volunteers worldwide. Our services are available without regard to religious belief, political ideology, gender, race or ethnic background.

\n-

Our Vision: We long to see people flourishing in community using the languages they value most.

\n-

Our Mission: Inspired by God’s love, we advocate, build capacity, and work with local communities to apply language expertise that advances meaningful development, education, and engagement with Scripture.

\n-

SIL Language Technology supports these activities by developing software, fonts, and keyboard technologies.

\n+

These fonts are provided at no cost; however, they are expensive\n+ to produce and maintain. Please consider donating to SIL’s font\n+ development efforts to support future development. Go to SIL’s Give Direct page.\n+ Thank you!

\n+

About SIL Global

\n+

SIL Global is a global,\n+ faith-based nonprofit that works with local communities around the\n+ world to develop language solutions that expand possibilities for a\n+ better life.

\n+

We are involved in approximately 1,350 active language projects\n+ in 104 countries. These projects impact more than 1.1 billion people\n+ within 1,600 local communities. SIL’s work brings together more than\n+ 4,300 staff from 89 countries who work alongside thousands more\n+ local partners and community volunteers worldwide. Our services are\n+ available without regard to religious belief, political ideology,\n+ gender, race or ethnic background.

\n+

Our Vision: We long to see people flourishing in community using\n+ the languages they value most.

\n+

Our Mission: Inspired by God’s love, we advocate, build capacity,\n+ and work with local communities to apply language expertise that\n+ advances meaningful development, education, and engagement with\n+ Scripture.

\n+

SIL Language Technology\n+ supports these activities by developing software, fonts, and keyboard technologies.

\n \n \n " + }, + { + "sha": "7aecd0b9bf101e72a5ec773eb90d638e3f8f35f6", + "filename": "fonts/sil/abyssinicasil/documentation/announcement.html", + "status": "modified", + "additions": 52, + "deletions": 5, + "changes": 57, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fannouncement.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fannouncement.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fannouncement.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -14,17 +14,64 @@\n
\n

Abyssinica SIL - Announcement

\n
\n-

This is a minor release. Changes for this version include the following:

\n+

This is a minor release. Changes for this version include the\n+ following:

\n+

Improved

\n
    \n-
  • Fixed bug in TypeTuner support for cv46 tswa alternate
  • \n+
  • Adjusted glyph shapes for\n+
      \n+
    • 1214 ETHIOPIC SYLLABLE HHEE
    • \n+
    • 1264 ETHIOPIC SYLLABLE BEE
    • \n+
    • 126C ETHIOPIC SYLLABLE VEE
    • \n+
    • 129C ETHIOPIC SYLLABLE NYEE
    • \n+
    • 12DC ETHIOPIC SYLLABLE ZEE
    • \n+
    • 1334 ETHIOPIC SYLLABLE PHEE
    • \n+
    • 133C ETHIOPIC SYLLABLE TSEE
    • \n+
    • AB14 ETHIOPIC SYLLABLE DZEE
    • \n+
    • AB2C ETHIOPIC SYLLABLE BBEE
    • \n+
    • 1E7E4 ETHIOPIC SYLLABLE HHYEE
    • \n+
    • 1E7EA ETHIOPIC SYLLABLE HHWEE
    • \n+
  • \n+
  • Improve diacritic position to support multiple above\n+ diacritics
  • \n+
\n+

Added

\n+
    \n+
  • Added gzi Ligature
  • \n+
  • 2080 SUBSCRIPT ZERO
  • \n+
  • 2081 SUBSCRIPT ONE
  • \n+
  • 2082 SUBSCRIPT TWO
  • \n+
  • 2083 SUBSCRIPT THREE
  • \n+
  • 2084 SUBSCRIPT FOUR
  • \n+
  • 2085 SUBSCRIPT FIVE
  • \n+
  • 2086 SUBSCRIPT SIX
  • \n+
  • 2087 SUBSCRIPT SEVEN
  • \n+
  • 2088 SUBSCRIPT EIGHT
  • \n+
  • 2089 SUBSCRIPT NINE
  • \n+
  • 2460 CIRCLED DIGIT ONE
  • \n+
  • 2461 CIRCLED DIGIT TWO
  • \n+
  • 2462 CIRCLED DIGIT THREE
  • \n+
  • 2463 CIRCLED DIGIT FOUR
  • \n+
  • 2464 CIRCLED DIGIT FIVE
  • \n+
  • 2465 CIRCLED DIGIT SIX
  • \n+
  • 2466 CIRCLED DIGIT SEVEN
  • \n+
  • 2467 CIRCLED DIGIT EIGHT
  • \n+
  • 2468 CIRCLED DIGIT NINE
  • \n+
\n+

Remove

\n+
    \n+
  • Graphite
  • \n
\n-

Known issues

\n+

Known issues

\n
    \n
  • There are no known issues.
  • \n
\n-

Download the release packages from the Download Page.

\n+

Both desktop and web fonts are provided in a single,\n+ all-platforms package on the Download\n+ page.

\n \n \n " + }, + { + "sha": "504ffd50c76d09f5e83a9edf6e51c162cbe450fb", + "filename": "fonts/sil/abyssinicasil/documentation/assets/css/theme.css", + "status": "modified", + "additions": 5, + "deletions": 5, + "changes": 10, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fassets%2Fcss%2Ftheme.css", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fassets%2Fcss%2Ftheme.css", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fassets%2Fcss%2Ftheme.css?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,8 +1,7 @@\n /*\n-This file is from the Abyssinica SIL project (https://software.sil.org/abyssinica/).\n-Copyright (c) 2000-2023 SIL International (https://www.sil.org/) with Reserved\n-Font Names \"Abyssinica\" and \"SIL\". This Font Software is licensed under the SIL\n-Open Font License, Version 1.1 (https://scripts.sil.org/OFL).\n+This file is from the SIL Fontdocs project (https://github.com/silnrsi/fontdocs).\n+Copyright (c) 2021-2024 SIL Global (https://www.sil.org/). This Font Software is\n+released under the MIT license (https://opensource.org/licenses/MIT).\n */\n html {\n font-family: sans-serif;\n@@ -38,7 +37,7 @@ body {\n font-weight: 400;\n line-height: 1.4;\n color: #000000;\n- text-align: left;\n+ text-align: start;\n background-color: #fff;\n }\n \n@@ -195,6 +194,7 @@ kbd{\n footer {\n margin-top: 2rem;\n margin-bottom: 1rem;\n+ color: #999999;\n }\n \n .affects {" + }, + { + "sha": "b379540d709ecf7047cb72a274c6383d2edf5837", + "filename": "fonts/sil/abyssinicasil/documentation/assets/css/themepdf.css", + "status": "modified", + "additions": 5, + "deletions": 5, + "changes": 10, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fassets%2Fcss%2Fthemepdf.css", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fassets%2Fcss%2Fthemepdf.css", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fassets%2Fcss%2Fthemepdf.css?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,8 +1,7 @@\n /*\n-This file is from the Abyssinica SIL project (https://software.sil.org/abyssinica/).\n-Copyright (c) 2000-2023 SIL International (https://www.sil.org/) with Reserved\n-Font Names \"Abyssinica\" and \"SIL\". This Font Software is licensed under the SIL\n-Open Font License, Version 1.1 (https://scripts.sil.org/OFL).\n+This file is from the SIL Fontdocs project (https://github.com/silnrsi/fontdocs).\n+Copyright (c) 2021-2024 SIL Global (https://www.sil.org/). This Font Software is\n+released under the MIT license (https://opensource.org/licenses/MIT).\n */\n html {\n font-family: sans-serif;\n@@ -39,7 +38,7 @@ body {\n font-weight: 400;\n line-height: 1.4;\n color: #000000;\n- text-align: left;\n+ text-align: start;\n background-color: #fff;\n }\n \n@@ -194,6 +193,7 @@ kbd{\n footer {\n margin-top: 2rem;\n margin-bottom: 1rem;\n+ color: #999999;\n }\n \n .affects {" + }, + { + "sha": "8d5d3d57300218062349567a784e011f0ebdf7c9", + "filename": "fonts/sil/abyssinicasil/documentation/assets/css/webfonts.css", + "status": "modified", + "additions": 2, + "deletions": 2, + "changes": 4, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fassets%2Fcss%2Fwebfonts.css", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fassets%2Fcss%2Fwebfonts.css", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fassets%2Fcss%2Fwebfonts.css?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,8 +1,8 @@\n /*\n This file is from the Abyssinica SIL project (https://software.sil.org/abyssinica/).\n-Copyright (c) 2000-2023 SIL International (https://www.sil.org/) with Reserved\n+Copyright (c) 2000-2024 SIL Global (https://www.sil.org/) with Reserved\n Font Names \"Abyssinica\" and \"SIL\". This Font Software is licensed under the SIL\n-Open Font License, Version 1.1 (https://scripts.sil.org/OFL).\n+Open Font License, Version 1.1 (https://openfontlicense.org/).\n */\n @font-face {\n font-family: AbyssinicaSIL-R;" + }, + { + "sha": "4568a1031f809abf01c728fcb2d0a3362357128c", + "filename": "fonts/sil/abyssinicasil/documentation/assets/css/webfontsttf.css", + "status": "modified", + "additions": 2, + "deletions": 2, + "changes": 4, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fassets%2Fcss%2Fwebfontsttf.css", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fassets%2Fcss%2Fwebfontsttf.css", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fassets%2Fcss%2Fwebfontsttf.css?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,8 +1,8 @@\n /*\n This file is from the Abyssinica SIL project (https://software.sil.org/abyssinica/).\n-Copyright (c) 2000-2023 SIL International (https://www.sil.org/) with Reserved\n+Copyright (c) 2000-2024 SIL Global (https://www.sil.org/) with Reserved\n Font Names \"Abyssinica\" and \"SIL\". This Font Software is licensed under the SIL\n-Open Font License, Version 1.1 (https://scripts.sil.org/OFL).\n+Open Font License, Version 1.1 (https://openfontlicense.org/).\n */\n @font-face {\n font-family: AbyssinicaSIL-R;" + }, + { + "sha": "f6bc4d0ac83bdea5684132e9b384b14a9c4bd178", + "filename": "fonts/sil/abyssinicasil/documentation/charset.html", + "status": "modified", + "additions": 64, + "deletions": 76, + "changes": 140, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fcharset.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fcharset.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fcharset.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -14,7 +14,22 @@\n
\n

Abyssinica SIL - Character Set Support

\n
\n-

This font contains complete coverage of all the characters defined in Unicode for Ethiopic. The Ethiopic script is used for writing many of the languages of Ethiopia and Eritrea. Ethiopic (U+1200..U+137F) was added to Unicode 3.0. Ethiopic Supplement (U+1380..U+139F) and Ethiopic Extended (U+2D80..U+2DDF) were added to Unicode 4.1. Ethiopic Extended-A (U+AB00..U+AB2F) was added to Unicode 6.0. Ethiopic Extended-B U+1E7E0..U+1E7FF) was added to Unicode 14.0. Abyssinica SIL supports all Ethiopic characters which are in Unicode. As far as we are aware, all languages using the Ethiopic script are now fully represented in Unicode.

\n+

This font contains complete coverage of all the characters\n+ defined in Unicode for Ethiopic. The Ethiopic script is used for\n+ writing many of the languages of Ethiopia and Eritrea. Ethiopic\n+ (U+1200..U+137F) was added to Unicode 3.0. Ethiopic\n+ Supplement (U+1380..U+139F) and Ethiopic\n+ Extended (U+2D80..U+2DDF) were added to Unicode 4.1. Ethiopic\n+ Extended-A (U+AB00..U+AB2F) was added to Unicode 6.0. Ethiopic\n+ Extended-B U+1E7E0..U+1E7FF) was added to Unicode 14.0.\n+ Abyssinica SIL supports all Ethiopic characters which are\n+ in Unicode. As far as we are aware, all languages using the Ethiopic\n+ script are now fully represented in Unicode.

\n

Supported characters

\n

The following character ranges are supported by this font:

\n \n@@ -24,110 +39,83 @@

Supported characters

\n \n \n \n- \n- \n+ \n+ \n \n \n \n \n- \n- \n+ \n+ \n \n \n- \n- \n+ \n+ \n \n \n- \n- \n+ \n+ \n \n \n- \n- \n+ \n+ \n \n \n- \n- \n+ \n+ \n \n \n- \n- \n+ \n+ \n \n \n- \n- \n+ \n+ \n \n \n- \n- \n+ \n+ \n \n \n- \n- \n+ \n+ \n \n \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n- \n+ \n+ \n \n \n
Unicode blockAbyssinica SIL supportUnicode blockAbyssinica SIL support
C0 Controls and Basic LatinU+0020..U+007EEthiopic
C1 Controls and Latin-1 SupplementU+00A0..U+00FFEthiopic Supplemental
Latin Extended-AU+0131, U+0152..U+0153, U+0160..U+0161, U+0178, U+017D..U+017EEthiopic Extended
Latin Extended-BU+0192Ethiopic Extended-A
Spacing Modifier LettersU+02C6, U+02C7, U+02D0, U+02D8..U+02DDEthiopic Extended-B
Combining Diacritical MarksU+0300..U+0304, U+0307..U+0308, U+030B..U+030C, U+030F, U+034FPUAE494, E496
GreekU+03C0Combining Diacritical Marks0300..0304, 0307..0308, 030B..030C,\n+ 030F, 034F
EthiopicU+1200..137CSuperscripts and Subscripts2080..2089
Ethiopic SupplementalU+1380..U+1399Enclosed Alphanumerics2460 .. 2468
Ethiopic ExtendedU+2D80..U+2DDE
General PunctuationU+2000..U+2015, U+2018..U+201A, U+201C..U+201E, U+2020..U+2022, U+2026..U+2030, U+2039..U+203B, U+2044, U+2060
Superscripts and SubscriptsU+2070, U+2074..U+2079
Currency SymbolsU+20AC
Letterlike SymbolsU+2122, U+2126
Mathematical OperatorsU+2202, U+2205..U+2206, U+220F, U+2211, U+2219..U+221A, U+221E, U+222B, U+2248, U+2260, U+2264..U+2265
Control PicturesU+2423
Geometric ShapesU+25CA, U+25CC
DingbatsU+2713
Ethiopic Extended-AU+AB00..U+AB2E
PUAU+E494, U+E496
Alphabetic Presentation FormsU+FB01..U+FB02
Ethiopic Extended-BU+1E7E0..U+1E7FFCodepage 1252 (Western)¹
\n-

Private-use (PUA) characters

\n-

Because the majority of the PUA characters have now been encoded into Unicode, or they were considered glyph variants, all PUA characters in the font have been removed with the exception of U+E494 () and U+E496 (). Some of the PUA codepoints were actually glyph variants of characters already encoded in Unicode. These are now available through OpenType Character Variants, Graphite features, or TypeTuned fonts. See Font Features.

\n-

PUA characters that were previously in the font are documented here:

\n-

SIL Ethiopic Private Use Area Block

\n+

A selection of characters from the General Punctuation block,\n+ such as various-sized spaces, are also supported; a utility such as\n+ SIL ViewGlyph\n+ can be used to examine the exact repertoire of this font.

\n+

¹Inclusion of basic Latin repertoire is provided as a\n+ convenience, e.g., for use in menus or for displaying markup in text\n+ files; these fonts are not intended for extensive Latin script\n+ use.

\n+

Private-use (PUA)\n+ characters

\n+

Because the majority of the PUA characters have now been encoded\n+ into Unicode, or they were considered glyph variants, all PUA\n+ characters in the font have been removed with the exception of\n+ U+E494 () and U+E496\n+ (). Some of the PUA\n+ codepoints were actually glyph variants of characters already\n+ encoded in Unicode. These are now available through OpenType\n+ Character Variants or TypeTuned fonts. See Font Features.

\n+

PUA characters that were previously in the font are documented\n+ here:

\n+

SIL\n+ Ethiopic Private Use Area Block

\n \n \n \n " + }, + { + "sha": "47ae6467dffb0be8d47d461eb4cfb551a14abb03", + "filename": "fonts/sil/abyssinicasil/documentation/design.html", + "status": "modified", + "additions": 9, + "deletions": 4, + "changes": 13, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fdesign.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fdesign.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fdesign.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -15,19 +15,24 @@\n

Abyssinica SIL - Design

\n \n

Abyssinica SIL is based on Ethiopic calligraphic traditions.

\n-

One font from this typeface family is included in the Abyssinica SIL release (no bold or italic version available or planned):

\n+

One font from this typeface family is included in the\n+ Abyssinica SIL release (no bold or italic version available\n+ or planned):

\n
    \n
  • Abyssinica SIL Regular
  • \n
\n

Type Samples

\n-

Type samples showing some of the inventory of glyphs can be found here: Abyssinica SIL Type Sample.

\n+

Type samples showing some of the inventory of glyphs can be found\n+ here: Abyssinica SIL Type Sample.

\n

A sample from one page is shown below.

\n- \"Abyssinica \n+ \"Abyssinica\n+ \n
\n Abyssinica SIL Sample - Ethiopic syllables\n
\n \n \n " + }, + { + "sha": "377f379657ad413a25854efd661074f5a2a3db41", + "filename": "fonts/sil/abyssinicasil/documentation/developer.html", + "status": "modified", + "additions": 65, + "deletions": 14, + "changes": 79, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fdeveloper.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fdeveloper.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fdeveloper.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -14,22 +14,73 @@\n
\n

Abyssinica SIL - Developer information

\n
\n-

Abyssinica SIL is a mature product with no major changes anticipated. We will be releasing maintenance updates to fix bugs.

\n+

Abyssinica SIL is a mature product with no major changes\n+ anticipated. We will be releasing maintenance updates to fix\n+ bugs.

\n

Welcome font developers!

\n-

We welcome other developers who wish to get involved in supporting and enhancing this font.

\n-

Abyssinica SIL uses kerning to give a better presentation of characters which might otherwise have too much space between them. If you are a font developer and wish to include kerning in your font, the list of kerning pairs is available here: Ethiopic Kerning Pairs

\n-

Permissions granted by the OFL

\n-

SIL’s fonts are licensed according to the terms of the SIL Open Font License. The OFL allows the fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. For details see the OFL.txt and OFL-FAQ.txt files in the package.

\n-

Building the fonts from source code

\n-

The latest source files are available in a Github project.

\n-

Font sources are in the UFO3 format with font family structures defined using designspace. OpenType source code is stored in the .fea format in the UFO (features.fea) but is maintained in a separate file using the more efficient and powerful .feax format.

\n-

The fonts are built using a completely free and open source workflow using industry-standard tools (fontools), a package of custom python scripts (pysilfont), and a build and packaging system (Smith). The whole system is available in a preconfigured virtual machine using VirtualBox and Vagrant.

\n-

Full instructions for setting up the tools and building SIL fonts are available on a dedicated web site: SIL Font Development Notes.

\n-

Contributing to the project

\n-

We warmly welcome contributions to the fonts, such as new glyphs, enhanced smart font code, or bug fixes. The brief overview of contributing changes is a good place to begin. The next step is to contact us by responding to an existing issue or creating an issue in the Github repository and expressing your interest. We can then work together to plan and integrate your contributions.

\n-

To enable us to accept contributions in a way that honors your contribution and respects your copyright while preserving long-term flexibility for open source licensing, you would also need to agree to the SIL International Contributor License Agreement for Font Software (v1.0) prior to sending us your contribution. To read more about this requirement and find out how to submit the required form, please visit the CLA information page.

\n+

We welcome other developers who wish to get involved in\n+ supporting and enhancing these fonts or who want to modify them.

\n+

Abyssinica SIL uses kerning to give a better presentation of\n+ characters which might otherwise have too much space between them.\n+ If you are a font developer and wish to include kerning in your\n+ font, the list of kerning pairs is available here: Ethiopic\n+ Kerning Pairs

\n+

Permissions granted by the\n+ OFL

\n+

SIL’s fonts are licensed according to the terms of the SIL Open Font License. The\n+ OFL allows the fonts to be used, studied, modified and redistributed\n+ freely as long as they are not sold by themselves. For details see\n+ the OFL.txt and OFL-FAQ.txt files in the package.

\n+

Building the fonts from\n+ source code

\n+

The latest source files are available in a Github\n+ project.

\n+

Font sources are in the UFO3 format\n+ with font family structures defined using designspace.\n+ OpenType source code is stored in the .fea\n+ format in the UFO (features.fea) but is maintained in a separate\n+ file using the more efficient and powerful .feax\n+ format.

\n+

The fonts are built using a completely free and open source\n+ workflow using industry-standard tools (fonttools), a\n+ package of custom python scripts (pysilfont), and a\n+ build and packaging system (Smith). The whole\n+ toolchain is available as a Docker container.

\n+

Full instructions for setting up the tools and building SIL fonts\n+ are available on a dedicated web site: SIL Font Development\n+ Guide.

\n+

Contributing to the\n+ project

\n+

We warmly welcome contributions to the fonts, such as new glyphs,\n+ enhanced smart font code, or bug fixes. The brief\n+ overview of contributing changes is a good place to begin. The\n+ next step is to contact us by responding to an existing issue or\n+ creating an issue in the Github repository and expressing your\n+ interest. We can then work together to plan and integrate your\n+ contributions.

\n+

To enable us to accept contributions in a way that honors your\n+ contribution and respects your copyright while preserving long-term\n+ flexibility for open source licensing, you would also need to agree\n+ to the SIL Global Contributor License Agreement for Font\n+ Software (v1.0) prior to sending us your contribution. To\n+ read more about this requirement and find out how to submit the\n+ required form, please visit the CLA information\n+ page.

\n \n \n " + }, + { + "sha": "35e953a12d538c473ce7f8240f48e689ef5275e9", + "filename": "fonts/sil/abyssinicasil/documentation/faq.html", + "status": "modified", + "additions": 96, + "deletions": 23, + "changes": 119, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Ffaq.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Ffaq.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Ffaq.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -12,45 +12,118 @@\n
\n
\n
\n-

Abyssinica SIL - Frequently Asked Questions

\n+

Abyssinica SIL - Frequently Asked\n+Questions

\n
\n-

Many questions can be answered by consulting the following FAQ pages. Here are a few sample questions answered in each FAQ:

\n+

Many questions can be answered by consulting the following FAQ\n+ pages. Here are a few sample questions answered in each FAQ:

\n
    \n-
  • SIL fonts in general\n+
  • SIL fonts in\n+ general\n
      \n
    • How can I type...?
    • \n
    • How can I use font features?
    • \n
    • Will you add support for character...?
    • \n
    • Will you add support for script...?
    • \n
    • WIll you help me...?
    • \n
  • \n-
  • The SIL Open Font License (OFL-FAQ)\n+
  • The SIL Open Font\n+ License (OFL-FAQ)\n
      \n
    • Can I use this font for...?
    • \n
    • Can I modify the font and then include it in...
    • \n-
    • If I use the font on a web page do I have to include an acknowledgement?
    • \n+
    • If I use the font on a web page do I have to include an\n+ acknowledgement?
    • \n
    • The full OFL-FAQ.txt is also included in the font package.
    • \n
  • \n
\n-

Here are a few of the most frequently asked questions specifically regarding Abyssinica SIL:

\n-

What is so special about Abyssinica SIL?

\n-

This font is designed to work with two advanced font technologies, Graphite and OpenType. To take advantage of the advanced typographic capabilities of this font, you must be using applications that provide an adequate level of support for Graphite or OpenType. These advanced capabilities provide access to the variant character forms used in some languages.

\n-

Do you supply a keyboard to use with Abyssinica SIL?

\n-

No keyboards are supplied with the font. However, there are suggested keyboards listed in Resources.

\n-

My language uses variant forms of some Ethiopic characters. How do I type these using the Abyssinica SIL font? How do I use features?

\n-

You should type the character the same way you would type the standard form of the character. Then, you need to select the variants to be displayed. If your application supports Graphite or the OpenType Character Variant features, you can use these to access the font features built into the font. See Font Features page for more details.

\n-

If your application does not support Graphite features or the OpenType Character Variants, you can use TypeTunerWeb to customize the font with the variants you require. See Font Features page for more details.

\n-

Why did you remove the Stylistic Sets from ver. 2.000 of the Abyssinica SIL font?

\n-

Originally we added the Stylistic Sets because there was not a good solution for accessing the glyph variants in the font. At one point we also tried encoding them in the Private Use Area (PUA). PUA characters have now almost all been unencoded since the characters are now either encoded in Unicode or the variants are available through Character Variants. The Stylistic Sets were implemented inconsistently, and because of that we chose to remove them rather than attempt to fix them. If you still wish to use a font with Stylistic Sets, ver. 1.500 is still available on the Previous Versions page.

\n-

I have a copy of the SIL Abyssinica font. Can you tell me how this differs from Abyssinica SIL?

\n-

It is best to upgrade to Abyssinica SIL. SIL Abyssinica (and SIL Abyssinica U and SIL Abyssinica G) was an early, unreleased version of Abyssinica SIL. Although a Unicode font, it only supported Unicode 3.0 and thus had a number of PUA characters in it which have since been added to Unicode 4.1 and 6.0. You should convert your data to Unicode 6.0 and use Abyssinica SIL. A mapping file to convert your data from PUA to Unicode 6.0 is available here: sil-pua-unicode. If you do not convert your data to official Unicode codepoints you will never be able to use another Ethiopic font because those are Private codepoints and other fonts do not support them.

\n-

You have characters which are encoded in the PUA area. Is there any likelihood that these will ever be in Unicode? If so, will you update Abyssinica SIL?

\n-

Version 1.500 incorporated all characters that are in Unicode 6.0.

\n-

With version 2.000 we removed almost all of the PUA characters in the font because they are either available through their official Unicode codepoints or through the Character Variants.

\n-

I would like to bundle Abyssinica SIL with my application - can I?

\n-

The SIL Open Font License allows bundling with applications, even commercial ones, with some restrictions.

\n+

Here are a few of the most frequently asked questions\n+ specifically regarding Abyssinica SIL:

\n+

What is so\n+ special about Abyssinica SIL?

\n+

This font is designed to work with the OpenType font technology.\n+ To take advantage of the advanced typographic capabilities of this\n+ font, you must be using applications that provide an adequate level\n+ of support for OpenType. The advanced OpenType capabilities provide\n+ access to the variant character forms used in some languages.

\n+

Why did\n+ you remove Graphite from Abyssinica SIL?

\n+

Until version 2.300 this font included the Graphite advanced font\n+ technology. The OpenType features completely support everything that\n+ Graphite supported. Removing Graphite reduces the size of the font\n+ and some of the complexities of building the font.

\n+

Do\n+ you supply a keyboard to use with Abyssinica SIL?

\n+

No keyboards are supplied with the font. However, there are\n+ suggested keyboards listed in Resources.

\n+ My\n+ language uses variant forms of some Ethiopic characters. How do I\n+ type these using the Abyssinica SIL font? How do I use\n+ features?\n+

You should type the character the same way you would type the\n+ standard form of the character. Then, you need to select the\n+ variants to be displayed. If your application supports the OpenType\n+ Character Variant features, you can use these to access the font\n+ features built into the font. See Font\n+ Features page for more details.

\n+

If your application does not support the OpenType Character\n+ Variants, you can use TypeTunerWeb to customize the font with the\n+ variants you require. See Font Features\n+ page for more details.

\n+ Why\n+ did you remove the Stylistic Sets from ver. 2.000 of the Abyssinica\n+ SIL font?\n+

Originally we added the Stylistic Sets because there was not a\n+ good solution for accessing the glyph variants in the font. At one\n+ point we also tried encoding them in the Private Use Area (PUA). PUA\n+ characters have now almost all been unencoded since the characters\n+ are now either encoded in Unicode or the variants are available\n+ through Character Variants. The Stylistic Sets were\n+ implemented inconsistently, and because of that we chose to remove\n+ them rather than attempt to fix them. If you still wish to use a\n+ font with Stylistic Sets, ver. 1.500 is still available on the Previous Versions page.

\n+ I\n+ have a copy of the SIL Abyssinica font. Can you\n+ tell me how this differs from Abyssinica\n+ SIL?\n+

It is best to upgrade to Abyssinica SIL.\n+ SIL Abyssinica, SIL Abyssinica U,\n+ and SIL Abyssinica G were early, unreleased\n+ versions of Abyssinica SIL. Although Unicode fonts,\n+ they only supported Unicode 3.0 and thus had a number of PUA\n+ characters in them which have since been added to Unicode 4.1 and\n+ 6.0. You should convert your data to Unicode and use\n+ Abyssinica SIL. A mapping file to convert your data\n+ from PUA to Unicode 6.0 is available here: sil-pua-unicode.\n+ If you do not convert your data to official Unicode codepoints you\n+ will never be able to use another Ethiopic font because those are\n+ Private codepoints and other fonts do not support\n+ them.

\n+ You\n+ have characters which are encoded in the PUA area. Is there any\n+ likelihood that these will ever be in Unicode? If so, will you\n+ update Abyssinica SIL?\n+

Version 1.500 incorporated all characters that are in Unicode\n+ 6.0.

\n+

With version 2.000 we removed almost all of the PUA characters in\n+ the font because they are either available through their official\n+ Unicode codepoints or through the Character Variants.

\n+ I\n+ would like to bundle Abyssinica SIL with my application - can\n+ I?\n+

The SIL Open Font\n+ License allows bundling with applications, even commercial ones,\n+ with some restrictions.

\n \n
\n
" + }, + { + "sha": "ec2e6a086f1f0ba24c43fc54f12c59bbc4eaf6d8", + "filename": "fonts/sil/abyssinicasil/documentation/features.html", + "status": "modified", + "additions": 354, + "deletions": 73, + "changes": 427, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Ffeatures.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Ffeatures.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Ffeatures.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -14,41 +14,84 @@\n
\n

Abyssinica SIL - Font Features

\n
\n-

Abyssinica SIL is a TrueType font with smart font capabilities added using OpenType and Graphite font technologies. The Ethiopic script does not require much rendering except for some combining marks for gemination and vowel length. However, there are some glyph variations for the Ethiopic script. Some applications let the user control certain features such as Character Variants to turn on the rendering of variant characters. However, at this point, most applications do not make use of those features so another solution is needed to show the variant characters. TypeTuner creates tuned fonts that use the variant glyph in place of the standard glyph. TypeTuner also provides the ability to turn on support for the Sebat Bet Gurage and Gumuz languages variants.

\n-

See Using Font Features. Although that page is not targeted at Ethiopic support, it does provide a comprehensive list of applications that make full use of the OpenType and Graphite font technologies.

\n-

Advanced typographic capabilities

\n-

This font supports various advanced typographic capabilities using the Graphite and OpenType font technologies.

\n+

Abyssinica SIL is a TrueType font with smart font capabilities\n+ added using the OpenType font technology. The Ethiopic script does\n+ not require much rendering except for some combining marks for\n+ gemination and vowel length. However, there are some glyph\n+ variations for the Ethiopic script. Some applications let the user\n+ control certain features such as Character Variants to turn on the\n+ rendering of variant characters. However, at this point, most\n+ applications do not make use of those features so another solution\n+ is needed to show the variant characters. TypeTuner\n+ creates tuned fonts that use the variant glyph in place of the\n+ standard glyph. TypeTuner also provides the ability to turn on\n+ support for the Sebat Bet Gurage and Gumuz languages variants.

\n+

See Using Font\n+ Features. Although that page is not targeted at Ethiopic\n+ support, it does provide a comprehensive list of applications that\n+ make full use of the OpenType font technology.

\n+

Advanced typographic\n+ capabilities

\n+

This font supports various advanced typographic capabilities\n+ using the OpenType font technology.

\n
    \n-
  • Auto placement of diacritics (one level only) on Ethiopic syllables only (not on Latin characters)
  • \n+
  • Auto placement of diacritics on Ethiopic syllables only (not on\n+ Latin characters)
  • \n
  • Kerning of almost 200 pairs of Ethiopic syllables
  • \n-
  • OpenType Character Variants or Graphite features (alternately-designed glyphs are also provided for a number of characters for use in particular contexts)
  • \n-
  • OpenType and Graphite support for the Sebat Bet Gurage [sgw] and Gumuz [guk] languages
  • \n+
  • OpenType Character Variants (alternately-designed glyphs are\n+ also provided for a number of characters for use in particular\n+ contexts)
  • \n+
  • OpenType support for the Sebat Bet Gurage [sgw] and Gumuz [guk]\n+ languages
  • \n
\n-

These capabilities are available in any application that supports the Graphite technology. They are also available via the OpenType technology, though this requires applications that provide a sufficient level of support for OpenType Character Variant features.

\n+

These capabilities are available in any application that supports\n+ OpenType technology, though this requires applications that provide\n+ a sufficient level of support for OpenType Character Variant\n+ features.

\n

A sample of diacritic placement and kerning is shown below:

\n- \"Abyssinica \n+ \"Abyssinica\n+ \n
\n Abyssinica SIL Sample - Diacritic placement and Kerning\n
\n-

This page uses web fonts (WOFF2) to demonstrate font features and should display correctly in all modern browsers. For a more concise example of how to use Abyssinica SIL as a web font see Abyssinica SIL Webfont Example. For detailed information see Using SIL Fonts on Web Pages.

\n-

If this document is not displaying correctly a PDF version is also provided in the documentation/pdf folder of the release package.

\n+

This page uses web fonts (WOFF2) to demonstrate font features and\n+ should display correctly in all modern browsers. For a more concise\n+ example of how to use Abyssinica SIL as a web font see Abyssinica SIL\n+ Webfont Example. For detailed information see Using SIL Fonts on\n+ Web Pages.

\n+

If this document is not displaying correctly a PDF version is\n+ also provided in the documentation/pdf folder of the release\n+ package.

\n

Customizing with TypeTuner

\n-

For applications that do not make use of Graphite or the OpenType Stylistic Sets feature, you can now download fonts customized with the variant glyphs you choose. Read the Font Features page, visit TypeTuner Web, then to choose the variants and download your font.

\n+

For applications that do not make use of the OpenType Character\n+ Variant features, you can now download fonts customized with the\n+ variant glyphs you choose. Read the Font\n+ Features page, visit TypeTuner Web,\n+ then to choose the variants and download your font.

\n

Complete feature list

\n-

There are some Ethiopic character shape differences in different Ethiopian languages. These can be accessed by using Graphite features, OpenType Character Variants, or language support for Sebat Bet Gurage and Gumuz languages. The documents below can be downloaded in order to see all the user-selectable font features that are available in the font. The feature names, feature ids, settings and examples are provided.

\n-

Test rendering engine choice

\n-

Here is a simple test to see if Graphite is working in your browser. If it is, the following will say \"RenderingGraphite\". If your browser does not support Graphite it should say \"RenderingOpentype\". Firefox is currently the only browser that supports Graphite. See the instructions on how to enable Graphite in Firefox.

\n- \n- \n- \n- \n- \n- \n- \n-
CheckRenderingUnknown
\n+

There are some Ethiopic character shape differences in different\n+ Ethiopian languages. These can be accessed by using OpenType\n+ Character Variants or language support for Sebat Bet Gurage and\n+ Gumuz languages. The documents below can be downloaded in order to\n+ see all the user-selectable font features that are available in the\n+ font. The feature names, feature ids, settings and examples are\n+ provided.

\n

Language

\n-

Affects: U+124A, U+124D, U+1298..U+129F, U+12B2, U+12B5, U+12C2, U+12C5, U+1312, U+1313, U+1315, U+1381, U+1385, U+138D

\n+

Affects: U+124A, U+124D, U+1298..U+129F,\n+ U+12B2, U+12B5, U+12C2, U+12C5, U+1312, U+1313, U+1315, U+1381,\n+ U+1385, U+138D

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -59,17 +102,22 @@

Language

\n \n \n \n- \n+ \n \n \n \n \n- \n+ \n \n \n \n \n- \n+ \n \n \n \n@@ -92,18 +140,27 @@

Punctuation

\n \n \n \n- \n+ \n \n \n \n \n- \n+ \n \n \n \n
Language
defaultቊ ቍ ኘ ኙ ኚ ኛ ኜ ኝ ኞ ኟ ኲ ኵ ዂ ዅ ጒ ጓ ጕ ᎁ ᎅ ᎍ ቊ ቍ ኘ ኙ ኚ ኛ ኜ ኝ ኞ ኟ ኲ ኵ ዂ ዅ ጒ\n+ ጓ ጕ ᎁ ᎅ ᎍ
Sebat Bet Gurage (sgw)ቊ ቍ ኘ ኙ ኚ ኛ ኜ ኝ ኞ ኟ ኲ ኵ ዂ ዅ ጒ ጓ ጕ ᎁ ᎅ ᎍ ቊ\n+ ቍ ኘ ኙ ኚ ኛ ኜ ኝ ኞ ኟ ኲ ኵ ዂ ዅ ጒ ጓ ጕ ᎁ ᎅ ᎍ\n+ lang=sgw
Gumuz (guk)ቊ ቍ ኘ ኙ ኚ ኛ ኜ ኝ ኞ ኟ ኲ ኵ ዂ ዅ ጒ ጓ ጕ ᎁ ᎅ ᎍ ቊ\n+ ቍ ኘ ኙ ኚ ኛ ኜ ኝ ኞ ኟ ኲ ኵ ዂ ዅ ጒ ጓ ጕ ᎁ ᎅ ᎍ\n+ lang=guk
Ethiopic-style! $ % * + / 0 1 2 3 4 5 6 7 8 9 = ? ¡ © « ² ³ ¹ » × ‘ ’ “ ” ‹ › ⁰ ⁴ ⁵ ⁶ ⁷ ⁸ ⁹ €! $ % * + / 0 1 2 3 4 5 6 7 8\n+ 9 = ? ¡ © « ² ³ ¹ » × ‘ ’ “ ” ‹ › ⁰ ⁴ ⁵ ⁶ ⁷ ⁸ ⁹ €cv01=0
Latin-style! $ % * + / 0 1 2 3 4 5 6 7 8 9 = ? ¡ © « ² ³ ¹ » × ‘ ’ “ ” ‹ › ⁰ ⁴ ⁵ ⁶ ⁷ ⁸ ⁹ €! $ % * + / 0 1 2\n+ 3 4 5 6 7 8 9 = ? ¡ © « ² ³ ¹ » × ‘ ’ “ ” ‹ › ⁰ ⁴ ⁵ ⁶ ⁷ ⁸ ⁹\n+ €cv01=1
\n

Ethiopic digits

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -119,14 +176,21 @@

Ethiopic digits

\n \n \n \n- \n+ \n \n \n \n
Feature
Connected፩ ፪፫ ፫፬፭ ፺፻፼፻፼፩፼፩፪፩ ፪፫ ፫፬፭\n+ ፺፻፼፻፼፩፼፩፪cv02=1
\n

mwa alternates

\n

Affects: U+121F

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -142,19 +206,26 @@

mwa alternates

\n \n \n \n- \n+ \n \n \n \n \n- \n+ \n \n \n \n
Feature
Alternate-1ሟ¹ሟ¹cv04=1
Alternate-2ሟ²ሟ²cv04=2
\n

rwa alternate

\n

Affects: U+122F

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -170,14 +241,20 @@

rwa alternate

\n \n \n \n- \n+ \n \n \n \n
Feature
Alternateሯ²ሯ²cv05=1
\n

xoa alternate

\n

Affects: U+1287

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -193,14 +270,20 @@

xoa alternate

\n \n \n \n- \n+ \n \n \n \n
Feature
Alternatecv17=1
\n

xwa alternates

\n

Affects: U+1288..U+128D

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -216,14 +299,21 @@

xwa alternates

\n \n \n \n- \n+ \n \n \n \n
Feature
Handwritingኈ ኊ ኋ ኌ ኍኈ ኊ ኋ ኌ\n+ ኍcv18=1
\n

nwa alternate

\n

Affects: U+1297

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -239,14 +329,20 @@

nwa alternate

\n \n \n \n- \n+ \n \n \n \n
Feature
Alternateኗ¹ኗ¹cv19=1
\n

nya alternates

\n

Affects: U+1298..U+129E

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -262,14 +358,21 @@

nya alternates

\n \n \n \n- \n+ \n \n \n \n
Feature
Disconnectedኘ ኙ ኚ ኛ ኜ ኝ ኞ³ኘ ኙ ኚ ኛ ኜ ኝ\n+ ኞ³cv20=1
\n

nywa alternates

\n

Affects: U+129F

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -285,19 +388,26 @@

nywa alternates

\n \n \n \n- \n+ \n \n \n \n \n- \n+ \n \n \n \n
Feature
Disconnectedኟ³ኟ³cv21=1
Cohenኟ²ኟ²cv21=2
\n

kxwaa alternate

\n

Affects: U+12C3

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -313,14 +423,20 @@

kxwaa alternate

\n \n \n \n- \n+ \n \n \n \n
Feature
Alternateዃ²ዃ²cv26=1
\n

zha alternates

\n

Affects: U+12E0..U+12E6

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -336,19 +452,28 @@

zha alternates

\n \n \n \n- \n+ \n \n \n \n \n- \n+ \n \n \n \n
Feature
Cohenዠ ዡ ዢ ዣ ዤ ዦ⁴ዠ ዡ ዢ ዣ ዤ\n+ ዦ⁴cv31=1
Chaineዠ ዡዣ ዤ ዥ ዦዠ\n+ ዡዣ ዤ ዥ ዦcv31=2
\n

dda alternates

\n

Affects: U+12F8..U+12FE

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -364,14 +489,21 @@

dda alternates

\n \n \n \n- \n+ \n \n \n \n
Feature
Alternateዸ ዹ ዺ ዻ ዼ ዽ ዾ⁶ዸ ዹ ዺ ዻ ዼ ዽ\n+ ዾ⁶cv32=1
\n

gwaa alternates

\n

Affects: U+1313

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -387,19 +519,26 @@

gwaa alternates

\n \n \n \n- \n+ \n \n \n \n \n- \n+ \n \n \n \n
Feature
Sebat Betጓ⁷ጓ⁷cv40=1
Alone Stokesጓ⁸ጓ⁸cv40=2
\n

gga alternates

\n

Affects: U+1318..U+131E

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -415,14 +554,21 @@

gga alternates

\n \n \n \n- \n+ \n \n \n \n
Feature
Disconnectedጘ ጙ ጚ ጛ ጜ ጝ ጞ⁹ጘ ጙ ጚ ጛ ጜ ጝ\n+ ጞ⁹cv41=1
\n

ggwaa alternate

\n

Affects: U+131F

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -438,14 +584,20 @@

ggwaa alternate

\n \n \n \n- \n+ \n \n \n \n
Feature
Disconnectedጟ⁹ጟ⁹cv42=1
\n

phe alternate

\n

Affects: U+1335

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -461,14 +613,20 @@

phe alternate

\n \n \n \n- \n+ \n \n \n \n
Feature
Alternateጵ¹⁰ጵ¹⁰cv45=1
\n

tswa alternate

\n

Affects: U+133F

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -484,14 +642,20 @@

tswa alternate

\n \n \n \n- \n+ \n \n \n \n
Feature
Alternatecv46=1
\n

fwa alternates

\n

Affects: U+134F

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -507,19 +671,26 @@

fwa alternates

\n \n \n \n- \n+ \n \n \n \n \n- \n+ \n \n \n \n
Feature
Cohen-1ፏ¹ፏ¹cv48=1
Cohen-2ፏ¹ፏ¹cv48=2
\n

rya alternate

\n

Affects: U+1358

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -535,14 +706,20 @@

rya alternate

\n \n \n \n- \n+ \n \n \n \n
Feature
Alternateፘ²ፘ²cv49=1
\n

mya alternate

\n

Affects: U+1359

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -558,14 +735,20 @@

mya alternate

\n \n \n \n- \n+ \n \n \n \n
Feature
Alternateፙ²ፙ²cv50=1
\n

mwi alternates

\n

Affects: U+1381

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -581,19 +764,26 @@

mwi alternates

\n \n \n \n- \n+ \n \n \n \n \n- \n+ \n \n \n \n
Feature
Sebat Betᎁ⁷ᎁ⁷cv60=1
Leslauᎁ¹¹ᎁ¹¹cv60=2
\n

mwe alternates

\n

Affects: U+1383

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -609,19 +799,26 @@

mwe alternates

\n \n \n \n- \n+ \n \n \n \n \n- \n+ \n \n \n \n
Feature
Sebat Betᎃ⁷ᎃ⁷cv61=1
Leslauᎃ¹¹ᎃ¹¹cv61=2
\n

bwe alternate

\n

Affects: U+1387

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -637,14 +834,20 @@

bwe alternate

\n \n \n \n- \n+ \n \n \n \n
Feature
Alternateᎇ¹¹ᎇ¹¹cv62=1
\n

fwee alternate

\n

Affects: U+138A

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -660,14 +863,20 @@

fwee alternate

\n \n \n \n- \n+ \n \n \n \n
Feature
Alternateᎊ¹¹ᎊ¹¹cv63=1
\n

fwe alternate

\n

Affects: U+138B

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -683,14 +892,20 @@

fwe alternate

\n \n \n \n- \n+ \n \n \n \n
Feature
Alternateᎋ¹¹ᎋ¹¹cv64=1
\n

pwe alternate

\n

Affects: U+138F

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -706,14 +921,20 @@

pwe alternate

\n \n \n \n- \n+ \n \n \n \n
Feature
Alternateᎏ¹¹ᎏ¹¹cv65=1
\n

ggwa alternates

\n

Affects: U+2D93..U+2D96

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -729,14 +950,22 @@

ggwa alternates

\n \n \n \n- \n+ \n \n \n \n
Feature
Disconnectedⶓ ⶔ ⶕ ⶖ⁹ⶓ ⶔ ⶕ\n+ ⶖ⁹cv70=1
\n

3rd form alternates

\n-

Affects: U+124A U+12B2 U+12C2 U+1312 U+1385 U+138D

\n+

Affects: U+124A U+12B2 U+12C2 U+1312 U+1385\n+ U+138D

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -752,14 +981,22 @@

3rd form alternates

\n \n \n \n- \n+ \n \n \n \n
Feature
Alternateቊ ኲ ዂ ጒ ᎅ ᎍ⁷ቊ ኲ ዂ ጒ ᎅ\n+ ᎍ⁷cv80=1
\n

6th form alternates

\n-

Affects: U+124D U+12B5 U+12C5 U+1315

\n+

Affects: U+124D U+12B5 U+12C5\n+ U+1315

\n \n+ \n+ \n+ \n+ \n+ \n \n \n \n@@ -775,23 +1012,67 @@

6th form alternates

\n \n \n \n- \n+ \n \n \n \n
Feature
Alternateቍ ኵ ዅ ጕ⁷ቍ ኵ ዅ\n+ ጕ⁷cv85=1
\n+

Ligatures

\n+

gzi ligature

\n+

Affects: U+130D U+200D U+12DA

\n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+
FeatureSampleFeature setting
No JoinerግዚU+130D U+12DA
Using ZWJግ‍ዚU+130D U+200D U+12DA
\n

References

\n-

Alone, John Philip Herbert Mackenzie. 1946 (Fourth edition). The Alone-Stokes Short Manual of the Amharic Language (with vocabularies). Macmillan and Co. Limited: London.

\n-

Chaîne, Marius. 1907. Grammaire éthiopienne. Imprimerie catholique. Beyrouth.

\n-

Cohen, Marcel. 1970 Seconde edition. Traité de langue amharique (Abyssinie). Institut d'ethnologie: Paris.

\n-

Leslau, Wolf. 1966. Ethiopians Speak: Studies in Cultural Background. Part 2: Chaha. University of California Publication. Near Eastern Studies, Volume 9. University of California Press: Berkeley

\n-

Praetorius, Franz. 1955. Aethiopische Grammatik mit Paradigmen, Litteratur, Chrestomathie und Glossar. Frederick Ungar Publishing Co. New York.

\n-

¹Chaîne (p 3), Cohen (table 2) ²Cohen (table 2) ³Gumuz language preference ⁴Alone-Stokes, Chaîne (p 3), Cohen (table 1) ⁵Chaîne (p 3) ⁶Archaic Oromo language preference ⁷Sebat Bet language preference ⁸Alone-Stokes (inside back cover) ⁹Bilen language preference ¹⁰Praetorius (p 6) ¹¹Leslau

\n+

Alone, John Philip Herbert Mackenzie. 1946 (Fourth edition).\n+ The Alone-Stokes Short Manual of the Amharic Language (with\n+ vocabularies). Macmillan and Co. Limited: London.

\n+

Chaîne, Marius. 1907. Grammaire éthiopienne. Imprimerie\n+ catholique. Beyrouth.

\n+

Cohen, Marcel. 1970 Seconde edition. Traité de langue\n+ amharique (Abyssinie). Institut d'ethnologie: Paris.

\n+

Leslau, Wolf. 1966. Ethiopians Speak: Studies in Cultural\n+ Background. Part 2: Chaha. University of California\n+ Publication. Near Eastern Studies, Volume 9. University of\n+ California Press: Berkeley

\n+

Praetorius, Franz. 1955. Aethiopische Grammatik mit\n+ Paradigmen, Litteratur, Chrestomathie und Glossar. Frederick\n+ Ungar Publishing Co. New York.

\n+

¹Chaîne (p 3), Cohen (table 2) ²Cohen (table 2) ³Gumuz language\n+ preference ⁴Alone-Stokes, Chaîne (p 3), Cohen (table 1) ⁵Chaîne (p\n+ 3) ⁶Archaic Oromo language preference ⁷Sebat Bet language preference\n+ ⁸Alone-Stokes (inside back cover) ⁹Bilen language preference\n+ ¹⁰Praetorius (p 6) ¹¹Leslau

\n \n \n \n " + }, + { + "sha": "54a854cd0f360b8be8b76f11a432a8ccdd4efac8", + "filename": "fonts/sil/abyssinicasil/documentation/history.html", + "status": "modified", + "additions": 91, + "deletions": 21, + "changes": 112, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fhistory.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fhistory.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fhistory.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -14,45 +14,114 @@\n
\n

Abyssinica SIL - Version History

\n
\n-

23 June 2023 (WSTech Team) Abyssinica SIL version 2.201

\n+

29 Oct\n+ 2024 (WSTech Team) Abyssinica SIL version 2.300

\n+

Improved

\n+
    \n+
  • Adjusted glyph shapes for\n+
      \n+
    • 1214 ETHIOPIC SYLLABLE HHEE
    • \n+
    • 1264 ETHIOPIC SYLLABLE BEE
    • \n+
    • 126C ETHIOPIC SYLLABLE VEE
    • \n+
    • 129C ETHIOPIC SYLLABLE NYEE
    • \n+
    • 12DC ETHIOPIC SYLLABLE ZEE
    • \n+
    • 1334 ETHIOPIC SYLLABLE PHEE
    • \n+
    • 133C ETHIOPIC SYLLABLE TSEE
    • \n+
    • AB14 ETHIOPIC SYLLABLE DZEE
    • \n+
    • AB2C ETHIOPIC SYLLABLE BBEE
    • \n+
    • 1E7E4 ETHIOPIC SYLLABLE HHYEE
    • \n+
    • 1E7EA ETHIOPIC SYLLABLE HHWEE
    • \n+
  • \n+
  • Improve diacritic position to support multiple above\n+ diacritics
  • \n+
\n+

Added

\n+
    \n+
  • Added gzi Ligature
  • \n+
  • 2080 SUBSCRIPT ZERO
  • \n+
  • 2081 SUBSCRIPT ONE
  • \n+
  • 2082 SUBSCRIPT TWO
  • \n+
  • 2083 SUBSCRIPT THREE
  • \n+
  • 2084 SUBSCRIPT FOUR
  • \n+
  • 2085 SUBSCRIPT FIVE
  • \n+
  • 2086 SUBSCRIPT SIX
  • \n+
  • 2087 SUBSCRIPT SEVEN
  • \n+
  • 2088 SUBSCRIPT EIGHT
  • \n+
  • 2089 SUBSCRIPT NINE
  • \n+
  • 2460 CIRCLED DIGIT ONE
  • \n+
  • 2461 CIRCLED DIGIT TWO
  • \n+
  • 2462 CIRCLED DIGIT THREE
  • \n+
  • 2463 CIRCLED DIGIT FOUR
  • \n+
  • 2464 CIRCLED DIGIT FIVE
  • \n+
  • 2465 CIRCLED DIGIT SIX
  • \n+
  • 2466 CIRCLED DIGIT SEVEN
  • \n+
  • 2467 CIRCLED DIGIT EIGHT
  • \n+
  • 2468 CIRCLED DIGIT NINE
  • \n+
\n+

Remove

\n+
    \n+
  • Graphite
  • \n+
\n+

23 June\n+ 2023 (WSTech Team) Abyssinica SIL version 2.201

\n
    \n
  • Fixed bug in TypeTuner support for cv46 tswa alternate
  • \n
\n-

16 November 2022 (WSTech Team) Abyssinica SIL version 2.200

\n+

16\n+ November 2022 (WSTech Team) Abyssinica SIL version 2.200

\n
    \n-
  • Adjusted width of U+2008 PUNCTUATION SPACE to match full stop
  • \n+
  • Adjusted width of U+2008 PUNCTUATION SPACE to match full\n+ stop
  • \n
  • Adjusted design of U+1395 ETHIOPIC TONAL MARK KENAT
  • \n-
  • Fixed inconsistency between Graphite and OpenType support for cv46 tswa alternate
  • \n+
  • Fixed inconsistency between Graphite and OpenType support for\n+ cv46 tswa alternate
  • \n
\n-

9 June 2021 (WSTech Team) Abyssinica SIL version 2.100

\n+

9 June\n+ 2021 (WSTech Team) Abyssinica SIL version 2.100

\n
    \n-
  • Added U+1E7E0..U+1E7E6, U+1E7E8..U+1E7EB, U+1E7ED..U+1E7EE, U+1E7F0..U+1E7FE
  • \n-
  • Modified a few kerning pairs and added kerning pairs for some of the new characters
  • \n-
  • Changed Latin digits (for use in Ethiopic) to use a serif style
  • \n+
  • Added U+1E7E0..U+1E7E6, U+1E7E8..U+1E7EB, U+1E7ED..U+1E7EE,\n+ U+1E7F0..U+1E7FE
  • \n+
  • Modified a few kerning pairs and added kerning pairs for some of\n+ the new characters
  • \n+
  • Changed Latin digits (for use in Ethiopic) to use a serif\n+ style
  • \n
  • Modified Ethiopic digits to have a more consistent size
  • \n-
  • Added cv02 to support digits with connecting above and below lines
  • \n+
  • Added cv02 to support digits with connecting above and below\n+ lines
  • \n
\n-

11 September 2019 (Sharon Correll) Abyssinica SIL version 2.000

\n+ 11\n+ September 2019 (Sharon Correll) Abyssinica SIL version 2.000\n
    \n
  • Added U+02D0, U+034F, U+2423, U+25CA
  • \n
  • Improved design of U+1256 so the top flag touches
  • \n-
  • Improved design of U+1368 to fit the design of the font better
  • \n+
  • Improved design of U+1368 to fit the design of the font\n+ better
  • \n
  • Improved design of U+1362 (extra space to the right)
  • \n-
  • Added language support for Sebat Bet Gurage and Gumuz variants
  • \n+
  • Added language support for Sebat Bet Gurage and Gumuz\n+ variants
  • \n
  • Added UI name strings for Graphite and OpenType features
  • \n
  • Removed Stylistic Sets
  • \n-
  • Slight change to line spacing to make it consistent across applications
  • \n-
  • Unencoded most PUA characters as they are supported through Character Variants
  • \n+
  • Slight change to line spacing to make it consistent across\n+ applications
  • \n+
  • Unencoded most PUA characters as they are supported through\n+ Character Variants
  • \n
\n-

13 December 2013 (Lorna Priest Evans) Abyssinica SIL version 1.500

\n+ 13\n+ December 2013 (Lorna Priest Evans) Abyssinica SIL version 1.500\n
    \n-
  • Improved design of U+1396 and U+1399 (metrics changed for these characters)
  • \n+
  • Improved design of U+1396 and U+1399 (metrics changed for these\n+ characters)
  • \n
  • Added character variants
  • \n
  • Added variant glyphs for U+2D93..U+2D96 (for Blin)
  • \n-
  • Added variant glyphs for U+12E0..U+12E6 and U+1335 (historical usage)
  • \n-
  • Changed Graphite feature identifiers from integers to 4-character alphanumeric tags
  • \n+
  • Added variant glyphs for U+12E0..U+12E6 and U+1335 (historical\n+ usage)
  • \n+
  • Changed Graphite feature identifiers from integers to\n+ 4-character alphanumeric tags
  • \n
\n-

13 December 2010 (Lorna Priest) Abyssinica SIL version 1.200

\n+

13\n+ December 2010 (Lorna Priest) Abyssinica SIL version 1.200

\n
    \n
  • Updated for Unicode 6.0 (U+AB00..U+AB2F)
  • \n
  • Added Stylistic Sets and Graphite Features
  • \n@@ -62,12 +131,13 @@

    1 June 2006 (Jonathan Kew)

    \n
      \n
    • AAT source added
    • \n
    \n-

    25 May 2006 (SIL NRSI team) Abyssinica SIL version 1.0

    \n+

    25 May\n+ 2006 (SIL NRSI team) Abyssinica SIL version 1.0

    \n
      \n
    • First version released under the SIL Open Font License
    • \n
    \n \n \n " + }, + { + "sha": "091c824fe33af9b147f202d7f023d970e8dc7aae", + "filename": "fonts/sil/abyssinicasil/documentation/index.html", + "status": "modified", + "additions": 35, + "deletions": 14, + "changes": 49, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Findex.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Findex.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Findex.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -14,24 +14,45 @@\n
    \n

    Abyssinica SIL - Documentation

    \n
    \n-

    Thank you for your interest in the Abyssinica SIL font. This font supports the broad variety of writing systems that use the Ethiopic script.

    \n-

    This documentation is a set of HTML pages that can be viewed in any modern web browser. PDF versions of these pages are also provided. This content, plus download links and a contact form, are available from the Abyssinica SIL site.

    \n+

    Thank you for your interest in the Abyssinica SIL font. This font\n+ supports the broad variety of writing systems that use the Ethiopic\n+ script.

    \n+

    This documentation is a set of HTML pages that can be viewed in\n+ any modern web browser. PDF versions of these pages are also\n+ provided. This content, plus download links and a contact form, are\n+ available from the Abyssinica SIL\n+ site.

    \n
      \n-
    • About — Information about this project and SIL International
    • \n-
    • Resources — Help with installation and use
    • \n+
    • About — Information about this project\n+ and SIL Global
    • \n+
    • Resources — Help with installation\n+ and use
    • \n
    • FAQ — Common questions and answers
    • \n-
    • Design — History and background of the design
    • \n-
    • Character set support — Details of Unicode characters that are supported
    • \n-
    • Type Sample — Type sample demonstrating all the characters in this font
    • \n-
    • Font features — Using smart font features
    • \n-
    • Support — How to get additional support
    • \n-
    • Developer information — How to modify and build the fonts
    • \n-
    • Versions - Sources for alternate versions
    • \n-
    • Version history - Complete version history
    • \n+
    • Design — History and background of the\n+ design
    • \n+
    • Character set support — Details of\n+ Unicode characters that are supported
    • \n+
    • Type Sample — Type sample\n+ demonstrating all the characters in this font
    • \n+
    • Font features — Using smart font\n+ features
    • \n+
    • Support — How to get additional\n+ support
    • \n+
    • Developer information — How to\n+ modify and build the fonts
    • \n+
    • Versions - Sources for alternate\n+ versions
    • \n+
    • Version history - Complete version\n+ history
    • \n
    \n-

    Additional information is also provided in other project files: README.txt, OFL.txt, OFL-FAQ.txt, and FONTLOG.txt.

    \n+

    Additional information is also provided in other project files:\n+ README.txt, OFL.txt, OFL-FAQ.txt, and FONTLOG.txt.

    \n \n \n " + }, + { + "sha": "2741114b72f67d329f1dc4f5c2b7f74da59d245a", + "filename": "fonts/sil/abyssinicasil/documentation/pdf/about.pdf", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fabout.pdf", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fabout.pdf", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fabout.pdf?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "51ce1566e8cf92eb3da6c654d382419b81550d1c", + "filename": "fonts/sil/abyssinicasil/documentation/pdf/announcement.pdf", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fannouncement.pdf", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fannouncement.pdf", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fannouncement.pdf?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "1a49a53ba19851bfb9021330b0677efd0e6d566e", + "filename": "fonts/sil/abyssinicasil/documentation/pdf/charset.pdf", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fcharset.pdf", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fcharset.pdf", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fcharset.pdf?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "5b7e15a0935c62faa3c024f7ccc24b31d719b2f6", + "filename": "fonts/sil/abyssinicasil/documentation/pdf/design.pdf", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fdesign.pdf", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fdesign.pdf", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fdesign.pdf?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "8b7be5a574c00ff6037553ab4aa0b87e867a2ee4", + "filename": "fonts/sil/abyssinicasil/documentation/pdf/developer.pdf", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fdeveloper.pdf", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fdeveloper.pdf", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fdeveloper.pdf?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "87dcc5a814c297fdec50eb74ce5769a05ba30438", + "filename": "fonts/sil/abyssinicasil/documentation/pdf/faq.pdf", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Ffaq.pdf", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Ffaq.pdf", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Ffaq.pdf?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "bfcf598f531c7cd42d944f52a5e1c7b34afe18fb", + "filename": "fonts/sil/abyssinicasil/documentation/pdf/features.pdf", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Ffeatures.pdf", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Ffeatures.pdf", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Ffeatures.pdf?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "87b692c5a04d19f2cf3a188588c0ba7195577b3c", + "filename": "fonts/sil/abyssinicasil/documentation/pdf/history.pdf", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fhistory.pdf", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fhistory.pdf", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fhistory.pdf?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "3cae8bbf0398d645b6e55f6e309315dbdb277e33", + "filename": "fonts/sil/abyssinicasil/documentation/pdf/index.pdf", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Findex.pdf", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Findex.pdf", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Findex.pdf?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "e9ce38e33902f1e2a53510d6e700da8d86bd0dbb", + "filename": "fonts/sil/abyssinicasil/documentation/pdf/resources.pdf", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fresources.pdf", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fresources.pdf", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fresources.pdf?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "68ee27a130782899258cecb94a0f59e5a7a8942a", + "filename": "fonts/sil/abyssinicasil/documentation/pdf/sample.pdf", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fsample.pdf", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fsample.pdf", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fsample.pdf?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "e527df62ce78093afd15779b63645453507adcf2", + "filename": "fonts/sil/abyssinicasil/documentation/pdf/support.pdf", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fsupport.pdf", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fsupport.pdf", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fsupport.pdf?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "936fb317c99ecc5e0531d1a8a74d5ff2953f2ca9", + "filename": "fonts/sil/abyssinicasil/documentation/pdf/versions.pdf", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fversions.pdf", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fversions.pdf", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fpdf%2Fversions.pdf?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "0ce694b2b64dfd6bb7d3d17eeab0daa04779106d", + "filename": "fonts/sil/abyssinicasil/documentation/resources.html", + "status": "modified", + "additions": 120, + "deletions": 36, + "changes": 156, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fresources.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fresources.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fresources.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -15,48 +15,132 @@\n

    Abyssinica SIL - Resources

    \n \n

    Requirements

    \n-

    This font is supported by all major operating systems (macOS, Windows, Linux-based, iOS, and Android), however the extent of that support depends on the individual OS and application.

    \n+

    This font is supported by all major operating systems (macOS,\n+ Windows, Linux-based, iOS, and Android), however the extent of that\n+ support depends on the individual OS and application.

    \n

    Installation

    \n-

    Install the font by decompressing the .zip archive and installing the font using the standard font installation process for .ttf (TrueType/OpenType) fonts for your platform. For additional tips see the help page on Font installation.

    \n-

    Keyboarding and character set support

    \n-

    This font does not include keyboards or other software for entering text. To type the symbols in this font use the keyboarding systems provided in your OS or use a separate utility. SIL’s Keyman is a cross-platform keyboarding system and a number of Ethiopic keyboards are available:

    \n+

    Install the fonts by decompressing the .zip archive and\n+ installing the fonts using the standard font installation process\n+ for .ttf (TrueType/OpenType) fonts for your platform. For additional\n+ tips see the help page on Font\n+ installation.

    \n+

    Keyboarding and\n+ character set support

    \n+

    This font does not include keyboards or other software for\n+ entering text. To type the symbols in this font use the keyboarding\n+ systems provided in your OS or use a separate utility. SIL’s Keyman is a cross-platform\n+ keyboarding system and a number of Ethiopic keyboards are\n+ available:

    \n \n-

    Various other means may be available for different operating-system platforms to create additional input methods. For instance, Windows (Vista and above) provides an Ethiopic IME.

    \n-

    For information on other keyboarding options see the overview at Keyboard Systems Overview (ScriptSource).

    \n-

    See Character set support for details of the Unicode characters supported by this font.

    \n-

    Rendering and application support

    \n-

    This font will work normally like any other font in most applications. If the writing system requires special diacritic positioning the application/OS will need to support OpenType.

    \n-

    Abyssinica SIL is designed to work with two advanced font technologies, Graphite and OpenType. To take advantage of the advanced typographic capabilities of this font, you must be using applications that provide an adequate level of support for Graphite or OpenType.

    \n-

    Other suggestions are listed here: Using Font Features.

    \n+

    Various other means may be available for different\n+ operating-system platforms to create additional input methods. For\n+ instance, Windows (Vista and above) provides an Ethiopic IME.

    \n+

    For information on other keyboarding options see the overview at\n+ Keyboard Systems\n+ Overview (ScriptSource).

    \n+

    See Character set support for details\n+ of the Unicode characters supported by this font.

    \n+

    Rendering and application\n+ support

    \n+

    This font will work normally like any other font in most\n+ applications. If the writing system requires special diacritic\n+ positioning the application/OS will need to support OpenType.

    \n+

    If special font features are to be activated the application will\n+ need to provide a way to turn on the feature or choose the feature\n+ setting. Details of current application support, and specific\n+ techniques for activating features, are on the Using Font\n+ Features help page.

    \n+

    Although this current font supports only OpenType, previous\n+ versions provided support for the Graphite technology. Graphite was\n+ supported through version 2.2. These older versions remain available\n+ from our Previous\n+ Versions archive.

    \n

    Web fonts

    \n-

    Web font versions of this font (in WOFF and WOFF2 formats) are available in the web folder. These can be copied to a web server and used as fonts on web pages. A very basic HTML/CSS demo page is also included. For more information on the options and techniques available for using these fonts on web pages see Using SIL Fonts on Web Pages.

    \n+

    Web font versions of these fonts (in WOFF and WOFF2 formats) are\n+ available in the web folder. These can be copied to a\n+ web server and used as fonts on web pages. A very basic HTML/CSS\n+ demo page is also included. For more information on the options and\n+ techniques available for using these fonts on web pages see Using SIL Fonts on\n+ Web Pages.

    \n

    Text conversion

    \n-

    This font is encoded according to The Unicode Standard. If you have text that uses a legacy, non-Unicode encoding there are tools that can help you convert that text for use with Unicode fonts. See Introduction to Text Conversion and Transliteration.

    \n-

    In order to use this font with existing data that was created for use with fonts developed using custom-encoded fonts, it is necessary to re-type or convert data to produce data that is encoded in conformance with the Unicode Standard. SIL Converters and/or TECkit can be used for character encoding conversion. TECkit allows users to write their own custom conversion mappings.

    \n-

    Three TECkit mapping files (compiled and uncompiled) are available as a separate download SIL-Ethiopia (Latin to Fidel) Unicode mapping. They are intended for use where text has been input “phonetically” as a syllable (\"be\", \"ppii\", etc.) and conversion to fidel is desired (U+1264 ቤ, U+1352 ፒ, etc.).

    \n-

    If you used an earlier version of the Abyssinica SIL font, and used some of the Private Use Area (PUA) codepoints in your data, you may wish to use the PUA to Unicode mapping file to convert your data from PUA codepoints to Unicode 6.0.

    \n-

    The TECkit package is available for download from SIL’s TECkit Web site.

    \n-

    The SIL Converters package is available for download from SIL’s SIL Converters Web site.

    \n-

    Docx Converter for Legacy Ethiopic Font Encoding Systems -- This tool is available (non-SIL) to assist in migrating Microsoft Word documents in pre-Unicode Ethiopic fonts into a Unicode font supporting Ethiopic script.

    \n+

    This font is encoded according to The Unicode Standard. If you\n+ have text that uses a legacy, non-Unicode encoding there are tools\n+ that can help you convert that text for use with Unicode fonts. See\n+ Introduction to\n+ Text Conversion and Transliteration.

    \n+

    In order to use this font with existing data that was created for\n+ use with fonts developed using custom-encoded fonts, it is necessary\n+ to re-type or convert data to produce data that is encoded in\n+ conformance with the Unicode Standard. SIL Converters\n+ and/or TECkit can be\n+ used for character encoding conversion. TECkit allows users to write\n+ their own custom conversion mappings.

    \n+

    Three TECkit\n+ mapping files (compiled and uncompiled) are available as a separate\n+ download SIL-Ethiopia\n+ (Latin to Fidel) Unicode mapping. They are intended for use\n+ where text has been input “phonetically” as a syllable (\"be\",\n+ \"ppii\", etc.) and conversion to fidel is desired (U+1264 ቤ, U+1352\n+ ፒ, etc.).

    \n+

    If you used an earlier version of the Abyssinica\n+ SIL font, and used some of the Private Use Area (PUA)\n+ codepoints in your data, you may wish to use the PUA\n+ to Unicode mapping file to convert your data from PUA codepoints\n+ to Unicode 6.0.

    \n+

    The TECkit package is available for download from SIL’s TECkit Web site.

    \n+

    The SIL Converters package is available for download from SIL’s\n+ SIL Converters\n+ Web site.

    \n+

    Docx Converter\n+ for Legacy Ethiopic Font Encoding Systems -- This tool is\n+ available (non-SIL) to assist in migrating Microsoft Word documents\n+ in pre-Unicode Ethiopic fonts into a Unicode font supporting\n+ Ethiopic script.

    \n \n \n " + }, + { + "sha": "5f538244b7f493ddeee19a569ac8a60eaf03d840", + "filename": "fonts/sil/abyssinicasil/documentation/sample.html", + "status": "modified", + "additions": 49, + "deletions": 19, + "changes": 68, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsample.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsample.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsample.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -14,34 +14,58 @@\n
    \n

    Abyssinica SIL - Type Sample

    \n
    \n-

    This document demonstrates all of the characters in the font. It is organized by Unicode block. Alternate glyphs that are available through features are demonstrated in the Features document. At the end is a sample demonstrating an example of running text.

    \n+

    This document demonstrates all of the characters in the font. It\n+ is organized by Unicode block. Alternate glyphs that are available\n+ through features are demonstrated in the Features document. At the end is a sample\n+ demonstrating an example of running text.

    \n

    Basic Latin:

    \n-

    !\"#$%&'()*+,./0123456789:;=>?@ ABCDEFGHIJKLMNOPQRSTUVWWYZ[]^` abcdefghijklmnopqrstuvwxyz{|}~

    \n+

    !\"#$%&'()*+,./0123456789:;=>?@\n+ ABCDEFGHIJKLMNOPQRSTUVWWYZ[]^`\n+ abcdefghijklmnopqrstuvwxyz{|}~

    \n

    Latin-1 Supplement:

    \n-

    ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞß àáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ

    \n+

    ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿\n+ ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞß\n+ àáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ

    \n

    Latin Extended-A:

    \n

    ıŒœŠšŸŽž

    \n

    Latin Extended-B:

    \n

    ƒ

    \n

    Spacing Modifier Letters:

    \n

    ˆ ˇ ː ˘ ˙ ˚ ˛ ˜ ˝

    \n-

    Combining Diacritical Marks:

    \n-

    ◌̀◌́◌̂◌̃◌̄◌̇◌̈◌̋◌̌◌̏ CGJ (U+034F)
    ሆ̀ሆ́ሆ̂ሆ̃ሆ̄ሆ̇ሆ̈ሆ̋ሆ̌ሆ̏

    \n+

    Combining Diacritical\n+ Marks:

    \n+

    ◌̀◌́◌̂◌̃◌̄◌̇◌̈◌̋◌̌◌̏ CGJ (U+034F)
    \n+ ሆ̀ሆ́ሆ̂ሆ̃ሆ̄ሆ̇ሆ̈ሆ̋ሆ̌ሆ̏

    \n

    Greek and Coptic:

    \n

    π

    \n

    General Punctuation:

    \n-

        –—‘’‚“”„†‡•…‰‹›※⁄⁠

    \n-

    Superscripts and Subscripts

    \n-

    ⁰⁴⁵⁶⁷⁸⁹

    \n+

        –—‘’‚“”„†‡•…‰‹›※⁄⁠

    \n+

    Superscripts and\n+ Subscripts

    \n+

    ⁰⁴⁵⁶⁷⁸⁹ ₀₁₂₃₄₅₆₇₈₉

    \n

    Currency Symbols:

    \n

    \n-

    Letterlike Symbols, Mathematical Operators, Control Pictures, Geometric Shapes, Dingbats:

    \n-

    ™Ω ∂∅∆∏∑∙√∞∫≈≠≤≥ ␣ ◊ ◌ ✓

    \n+ Letterlike\n+ Symbols, Mathematical Operators, Control Pictures, Geometric Shapes,\n+ Dingbats:\n+

    ™Ω ∂∅∆∏∑∙√∞∫≈≠≤≥ ␣ ◊ ◌\n+ ✓

    \n+

    Enclosed Alphanumerics

    \n+

    ①②③④⑤⑥⑦⑧⑨

    \n

    Ethiopic:

    \n

    Syllables:

    \n-

    ሀሁሂሃሄህሆሇ ለሉሊላሌልሎሏ ሐሑሒሓሔሕሖሗ መሙሚማሜምሞሟ ሠሡሢሣሤሥሦሧ ረሩሪራሬርሮሯ ሰሱሲሳሴስሶሷ ሸሹሺሻሼሽሾሿ ቀቁቂቃቄቅቆቇ ቈቊቋቌቍ ቐቑቒቓቔቕ ቖቘቚቛቜቝ በቡቢባቤብቦቧ ቨቩቪቫቬቭቮቯ ተቱቲታቴትቶቷ ቸቹቺቻቼችቾቿ ኀኁኂኃኄኅኆኇ ኈኊኋኌኍ ነኑኒናኔንኖኗ ኘኙኚኛኜኝኞኟ አኡኢኣኤእኦ ኧከኩኪካኬክኮኯ ኰኲኳኴኵ ኸኹኺኻኼኽኾዀዂዃዄዅ ወዉዊዋዌውዎዏ ዐዑዒዓዔዕዖ ዘዙዚዛዜዝዞዟ ዠዡዢዣዤዥዦዧ የዩዪያዬይዮዯ ደዱዲዳዴድዶዷ ዸዹዺዻዼዽዾዿ ጀጁጂጃጄጅጆጇ ገጉጊጋጌግጎጏጐጒጓጔጕ ጘጙጚጛጜጝጞጟ ጠጡጢጣጤጥጦጧ ጨጩጪጫጬጭጮጯ ጰጱጲጳጴጵጶጷ ጸጹጺጻጼጽጾጿ ፀፁፂፃፄፅፆፇ ፈፉፊፋፌፍፎፏ ፐፑፒፓፔፕፖፗ ፘ ፙ ፚ

    \n+

    ሀሁሂሃሄህሆሇ ለሉሊላሌልሎሏ ሐሑሒሓሔሕሖሗ\n+ መሙሚማሜምሞሟ ሠሡሢሣሤሥሦሧ ረሩሪራሬርሮሯ ሰሱሲሳሴስሶሷ ሸሹሺሻሼሽሾሿ ቀቁቂቃቄቅቆቇ ቈቊቋቌቍ ቐቑቒቓቔቕ\n+ ቖቘቚቛቜቝ በቡቢባቤብቦቧ ቨቩቪቫቬቭቮቯ ተቱቲታቴትቶቷ ቸቹቺቻቼችቾቿ ኀኁኂኃኄኅኆኇ ኈኊኋኌኍ ነኑኒናኔንኖኗ\n+ ኘኙኚኛኜኝኞኟ አኡኢኣኤእኦ ኧከኩኪካኬክኮኯ ኰኲኳኴኵ ኸኹኺኻኼኽኾዀዂዃዄዅ ወዉዊዋዌውዎዏ ዐዑዒዓዔዕዖ\n+ ዘዙዚዛዜዝዞዟ ዠዡዢዣዤዥዦዧ የዩዪያዬይዮዯ ደዱዲዳዴድዶዷ ዸዹዺዻዼዽዾዿ ጀጁጂጃጄጅጆጇ ገጉጊጋጌግጎጏጐጒጓጔጕ\n+ ጘጙጚጛጜጝጞጟ ጠጡጢጣጤጥጦጧ ጨጩጪጫጬጭጮጯ ጰጱጲጳጴጵጶጷ ጸጹጺጻጼጽጾጿ ፀፁፂፃፄፅፆፇ ፈፉፊፋፌፍፎፏ\n+ ፐፑፒፓፔፕፖፗ ፘ ፙ ፚ

    \n

    Combining Marks

    \n-

    ◌፞◌፟◌፝
    ሆ፞ሆ፟ሆ፝

    \n+

    ◌፞◌፟◌፝
    ሆ፞ሆ፟ሆ፝ ሆ፞́ሆ፟́ሆ፝፟

    \n

    Punctuation

    \n

    ፠፡።፣፤፥፦፧፨

    \n

    Digits

    \n@@ -59,27 +83,33 @@

    Syllables for Me’en

    \n

    Syllables for Blin

    \n

    ⶓⶔⶕⶖ

    \n

    Syllables for Gurage

    \n-

    ⶠⶡⶢⶣⶤⶥⶦ ⶨⶩⶪⶫⶬⶭⶮ ⶰⶱⶲⶳⶴⶵⶶ ⶸⶹⶺⶻⶼⶽⶾ ⷀⷁⷂⷃⷄⷅⷆ ⷈⷉⷊⷋⷌⷍⷎ ⷐⷑⷒⷓⷔⷕⷖ ⷘⷙⷚⷛⷜⷝⷞ

    \n+

    ⶠⶡⶢⶣⶤⶥⶦ ⶨⶩⶪⶫⶬⶭⶮ ⶰⶱⶲⶳⶴⶵⶶ ⶸⶹⶺⶻⶼⶽⶾ\n+ ⷀⷁⷂⷃⷄⷅⷆ ⷈⷉⷊⷋⷌⷍⷎ ⷐⷑⷒⷓⷔⷕⷖ ⷘⷙⷚⷛⷜⷝⷞ

    \n

    Ethiopic Extended-A

    \n-

    Gamo-Gofa-Dawro and Basketo

    \n+

    Gamo-Gofa-Dawro and\n+ Basketo

    \n

    ꬁꬂꬃꬄꬅꬆ ꬉꬊꬋꬌꬍꬎ

    \n

    Gamo-Gofa-Dawro

    \n

    ꬑꬒꬓꬔꬕꬖ

    \n

    Gumuz

    \n

    ꬠꬡꬢꬣꬤꬥꬦ ꬨꬩꬪꬫꬬꬭꬮ

    \n

    Ethiopic Extended-B

    \n

    Syllables for Gurage

    \n-

    𞟠𞟡𞟢𞟣𞟤𞟥𞟦 𞟨𞟩𞟪𞟫 𞟭𞟮 𞟰𞟱𞟲 𞟳𞟴𞟵𞟶𞟷 𞟸𞟹𞟺 𞟻𞟼 𞟽𞟾

    \n+

    𞟠𞟡𞟢𞟣𞟤𞟥𞟦 𞟨𞟩𞟪𞟫 𞟭𞟮 𞟰𞟱𞟲 𞟳𞟴𞟵𞟶𞟷 𞟸𞟹𞟺\n+ 𞟻𞟼 𞟽𞟾

    \n

    Sample Text

    \n

    Amharic UDHR #26:

    \n-

    እያንዳንዱ፡ሰው፡የመማር፡መብት፡አለው።፡ትምህርት፡ቢያንስ፡ቢያንስ፡በአንደኛ፡ደረጃና፡በመሰረታዊ፡ደረጃዎች፡በነጻ፡ሊሆን፡ይገባል።፡የአንደኛ፡ደረጃ፡ትምህርት፡መማር፡ግዴታ፡ነው።፡የቴክኒክና፡የልዩ፡ልዩ፡ሙያ፡ትምህርት፡በጠቅላላው፡የከፍተኛ፡ደረጃ፡ደግሞ፡በችሎታ፡መሠረት፡ለሁሉም፡እኩል፡መሰጠት፡አለበት።

    \n-

    ትምህርት፡ለእያንዳንዱ፡ሰው፡ሁኔታ፡ማሻሻያና፡ለሰብዓዊ፡መብቶችም፡መሠረታዊ፡ነጻነቶች፡ክብር፡ማዳበርያ፡የሚውል፡መሆን፡አለበት።፡እንዲሁም፡የተለያየ፡ዘር፡ወይም፡ሃይማኖት፡ባሏቸው፡ሕዝቦች፡መካከል፡ሁሉ፡መግባባትን፡ተቻችሎ፡የመኖርንና፡የመተባበርን፡መንፈስ፡የሚያጠነክርና፡የተባበሩት፡መንግሥታት፡ድርጅት፡ሰላምን፡ለመጠበቅ፡የሚፈጽማቸው፡ተግባሮች፡እንዲስፋፋ፡የሚያበረታቱ፡መሆን፡አለበት።፡

    \n-

    ወላጆች፡ለልጆቻቸው፡ለመስጠት፡የሚፈልጉትን፡ትምህርት፡ለመምረጥ፡የቅድሚያ፡መብት፡አላችው።፡

    \n+

    እያንዳንዱ፡ሰው፡የመማር፡መብት፡አለው።፡ትምህርት፡ቢያንስ፡ቢያንስ፡በአንደኛ፡ደረጃና፡በመሰረታዊ፡ደረጃዎች፡በነጻ፡ሊሆን፡ይገባል።፡የአንደኛ፡ደረጃ፡ትምህርት፡መማር፡ግዴታ፡ነው።፡የቴክኒክና፡የልዩ፡ልዩ፡ሙያ፡ትምህርት፡በጠቅላላው፡የከፍተኛ፡ደረጃ፡ደግሞ፡በችሎታ፡መሠረት፡ለሁሉም፡እኩል፡መሰጠት፡አለበት።

    \n+

    ትምህርት፡ለእያንዳንዱ፡ሰው፡ሁኔታ፡ማሻሻያና፡ለሰብዓዊ፡መብቶችም፡መሠረታዊ፡ነጻነቶች፡ክብር፡ማዳበርያ፡የሚውል፡መሆን፡አለበት።፡እንዲሁም፡የተለያየ፡ዘር፡ወይም፡ሃይማኖት፡ባሏቸው፡ሕዝቦች፡መካከል፡ሁሉ፡መግባባትን፡ተቻችሎ፡የመኖርንና፡የመተባበርን፡መንፈስ፡የሚያጠነክርና፡የተባበሩት፡መንግሥታት፡ድርጅት፡ሰላምን፡ለመጠበቅ፡የሚፈጽማቸው፡ተግባሮች፡እንዲስፋፋ፡የሚያበረታቱ፡መሆን፡አለበት።፡

    \n+

    ወላጆች፡ለልጆቻቸው፡ለመስጠት፡የሚፈልጉትን፡ትምህርት፡ለመምረጥ፡የቅድሚያ፡መብት፡አላችው።፡

    \n \n \n \n " + }, + { + "sha": "b39193ef538fa0e5f31d89799b3bd2930300d2f6", + "filename": "fonts/sil/abyssinicasil/documentation/source/about.md", + "status": "modified", + "additions": 5, + "deletions": 6, + "changes": 11, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fabout.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fabout.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fabout.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,6 +1,6 @@\n ---\n title: Abyssinica SIL - About\n-fontversion: 2.201\n+fontversion: 2.300\n ---\n \n ## About this project\n@@ -9,7 +9,6 @@ Abyssinica SIL is based on Ethiopic calligraphic traditions. The Ethiopic script\n \n For more information on the visual characteristics of the font see [Design](design.md).\n \n-\n ## Future plans\n \n This font is actively maintained and improved, and recent changes to its development process will enable more frequent releases.\n@@ -32,15 +31,15 @@ You can subscribe using either of the two following options.\n \n - If you would rather not use a Google profile, you can subscribe any email address by sending a message to [sil-font-news+subscribe@groups.sil.org](mailto:sil-font-news+subscribe@groups.sil.org) and following the instructions you get in the confirmation message.\n \n-Our font announcements are also available through Twitter [@silfonts](https://twitter.com/silfonts).\n+Our font announcements are also available through X (formerly Twitter) [\\@silfonts](https://x.com/silfonts).\n \n ## Supporting the project\n \n-This font is provided at no cost, however it is expensive to produce and maintain. Please consider donating to SIL’s font development efforts to support future development. Go to [SIL’s Give Direct page](https://donate.givedirect.org/?cid=13536&n=206909) and designate your gift for _Scripts & Fonts_. **Thank you!** \n+These fonts are provided at no cost; however, they are expensive to produce and maintain. Please consider donating to SIL’s font development efforts to support future development. Go to [SIL’s Give Direct page](https://give.sil.org/give/485238). **Thank you!** \n \n-## About SIL International\n+## About SIL Global\n \n-[SIL International](https://www.sil.org/) is a global, faith-based nonprofit that works with local communities around the world to develop language solutions that expand possibilities for a better life. \n+[SIL Global](https://www.sil.org/) is a global, faith-based nonprofit that works with local communities around the world to develop language solutions that expand possibilities for a better life. \n \n We are involved in approximately 1,350 active language projects in 104 countries. These projects impact more than 1.1 billion people within 1,600 local communities. SIL’s work brings together more than 4,300 staff from 89 countries who work alongside thousands more local partners and community volunteers worldwide. Our services are available without regard to religious belief, political ideology, gender, race or ethnic background.\n " + }, + { + "sha": "6d0cba86de8fc184cc570b992b8f07c303a09d1a", + "filename": "fonts/sil/abyssinicasil/documentation/source/announcement.md", + "status": "modified", + "additions": 44, + "deletions": 4, + "changes": 48, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fannouncement.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fannouncement.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fannouncement.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,14 +1,54 @@\n ---\n title: Abyssinica SIL - Announcement\n-fontversion: 2.201\n+fontversion: 2.300\n ---\n \n This is a minor release. Changes for this version include the following:\n \n-- Fixed bug in TypeTuner support for cv46 tswa alternate\n+#### Improved\n \n-#### Known issues\n+- Adjusted glyph shapes for\n+ - 1214 ETHIOPIC SYLLABLE HHEE\n+ - 1264 ETHIOPIC SYLLABLE BEE\n+ - 126C ETHIOPIC SYLLABLE VEE\n+ - 129C ETHIOPIC SYLLABLE NYEE\n+ - 12DC ETHIOPIC SYLLABLE ZEE\n+ - 1334 ETHIOPIC SYLLABLE PHEE\n+ - 133C ETHIOPIC SYLLABLE TSEE\n+ - AB14 ETHIOPIC SYLLABLE DZEE\n+ - AB2C ETHIOPIC SYLLABLE BBEE\n+ - 1E7E4 ETHIOPIC SYLLABLE HHYEE\n+ - 1E7EA ETHIOPIC SYLLABLE HHWEE\n+- Improve diacritic position to support multiple above diacritics\n+\n+#### Added\n+\n+- Added gzi Ligature\n+- 2080 SUBSCRIPT ZERO\n+- 2081 SUBSCRIPT ONE\n+- 2082 SUBSCRIPT TWO\n+- 2083 SUBSCRIPT THREE\n+- 2084 SUBSCRIPT FOUR\n+- 2085 SUBSCRIPT FIVE\n+- 2086 SUBSCRIPT SIX\n+- 2087 SUBSCRIPT SEVEN\n+- 2088 SUBSCRIPT EIGHT\n+- 2089 SUBSCRIPT NINE\n+- 2460 CIRCLED DIGIT ONE\n+- 2461 CIRCLED DIGIT TWO\n+- 2462 CIRCLED DIGIT THREE\n+- 2463 CIRCLED DIGIT FOUR\n+- 2464 CIRCLED DIGIT FIVE\n+- 2465 CIRCLED DIGIT SIX\n+- 2466 CIRCLED DIGIT SEVEN\n+- 2467 CIRCLED DIGIT EIGHT\n+- 2468 CIRCLED DIGIT NINE\n+\n+#### Remove\n+- Graphite\n+\n+### Known issues\n \n - There are no known issues.\n \n-Download the release packages from the [Download Page](https://software.sil.org/abyssinica/download/).\n+Both desktop and web fonts are provided in a single, all-platforms package on the [Download page](https://software.sil.org/abyssinica/download)." + }, + { + "sha": "cbbd529df86fe739923cc83b3d063b9031b29f7d", + "filename": "fonts/sil/abyssinicasil/documentation/source/charset.md", + "status": "modified", + "additions": 17, + "deletions": 27, + "changes": 44, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fcharset.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fcharset.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fcharset.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,44 +1,34 @@\n ---\n title: Abyssinica SIL - Character Set Support\n-fontversion: 2.201\n+fontversion: 2.300\n ---\n \n This font contains complete coverage of all the characters defined in Unicode for Ethiopic. The Ethiopic script is used for writing many of the languages of Ethiopia and Eritrea. [Ethiopic (U+1200..U+137F)](https://www.unicode.org/charts/PDF/U1200.pdf) was added to Unicode 3.0. [Ethiopic Supplement (U+1380..U+139F)](https://www.unicode.org/charts/PDF/U1380.pdf) and [Ethiopic Extended (U+2D80..U+2DDF)](https://www.unicode.org/charts/PDF/U2D80.pdf) were added to Unicode 4.1. [Ethiopic Extended-A (U+AB00..U+AB2F)](https://www.unicode.org/charts/PDF/UAB00.pdf) was added to Unicode 6.0. [Ethiopic Extended-B U+1E7E0..U+1E7FF)](https://www.unicode.org/charts/PDF/U1E7E0.pdf) was added to Unicode 14.0. *Abyssinica SIL* supports all Ethiopic characters which are in Unicode. As far as we are aware, all languages using the Ethiopic script are now fully represented in Unicode. \n \n-\n ## Supported characters\n \n The following character ranges are supported by this font:\n \n Unicode block | Abyssinica SIL support\n-------------- | ---------------\n-C0 Controls and Basic Latin|U+0020..U+007E\n-C1 Controls and Latin-1 Supplement|U+00A0..U+00FF\n-Latin Extended-A|U+0131, U+0152..U+0153, U+0160..U+0161, U+0178, U+017D..U+017E\n-Latin Extended-B|U+0192\n-Spacing Modifier Letters|U+02C6, U+02C7, U+02D0, U+02D8..U+02DD\n-Combining Diacritical Marks|U+0300..U+0304, U+0307..U+0308, U+030B..U+030C, U+030F, U+034F\n-Greek|U+03C0\n-Ethiopic|U+1200..137C\n-Ethiopic Supplemental|U+1380..U+1399\n-Ethiopic Extended|U+2D80..U+2DDE\n-General Punctuation|U+2000..U+2015, U+2018..U+201A, U+201C..U+201E, U+2020..U+2022, U+2026..U+2030, U+2039..U+203B, U+2044, U+2060\n-Superscripts and Subscripts|U+2070, U+2074..U+2079\n-Currency Symbols|U+20AC\n-Letterlike Symbols|U+2122, U+2126\n-Mathematical Operators|U+2202, U+2205..U+2206, U+220F, U+2211, U+2219..U+221A, U+221E, U+222B, U+2248, U+2260, U+2264..U+2265\n-Control Pictures|U+2423\n-Geometric Shapes|U+25CA, U+25CC\n-Dingbats|U+2713\n-Ethiopic Extended-A|U+AB00..U+AB2E\n-PUA|U+E494, U+E496\n-Alphabetic Presentation Forms|U+FB01..U+FB02\n-Ethiopic Extended-B|U+1E7E0..U+1E7FF\n-\n+:------------- | :---------------\n+Ethiopic| ✓\n+Ethiopic Supplemental | ✓\n+Ethiopic Extended | ✓\n+Ethiopic Extended-A | ✓\n+Ethiopic Extended-B| ✓\n+PUA|E494, E496\n+Combining Diacritical Marks| 0300..0304, 0307..0308, 030B..030C, 030F, 034F\n+Superscripts and Subscripts | 2080..2089\n+Enclosed Alphanumerics | 2460 .. 2468\n+Codepage 1252 (Western)¹ | ✓\n+\n+A selection of characters from the General Punctuation block, such as various-sized spaces, are also supported; a utility such as SIL ViewGlyph can be used to examine the exact repertoire of this font. \n+\n+¹Inclusion of basic Latin repertoire is provided as a convenience, e.g., for use in menus or for displaying markup in text files; these fonts are not intended for extensive Latin script use.\n \n ## Private-use (PUA) characters\n \n-Because the majority of the PUA characters have now been encoded into Unicode, or they were considered glyph variants, all PUA characters in the font have been removed with the exception of U+E494 () and U+E496 (). Some of the PUA codepoints were actually glyph variants of characters already encoded in Unicode. These are now available through OpenType Character Variants, Graphite features, or TypeTuned fonts. See [Font Features](features.md).\n+Because the majority of the PUA characters have now been encoded into Unicode, or they were considered glyph variants, all PUA characters in the font have been removed with the exception of U+E494 () and U+E496 (). Some of the PUA codepoints were actually glyph variants of characters already encoded in Unicode. These are now available through OpenType Character Variants or TypeTuned fonts. See [Font Features](features.md).\n \n PUA characters that were previously in the font are documented here:\n " + }, + { + "sha": "163c39eb229b7a6ed007fd5764db171ad3af1502", + "filename": "fonts/sil/abyssinicasil/documentation/source/design.md", + "status": "modified", + "additions": 2, + "deletions": 2, + "changes": 4, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fdesign.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fdesign.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fdesign.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,6 +1,6 @@\n ---\n title: Abyssinica SIL - Design\n-fontversion: 2.201\n+fontversion: 2.300\n ---\n \n Abyssinica SIL is based on Ethiopic calligraphic traditions. \n@@ -17,7 +17,7 @@ Type samples showing some of the inventory of glyphs can be found here:\n \n A sample from one page is shown below. \n \n-![Abyssinica SIL Sample - Ethiopic syllables](assets/images/AbyssinicaTypeSamplev2.png){.fullsize}\n+![Abyssinica SIL Sample - Ethiopic syllables](../assets/images/AbyssinicaTypeSamplev2.png){.fullsize}\n \n
    Abyssinica SIL Sample - Ethiopic syllables
    \n " + }, + { + "sha": "c99f289fb7a10e4bd9125e8b4303f7c072ea49af", + "filename": "fonts/sil/abyssinicasil/documentation/source/developer.md", + "status": "modified", + "additions": 7, + "deletions": 8, + "changes": 15, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fdeveloper.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fdeveloper.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fdeveloper.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,33 +1,32 @@\n ---\n title: Abyssinica SIL - Developer information\n-fontversion: 2.201\n+fontversion: 2.300\n ---\n \n Abyssinica SIL is a mature product with no major changes anticipated. We will be releasing maintenance updates to fix bugs. \n \n-\n ## Welcome font developers!\n \n-We welcome other developers who wish to get involved in supporting and enhancing this font.\n+We welcome other developers who wish to get involved in supporting and enhancing these fonts or who want to modify them.\n \n Abyssinica SIL uses kerning to give a better presentation of characters which might otherwise have too much space between them. If you are a font developer and wish to include kerning in your font, the list of kerning pairs is available here: [Ethiopic Kerning Pairs](https://scriptsource.sil.org/entry/w5wqtagy5f)\n \n ## Permissions granted by the OFL\n \n-SIL’s fonts are licensed according to the terms of the [SIL Open Font License](https://scripts.sil.org/OFL). The OFL allows the fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. For details see the OFL.txt and OFL-FAQ.txt files in the package.\n+SIL’s fonts are licensed according to the terms of the [SIL Open Font License](https://openfontlicense.org/). The OFL allows the fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. For details see the OFL.txt and OFL-FAQ.txt files in the package.\n \n ## Building the fonts from source code\n \n The latest source files are available in a [Github project](https://github.com/silnrsi/font-abyssinica).\n \n-Font sources are in the [UFO3](https://unifiedfontobject.org/versions/ufo3/) format with font family structures defined using [designspace](https://github.com/fonttools/fonttools/tree/master/Doc/source/designspaceLib). OpenType source code is stored in the [.fea](https://adobe-type-tools.github.io/afdko/OpenTypeFeatureFileSpecification.html) format in the UFO (features.fea) but is maintained in a separate file using the more efficient and powerful [.feax](https://github.com/silnrsi/pysilfont/blob/master/docs/feaextensions.rawmd) format.\n+Font sources are in the [UFO3](https://unifiedfontobject.org/versions/ufo3/) format with font family structures defined using [designspace](https://github.com/fonttools/fonttools/tree/master/Doc/source/designspaceLib). OpenType source code is stored in the [.fea](https://adobe-type-tools.github.io/afdko/OpenTypeFeatureFileSpecification.html) format in the UFO (features.fea) but is maintained in a separate file using the more efficient and powerful [.feax](https://github.com/silnrsi/feax/blob/main/docs/feaextensions.md) format.\n \n-The fonts are built using a completely free and open source workflow using industry-standard tools ([fontools](https://github.com/fonttools/fonttools)), a package of custom python scripts ([pysilfont](https://github.com/silnrsi/pysilfont)), and a build and packaging system ([Smith](https://github.com/silnrsi/smith)). The whole system is available in a preconfigured virtual machine using VirtualBox and Vagrant.\n+The fonts are built using a completely free and open source workflow using industry-standard tools ([fonttools](https://github.com/fonttools/fonttools)), a package of custom python scripts ([pysilfont](https://github.com/silnrsi/pysilfont)), and a build and packaging system ([Smith](https://github.com/silnrsi/smith)). The whole toolchain is available as a Docker container. \n \n-Full instructions for setting up the tools and building SIL fonts are available on a dedicated web site: [SIL Font Development Notes](https://silnrsi.github.io/silfontdev/).\n+Full instructions for setting up the tools and building SIL fonts are available on a dedicated web site: [SIL Font Development Guide](https://silnrsi.github.io/silfontdev/).\n \n ## Contributing to the project\n \n We warmly welcome contributions to the fonts, such as new glyphs, enhanced smart font code, or bug fixes. The [brief overview of contributing changes](https://silnrsi.github.io/silfontdev/en-US/Contributing_Changes.html) is a good place to begin. The next step is to contact us by responding to an existing issue or creating an issue in the Github repository and expressing your interest. We can then work together to plan and integrate your contributions.\n \n-To enable us to accept contributions in a way that honors your contribution and respects your copyright while preserving long-term flexibility for open source licensing, you would also need to agree to the **SIL International Contributor License Agreement for Font Software (v1.0)** prior to sending us your contribution. To read more about this requirement and find out how to submit the required form, please visit the [CLA information page](https://software.sil.org/fontcla).\n+To enable us to accept contributions in a way that honors your contribution and respects your copyright while preserving long-term flexibility for open source licensing, you would also need to agree to the **SIL Global Contributor License Agreement for Font Software (v1.0)** prior to sending us your contribution. To read more about this requirement and find out how to submit the required form, please visit the [CLA information page](https://software.sil.org/fontcla)." + }, + { + "sha": "23f0ad059cc14b7a4e3b5fec37f89f1ecfd01b1f", + "filename": "fonts/sil/abyssinicasil/documentation/source/faq.md", + "status": "modified", + "additions": 10, + "deletions": 7, + "changes": 17, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Ffaq.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Ffaq.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Ffaq.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,6 +1,6 @@\n ---\n title: Abyssinica SIL - Frequently Asked Questions\n-fontversion: 2.201\n+fontversion: 2.300\n ---\n \n Many questions can be answered by consulting the following FAQ pages. Here are a few sample questions answered in each FAQ:\n@@ -12,7 +12,7 @@ Many questions can be answered by consulting the following FAQ pages. Here are a\n - *Will you add support for script...?*\n - *WIll you help me...?*\n \n-- [The SIL Open Font License (OFL-FAQ)](https://scripts.sil.org/OFL-FAQ_web)\n+- [The SIL Open Font License (OFL-FAQ)](https://openfontlicense.org/ofl-faq/)\n - *Can I use this font for...?*\n - *Can I modify the font and then include it in...*\n - *If I use the font on a web page do I have to include an acknowledgement?*\n@@ -21,25 +21,28 @@ Many questions can be answered by consulting the following FAQ pages. Here are a\n Here are a few of the most frequently asked questions specifically regarding Abyssinica SIL:\n \n #### *What is so special about Abyssinica SIL?*\n-This font is designed to work with two advanced font technologies, Graphite and OpenType. To take advantage of the advanced typographic capabilities of this font, you must be using applications that provide an adequate level of support for Graphite or OpenType. These advanced capabilities provide access to the variant character forms used in some languages.\n+This font is designed to work with the OpenType font technology. To take advantage of the advanced typographic capabilities of this font, you must be using applications that provide an adequate level of support for OpenType. The advanced OpenType capabilities provide access to the variant character forms used in some languages.\n+\n+#### *Why did you remove Graphite from Abyssinica SIL?*\n+Until version 2.300 this font included the Graphite advanced font technology. The OpenType features completely support everything that Graphite supported. Removing Graphite reduces the size of the font and some of the complexities of building the font. \n \n #### *Do you supply a keyboard to use with Abyssinica SIL?*\n \n No keyboards are supplied with the font. However, there are suggested keyboards listed in [Resources](resources.md).\n \n #### *My language uses variant forms of some Ethiopic characters. How do I type these using the Abyssinica SIL font? How do I use features?*\n \n-You should type the character the same way you would type the standard form of the character. Then, you need to select the variants to be displayed. If your application supports Graphite or the OpenType Character Variant features, you can use these to access the font features built into the font. See [Font Features](features.md) page for more details.\n+You should type the character the same way you would type the standard form of the character. Then, you need to select the variants to be displayed. If your application supports the OpenType Character Variant features, you can use these to access the font features built into the font. See [Font Features](features.md) page for more details.\n \n-If your application does not support Graphite features or the OpenType Character Variants, you can use TypeTunerWeb to customize the font with the variants you require. See [Font Features](features.md) page for more details. \n+If your application does not support the OpenType Character Variants, you can use TypeTunerWeb to customize the font with the variants you require. See [Font Features](features.md) page for more details. \n \n #### *Why did you remove the Stylistic Sets from ver. 2.000 of the Abyssinica SIL font?*\n \n Originally we added the Stylistic Sets because there was not a good solution for accessing the glyph variants in the font. At one point we also tried encoding them in the Private Use Area (PUA). PUA characters have now almost all been unencoded since the characters are now either encoded in Unicode or the variants are available through **Character Variants**. The Stylistic Sets were implemented inconsistently, and because of that we chose to remove them rather than attempt to fix them. If you still wish to use a font with Stylistic Sets, ver. 1.500 is still available on the [Previous Versions](previous-versions.md) page.\n \n #### *I have a copy of the **SIL Abyssinica** font. Can you tell me how this differs from **Abyssinica SIL**?*\n \n-It is best to upgrade to **Abyssinica SIL**. **SIL Abyssinica** (and **SIL Abyssinica U** and **SIL Abyssinica G**) was an early, unreleased version of **Abyssinica SIL**. Although a Unicode font, it only supported Unicode 3.0 and thus had a number of PUA characters in it which have since been added to Unicode 4.1 and 6.0. You should convert your data to Unicode 6.0 and use **Abyssinica SIL**. A mapping file to convert your data from PUA to Unicode 6.0 is available here: [sil-pua-unicode](https://github.com/silnrsi/wsresources/tree/master/scripts/Ethi/mappings/sil-pua-unicode). If you do not convert your data to official Unicode codepoints you will never be able to use another Ethiopic font because those are **Private** codepoints and other fonts do not support them.\n+It is best to upgrade to **Abyssinica SIL**. **SIL Abyssinica**, **SIL Abyssinica U**, and **SIL Abyssinica G** were early, unreleased versions of **Abyssinica SIL**. Although Unicode fonts, they only supported Unicode 3.0 and thus had a number of PUA characters in them which have since been added to Unicode 4.1 and 6.0. You should convert your data to Unicode and use **Abyssinica SIL**. A mapping file to convert your data from PUA to Unicode 6.0 is available here: [sil-pua-unicode](https://github.com/silnrsi/wsresources/tree/master/scripts/Ethi/mappings/sil-pua-unicode). If you do not convert your data to official Unicode codepoints you will never be able to use another Ethiopic font because those are **Private** codepoints and other fonts do not support them.\n \n #### *You have characters which are encoded in the PUA area. Is there any likelihood that these will ever be in Unicode? If so, will you update Abyssinica SIL?*\n \n@@ -49,5 +52,5 @@ With version 2.000 we removed almost all of the PUA characters in the font becau\n \n #### *I would like to bundle Abyssinica SIL with my application - can I?*\n \n-The [SIL Open Font License](https://scripts.sil.org/OFL) allows bundling with applications, even commercial ones, with some restrictions.\n+The [SIL Open Font License](https://openfontlicense.org/) allows bundling with applications, even commercial ones, with some restrictions.\n " + }, + { + "sha": "40a9602a45432600078013b375138c2ac3351af7", + "filename": "fonts/sil/abyssinicasil/documentation/source/features.md", + "status": "modified", + "additions": 20, + "deletions": 18, + "changes": 38, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Ffeatures.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Ffeatures.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Ffeatures.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,22 +1,22 @@\n ---\n title: Abyssinica SIL - Font Features\n-fontversion: 2.201\n+fontversion: 2.300\n ---\n \n-Abyssinica SIL is a TrueType font with smart font capabilities added using OpenType and Graphite font technologies. The Ethiopic script does not require much rendering except for some combining marks for gemination and vowel length. However, there are some glyph variations for the Ethiopic script. Some applications let the user control certain features such as Character Variants to turn on the rendering of variant characters. However, at this point, most applications do not make use of those features so another solution is needed to show the variant characters. [TypeTuner](https://scripts.sil.org/ttw/fonts2go.cgi) creates tuned fonts that use the variant glyph in place of the standard glyph. TypeTuner also provides the ability to turn on support for the Sebat Bet Gurage and Gumuz languages variants.\n+Abyssinica SIL is a TrueType font with smart font capabilities added using the OpenType font technology. The Ethiopic script does not require much rendering except for some combining marks for gemination and vowel length. However, there are some glyph variations for the Ethiopic script. Some applications let the user control certain features such as Character Variants to turn on the rendering of variant characters. However, at this point, most applications do not make use of those features so another solution is needed to show the variant characters. [TypeTuner](https://scripts.sil.org/ttw/fonts2go.cgi) creates tuned fonts that use the variant glyph in place of the standard glyph. TypeTuner also provides the ability to turn on support for the Sebat Bet Gurage and Gumuz languages variants.\n \n-See [Using Font Features](https://software.sil.org/fonts/features/). Although that page is not targeted at Ethiopic support, it does provide a comprehensive list of applications that make full use of the OpenType and Graphite font technologies.\n+See [Using Font Features](https://software.sil.org/fonts/features/). Although that page is not targeted at Ethiopic support, it does provide a comprehensive list of applications that make full use of the OpenType font technology.\n \n ## Advanced typographic capabilities\n \n-This font supports various advanced typographic capabilities using the Graphite and OpenType font technologies. \n+This font supports various advanced typographic capabilities using the OpenType font technology. \n \n-* Auto placement of diacritics (one level only) on Ethiopic syllables only (not on Latin characters)\n+* Auto placement of diacritics on Ethiopic syllables only (not on Latin characters)\n * Kerning of almost 200 pairs of Ethiopic syllables\n-* OpenType Character Variants or Graphite features (alternately-designed glyphs are also provided for a number of characters for use in particular contexts) \n-* OpenType and Graphite support for the Sebat Bet Gurage [sgw] and Gumuz [guk] languages\n+* OpenType Character Variants (alternately-designed glyphs are also provided for a number of characters for use in particular contexts) \n+* OpenType support for the Sebat Bet Gurage [sgw] and Gumuz [guk] languages\n \n-These capabilities are available in any application that supports the Graphite technology. They are also available via the OpenType technology, though this requires applications that provide a sufficient level of support for OpenType Character Variant features. \n+These capabilities are available in any application that supports OpenType technology, though this requires applications that provide a sufficient level of support for OpenType Character Variant features. \n \n A sample of diacritic placement and kerning is shown below:\n \n@@ -32,22 +32,14 @@ This page uses web fonts (WOFF2) to demonstrate font features and should display\n \n ## Customizing with TypeTuner\n \n-For applications that do not make use of Graphite or the OpenType Stylistic Sets feature, you can now download fonts customized with the variant glyphs you choose. Read the [Font Features](features.md) page, visit [TypeTuner Web](https://scripts.sil.org/ttw/fonts2go.cgi), then to choose the variants and download your font.\n+For applications that do not make use of the OpenType Character Variant features, you can now download fonts customized with the variant glyphs you choose. Read the [Font Features](features.md) page, visit [TypeTuner Web](https://scripts.sil.org/ttw/fonts2go.cgi), then to choose the variants and download your font.\n \n \n ## Complete feature list\n \n-There are some Ethiopic character shape differences in different Ethiopian languages. These can be accessed by using Graphite features, OpenType Character Variants, or language support for Sebat Bet Gurage and Gumuz languages. The documents below can be downloaded in order to see all the user-selectable font features that are available in the font. The feature names, feature ids, settings and examples are provided. \n+There are some Ethiopic character shape differences in different Ethiopian languages. These can be accessed by using OpenType Character Variants or language support for Sebat Bet Gurage and Gumuz languages. The documents below can be downloaded in order to see all the user-selectable font features that are available in the font. The feature names, feature ids, settings and examples are provided. \n \n \n-### Test rendering engine choice \n-\n-Here is a simple test to see if Graphite is working in your browser. If it is, the following will say \"RenderingGraphite\". If your browser does not support Graphite it should say \"RenderingOpentype\". Firefox is currently the only browser that supports Graphite. See the [instructions on how to enable Graphite in Firefox](https://scripts.sil.org/cms/scripts/page.php?site_id=projects&item_id=graphite_firefox#switchon).\n-\n-| | \n-------------- | --------------- \n-Check | RenderingUnknown\n-\n ### Language \n \n Affects: U+124A, U+124D, U+1298..U+129F, U+12B2, U+12B5, U+12C2, U+12C5, U+1312, U+1313, U+1315, U+1381, U+1385, U+138D \n@@ -325,6 +317,16 @@ Feature | Sample | Feature setting\n Standard | ቍ ኵ ዅ ጕ | `cv85=0`\n Alternate | ቍ ኵ ዅ ጕ⁷ | `cv85=1`\n \n+### Ligatures\n+\n+#### gzi ligature\n+\n+Affects: U+130D U+200D U+12DA\n+\n+Feature | Sample | Feature setting\n+------------- | --------------- | ------------- \n+No Joiner | ግዚ | U+130D U+12DA\n+Using ZWJ | ግ‍ዚ | U+130D U+200D U+12DA\n \n \n ## References" + }, + { + "sha": "f20d8a9fc0d7f345a8e57a0579bb72ff43cc873a", + "filename": "fonts/sil/abyssinicasil/documentation/source/history.md", + "status": "modified", + "additions": 43, + "deletions": 1, + "changes": 44, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fhistory.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fhistory.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fhistory.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,8 +1,50 @@\n ---\n title: Abyssinica SIL - Version History\n-fontversion: 2.201\n+fontversion: 2.300\n ---\n \n+### 29 Oct 2024 (WSTech Team) Abyssinica SIL version 2.300\n+\n+#### Improved\n+- Adjusted glyph shapes for\n+ - 1214 ETHIOPIC SYLLABLE HHEE\n+ - 1264 ETHIOPIC SYLLABLE BEE\n+ - 126C ETHIOPIC SYLLABLE VEE\n+ - 129C ETHIOPIC SYLLABLE NYEE\n+ - 12DC ETHIOPIC SYLLABLE ZEE\n+ - 1334 ETHIOPIC SYLLABLE PHEE\n+ - 133C ETHIOPIC SYLLABLE TSEE\n+ - AB14 ETHIOPIC SYLLABLE DZEE\n+ - AB2C ETHIOPIC SYLLABLE BBEE\n+ - 1E7E4 ETHIOPIC SYLLABLE HHYEE\n+ - 1E7EA ETHIOPIC SYLLABLE HHWEE\n+- Improve diacritic position to support multiple above diacritics\n+\n+#### Added\n+- Added gzi Ligature\n+- 2080 SUBSCRIPT ZERO\n+- 2081 SUBSCRIPT ONE\n+- 2082 SUBSCRIPT TWO\n+- 2083 SUBSCRIPT THREE\n+- 2084 SUBSCRIPT FOUR\n+- 2085 SUBSCRIPT FIVE\n+- 2086 SUBSCRIPT SIX\n+- 2087 SUBSCRIPT SEVEN\n+- 2088 SUBSCRIPT EIGHT\n+- 2089 SUBSCRIPT NINE\n+- 2460 CIRCLED DIGIT ONE\n+- 2461 CIRCLED DIGIT TWO\n+- 2462 CIRCLED DIGIT THREE\n+- 2463 CIRCLED DIGIT FOUR\n+- 2464 CIRCLED DIGIT FIVE\n+- 2465 CIRCLED DIGIT SIX\n+- 2466 CIRCLED DIGIT SEVEN\n+- 2467 CIRCLED DIGIT EIGHT\n+- 2468 CIRCLED DIGIT NINE\n+\n+#### Remove\n+- Graphite\n+\n ### 23 June 2023 (WSTech Team) Abyssinica SIL version 2.201\n - Fixed bug in TypeTuner support for cv46 tswa alternate\n " + }, + { + "sha": "38e77c156cc1a8a4c82edd0aaabf67c146aaa6a7", + "filename": "fonts/sil/abyssinicasil/documentation/source/index.md", + "status": "modified", + "additions": 2, + "deletions": 2, + "changes": 4, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Findex.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Findex.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Findex.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,13 +1,13 @@\n ---\n title: Abyssinica SIL - Documentation\n-fontversion: 2.201\n+fontversion: 2.300\n ---\n \n Thank you for your interest in the Abyssinica SIL font. This font supports the broad variety of writing systems that use the Ethiopic script.\n \n This documentation is a set of HTML pages that can be viewed in any modern web browser. PDF versions of these pages are also provided. This content, plus download links and a contact form, are available from the [Abyssinica SIL site](https://software.sil.org/abyssinica/).\n \n-- [About](about.md) — Information about this project and SIL International\n+- [About](about.md) — Information about this project and SIL Global\n - [Resources](resources.md) — Help with installation and use\n - [FAQ](faq.md) — Common questions and answers\n - [Design](design.md) — History and background of the design" + }, + { + "sha": "9ef79278a5c6b3bf776bd5a7f99436617a732f40", + "filename": "fonts/sil/abyssinicasil/documentation/source/makepsmd.py", + "status": "modified", + "additions": 6, + "deletions": 5, + "changes": 11, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fmakepsmd.py", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fmakepsmd.py", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fmakepsmd.py?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,8 +1,8 @@\n #!/usr/bin/env python\n '''Process font documentation .md files for use on product sites '''\n-__url__ = 'https://github.com/silnrsi/fontdocs'\n-__copyright__ = 'Copyright (c) 2021-2023 SIL International (https://www.sil.org)'\n-__license__ = 'Released under the MIT License (https://opensource.org/license/mit/)'\n+__url__ = 'http://github.com/silnrsi/fontdocs'\n+__copyright__ = 'Copyright (c) 2021-2024 SIL Global (https://www.sil.org)'\n+__license__ = 'Released under the MIT License (http://opensource.org/licenses/MIT)'\n __author__ = 'Victor Gaultney'\n \n import re\n@@ -58,13 +58,14 @@ def doit(args):\n temptext = mdimagecap.sub(r\"[caption]\\1[/caption]\", temptext)\n \n # replace local links with site references\n- temptext = temptext.replace(\".md\",\"\")\n+ mdlink = re.compile(r\"\\((?!https://)(?P[^()]*).md\\)\")\n+ temptext = mdlink.sub(r\"(\\g)\",temptext)\n \n # replace links to external markdown files\n temptext = temptext.replace(\".rawmd\",\".md\")\n \n # replace escaped @ in link texts\n- temptext = temptext.replace(\"[\\@\",\"[@\")\n+ temptext = temptext.replace(r\"[\\@\",r\"[@\")\n \n # make a list of new classes needed for font shortcode\n # separate searches for spans with 1, 2, or 3 settings" + }, + { + "sha": "0ca243b339ef2040464a4092e9347473ad5ee08b", + "filename": "fonts/sil/abyssinicasil/documentation/source/pandocfilters/filter-html.lua", + "status": "modified", + "additions": 5, + "deletions": 3, + "changes": 8, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fpandocfilters%2Ffilter-html.lua", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fpandocfilters%2Ffilter-html.lua", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fpandocfilters%2Ffilter-html.lua?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,10 +1,12 @@\n function Link(el)\n- el.target = string.gsub(el.target, \"%.md\", \".html\")\n+ if string.find(el.target, \"^https?://\") == nil then\n+ el.target = string.gsub(el.target, \"%.md\", \".html\")\n+ end\n el.target = string.gsub(el.target, \"%.rawmd\", \".md\")\n return el\n end\n \n-function CodeBlock(el)\n- el.text = string.gsub(el.text, \"(.+)\", \" %0\")\n+function Image(el)\n+ el.src = string.gsub(el.src, \"../assets\", \"assets\")\n return el\n end" + }, + { + "sha": "bf1526c2d4ff0c1c977853e2060fc1a655512403", + "filename": "fonts/sil/abyssinicasil/documentation/source/pandocfilters/filter-pdf.lua", + "status": "modified", + "additions": 10, + "deletions": 9, + "changes": 19, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fpandocfilters%2Ffilter-pdf.lua", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fpandocfilters%2Ffilter-pdf.lua", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fpandocfilters%2Ffilter-pdf.lua?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,16 +1,17 @@\n function Link(el)\n- el.target = string.gsub(el.target, \"(.+)\", \"../../pdf/%0\")\n- el.target = string.gsub(el.target, \"%.md\", \".pdf\")\n- el.target = string.gsub(el.target, \"%.rawmd\", \".md\")\n+ if string.find(el.target, \"^https?://\") == nil then\n+ -- While full external links work fine, WeasyPrint doesn't \n+ -- seem capable of creating relative links within PDF files, \n+ -- and thus the resulting PDF files won't work if they are \n+ -- downloaded to a different folder. Until WeasyPrint is fixed,\n+ -- we remove the target from relative links, making them \n+ -- nonfunctioning (even though they remain formatted as a link):\n+ el.target = \"\"\n+ end\n return el\n end\n \n function Image(el)\n- el.src = string.gsub(el.src, \"(.+)\", \"../../%0\")\n- return el\n-end\n-\n-function CodeBlock(el)\n- el.text = string.gsub(el.text, \"(.+)\", \" %0\")\n+ el.src = string.gsub(el.src, \"../assets\", \"../../assets\")\n return el\n end" + }, + { + "sha": "474d294605c6f22e2f354ad71e5bd35158d5bd85", + "filename": "fonts/sil/abyssinicasil/documentation/source/productsite/about.md", + "status": "modified", + "additions": 4, + "deletions": 5, + "changes": 9, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fabout.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fabout.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fabout.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -5,7 +5,6 @@ Abyssinica SIL is based on Ethiopic calligraphic traditions. The Ethiopic script\n \n For more information on the visual characteristics of the font see [Design](design).\n \n-\n ## Future plans\n \n This font is actively maintained and improved, and recent changes to its development process will enable more frequent releases.\n@@ -28,15 +27,15 @@ You can subscribe using either of the two following options.\n \n - If you would rather not use a Google profile, you can subscribe any email address by sending a message to [sil-font-news+subscribe@groups.sil.org](mailto:sil-font-news+subscribe@groups.sil.org) and following the instructions you get in the confirmation message.\n \n-Our font announcements are also available through Twitter [@silfonts](https://twitter.com/silfonts).\n+Our font announcements are also available through X (formerly Twitter) [@silfonts](https://x.com/silfonts).\n \n ## Supporting the project\n \n-This font is provided at no cost, however it is expensive to produce and maintain. Please consider donating to SIL’s font development efforts to support future development. Go to [SIL’s Give Direct page](https://donate.givedirect.org/?cid=13536&n=206909) and designate your gift for _Scripts & Fonts_. **Thank you!** \n+These fonts are provided at no cost; however, they are expensive to produce and maintain. Please consider donating to SIL’s font development efforts to support future development. Go to [SIL’s Give Direct page](https://give.sil.org/give/485238). **Thank you!** \n \n-## About SIL International\n+## About SIL Global\n \n-[SIL International](https://www.sil.org/) is a global, faith-based nonprofit that works with local communities around the world to develop language solutions that expand possibilities for a better life. \n+[SIL Global](https://www.sil.org/) is a global, faith-based nonprofit that works with local communities around the world to develop language solutions that expand possibilities for a better life. \n \n We are involved in approximately 1,350 active language projects in 104 countries. These projects impact more than 1.1 billion people within 1,600 local communities. SIL’s work brings together more than 4,300 staff from 89 countries who work alongside thousands more local partners and community volunteers worldwide. Our services are available without regard to religious belief, political ideology, gender, race or ethnic background.\n " + }, + { + "sha": "854cfd734a45986eb5ff26888c81b71508886559", + "filename": "fonts/sil/abyssinicasil/documentation/source/productsite/announcement.md", + "status": "modified", + "additions": 43, + "deletions": 3, + "changes": 46, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fannouncement.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fannouncement.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fannouncement.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,10 +1,50 @@\n \n This is a minor release. Changes for this version include the following:\n \n-- Fixed bug in TypeTuner support for cv46 tswa alternate\n+#### Improved\n \n-#### Known issues\n+- Adjusted glyph shapes for\n+ - 1214 ETHIOPIC SYLLABLE HHEE\n+ - 1264 ETHIOPIC SYLLABLE BEE\n+ - 126C ETHIOPIC SYLLABLE VEE\n+ - 129C ETHIOPIC SYLLABLE NYEE\n+ - 12DC ETHIOPIC SYLLABLE ZEE\n+ - 1334 ETHIOPIC SYLLABLE PHEE\n+ - 133C ETHIOPIC SYLLABLE TSEE\n+ - AB14 ETHIOPIC SYLLABLE DZEE\n+ - AB2C ETHIOPIC SYLLABLE BBEE\n+ - 1E7E4 ETHIOPIC SYLLABLE HHYEE\n+ - 1E7EA ETHIOPIC SYLLABLE HHWEE\n+- Improve diacritic position to support multiple above diacritics\n+\n+#### Added\n+\n+- Added gzi Ligature\n+- 2080 SUBSCRIPT ZERO\n+- 2081 SUBSCRIPT ONE\n+- 2082 SUBSCRIPT TWO\n+- 2083 SUBSCRIPT THREE\n+- 2084 SUBSCRIPT FOUR\n+- 2085 SUBSCRIPT FIVE\n+- 2086 SUBSCRIPT SIX\n+- 2087 SUBSCRIPT SEVEN\n+- 2088 SUBSCRIPT EIGHT\n+- 2089 SUBSCRIPT NINE\n+- 2460 CIRCLED DIGIT ONE\n+- 2461 CIRCLED DIGIT TWO\n+- 2462 CIRCLED DIGIT THREE\n+- 2463 CIRCLED DIGIT FOUR\n+- 2464 CIRCLED DIGIT FIVE\n+- 2465 CIRCLED DIGIT SIX\n+- 2466 CIRCLED DIGIT SEVEN\n+- 2467 CIRCLED DIGIT EIGHT\n+- 2468 CIRCLED DIGIT NINE\n+\n+#### Remove\n+- Graphite\n+\n+### Known issues\n \n - There are no known issues.\n \n-Download the release packages from the [Download Page](https://software.sil.org/abyssinica/download/).\n+Both desktop and web fonts are provided in a single, all-platforms package on the [Download page](https://software.sil.org/abyssinica/download)." + }, + { + "sha": "469ed147bbaa9a6d9829f72380f4699fb971ece1", + "filename": "fonts/sil/abyssinicasil/documentation/source/productsite/charset.md", + "status": "modified", + "additions": 16, + "deletions": 26, + "changes": 42, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fcharset.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fcharset.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fcharset.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,40 +1,30 @@\n \n This font contains complete coverage of all the characters defined in Unicode for Ethiopic. The Ethiopic script is used for writing many of the languages of Ethiopia and Eritrea. [Ethiopic (U+1200..U+137F)](https://www.unicode.org/charts/PDF/U1200.pdf) was added to Unicode 3.0. [Ethiopic Supplement (U+1380..U+139F)](https://www.unicode.org/charts/PDF/U1380.pdf) and [Ethiopic Extended (U+2D80..U+2DDF)](https://www.unicode.org/charts/PDF/U2D80.pdf) were added to Unicode 4.1. [Ethiopic Extended-A (U+AB00..U+AB2F)](https://www.unicode.org/charts/PDF/UAB00.pdf) was added to Unicode 6.0. [Ethiopic Extended-B U+1E7E0..U+1E7FF)](https://www.unicode.org/charts/PDF/U1E7E0.pdf) was added to Unicode 14.0. *Abyssinica SIL* supports all Ethiopic characters which are in Unicode. As far as we are aware, all languages using the Ethiopic script are now fully represented in Unicode. \n \n-\n ## Supported characters\n \n The following character ranges are supported by this font:\n \n Unicode block | Abyssinica SIL support\n-------------- | ---------------\n-C0 Controls and Basic Latin|U+0020..U+007E\n-C1 Controls and Latin-1 Supplement|U+00A0..U+00FF\n-Latin Extended-A|U+0131, U+0152..U+0153, U+0160..U+0161, U+0178, U+017D..U+017E\n-Latin Extended-B|U+0192\n-Spacing Modifier Letters|U+02C6, U+02C7, U+02D0, U+02D8..U+02DD\n-Combining Diacritical Marks|U+0300..U+0304, U+0307..U+0308, U+030B..U+030C, U+030F, U+034F\n-Greek|U+03C0\n-Ethiopic|U+1200..137C\n-Ethiopic Supplemental|U+1380..U+1399\n-Ethiopic Extended|U+2D80..U+2DDE\n-General Punctuation|U+2000..U+2015, U+2018..U+201A, U+201C..U+201E, U+2020..U+2022, U+2026..U+2030, U+2039..U+203B, U+2044, U+2060\n-Superscripts and Subscripts|U+2070, U+2074..U+2079\n-Currency Symbols|U+20AC\n-Letterlike Symbols|U+2122, U+2126\n-Mathematical Operators|U+2202, U+2205..U+2206, U+220F, U+2211, U+2219..U+221A, U+221E, U+222B, U+2248, U+2260, U+2264..U+2265\n-Control Pictures|U+2423\n-Geometric Shapes|U+25CA, U+25CC\n-Dingbats|U+2713\n-Ethiopic Extended-A|U+AB00..U+AB2E\n-PUA|U+E494, U+E496\n-Alphabetic Presentation Forms|U+FB01..U+FB02\n-Ethiopic Extended-B|U+1E7E0..U+1E7FF\n-\n+:------------- | :---------------\n+Ethiopic| ✓\n+Ethiopic Supplemental | ✓\n+Ethiopic Extended | ✓\n+Ethiopic Extended-A | ✓\n+Ethiopic Extended-B| ✓\n+PUA|E494, E496\n+Combining Diacritical Marks| 0300..0304, 0307..0308, 030B..030C, 030F, 034F\n+Superscripts and Subscripts | 2080..2089\n+Enclosed Alphanumerics | 2460 .. 2468\n+Codepage 1252 (Western)¹ | ✓\n+\n+A selection of characters from the General Punctuation block, such as various-sized spaces, are also supported; a utility such as SIL ViewGlyph can be used to examine the exact repertoire of this font. \n+\n+¹Inclusion of basic Latin repertoire is provided as a convenience, e.g., for use in menus or for displaying markup in text files; these fonts are not intended for extensive Latin script use.\n \n ## Private-use (PUA) characters\n \n-Because the majority of the PUA characters have now been encoded into Unicode, or they were considered glyph variants, all PUA characters in the font have been removed with the exception of U+E494 () and U+E496 (). Some of the PUA codepoints were actually glyph variants of characters already encoded in Unicode. These are now available through OpenType Character Variants, Graphite features, or TypeTuned fonts. See [Font Features](features).\n+Because the majority of the PUA characters have now been encoded into Unicode, or they were considered glyph variants, all PUA characters in the font have been removed with the exception of U+E494 () and U+E496 (). Some of the PUA codepoints were actually glyph variants of characters already encoded in Unicode. These are now available through OpenType Character Variants or TypeTuned fonts. See [Font Features](features).\n \n PUA characters that were previously in the font are documented here:\n " + }, + { + "sha": "479738781202032fe7994b9937ee824c494d35db", + "filename": "fonts/sil/abyssinicasil/documentation/source/productsite/developer.md", + "status": "modified", + "additions": 6, + "deletions": 7, + "changes": 13, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fdeveloper.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fdeveloper.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fdeveloper.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,29 +1,28 @@\n \n Abyssinica SIL is a mature product with no major changes anticipated. We will be releasing maintenance updates to fix bugs. \n \n-\n ## Welcome font developers!\n \n-We welcome other developers who wish to get involved in supporting and enhancing this font.\n+We welcome other developers who wish to get involved in supporting and enhancing these fonts or who want to modify them.\n \n Abyssinica SIL uses kerning to give a better presentation of characters which might otherwise have too much space between them. If you are a font developer and wish to include kerning in your font, the list of kerning pairs is available here: [Ethiopic Kerning Pairs](https://scriptsource.sil.org/entry/w5wqtagy5f)\n \n ## Permissions granted by the OFL\n \n-SIL’s fonts are licensed according to the terms of the [SIL Open Font License](https://scripts.sil.org/OFL). The OFL allows the fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. For details see the OFL.txt and OFL-FAQ.txt files in the package.\n+SIL’s fonts are licensed according to the terms of the [SIL Open Font License](https://openfontlicense.org/). The OFL allows the fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. For details see the OFL.txt and OFL-FAQ.txt files in the package.\n \n ## Building the fonts from source code\n \n The latest source files are available in a [Github project](https://github.com/silnrsi/font-abyssinica).\n \n-Font sources are in the [UFO3](https://unifiedfontobject.org/versions/ufo3/) format with font family structures defined using [designspace](https://github.com/fonttools/fonttools/tree/master/Doc/source/designspaceLib). OpenType source code is stored in the [.fea](https://adobe-type-tools.github.io/afdko/OpenTypeFeatureFileSpecification.html) format in the UFO (features.fea) but is maintained in a separate file using the more efficient and powerful [.feax](https://github.com/silnrsi/pysilfont/blob/master/docs/feaextensions.md) format.\n+Font sources are in the [UFO3](https://unifiedfontobject.org/versions/ufo3/) format with font family structures defined using [designspace](https://github.com/fonttools/fonttools/tree/master/Doc/source/designspaceLib). OpenType source code is stored in the [.fea](https://adobe-type-tools.github.io/afdko/OpenTypeFeatureFileSpecification.html) format in the UFO (features.fea) but is maintained in a separate file using the more efficient and powerful [.feax](https://github.com/silnrsi/feax/blob/main/docs/feaextensions.md) format.\n \n-The fonts are built using a completely free and open source workflow using industry-standard tools ([fontools](https://github.com/fonttools/fonttools)), a package of custom python scripts ([pysilfont](https://github.com/silnrsi/pysilfont)), and a build and packaging system ([Smith](https://github.com/silnrsi/smith)). The whole system is available in a preconfigured virtual machine using VirtualBox and Vagrant.\n+The fonts are built using a completely free and open source workflow using industry-standard tools ([fonttools](https://github.com/fonttools/fonttools)), a package of custom python scripts ([pysilfont](https://github.com/silnrsi/pysilfont)), and a build and packaging system ([Smith](https://github.com/silnrsi/smith)). The whole toolchain is available as a Docker container. \n \n-Full instructions for setting up the tools and building SIL fonts are available on a dedicated web site: [SIL Font Development Notes](https://silnrsi.github.io/silfontdev/).\n+Full instructions for setting up the tools and building SIL fonts are available on a dedicated web site: [SIL Font Development Guide](https://silnrsi.github.io/silfontdev/).\n \n ## Contributing to the project\n \n We warmly welcome contributions to the fonts, such as new glyphs, enhanced smart font code, or bug fixes. The [brief overview of contributing changes](https://silnrsi.github.io/silfontdev/en-US/Contributing_Changes.html) is a good place to begin. The next step is to contact us by responding to an existing issue or creating an issue in the Github repository and expressing your interest. We can then work together to plan and integrate your contributions.\n \n-To enable us to accept contributions in a way that honors your contribution and respects your copyright while preserving long-term flexibility for open source licensing, you would also need to agree to the **SIL International Contributor License Agreement for Font Software (v1.0)** prior to sending us your contribution. To read more about this requirement and find out how to submit the required form, please visit the [CLA information page](https://software.sil.org/fontcla).\n+To enable us to accept contributions in a way that honors your contribution and respects your copyright while preserving long-term flexibility for open source licensing, you would also need to agree to the **SIL Global Contributor License Agreement for Font Software (v1.0)** prior to sending us your contribution. To read more about this requirement and find out how to submit the required form, please visit the [CLA information page](https://software.sil.org/fontcla)." + }, + { + "sha": "1c37acee0ccbda15f3f395f6ff25790630591424", + "filename": "fonts/sil/abyssinicasil/documentation/source/productsite/faq.md", + "status": "modified", + "additions": 9, + "deletions": 6, + "changes": 15, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Ffaq.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Ffaq.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Ffaq.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -8,7 +8,7 @@ Many questions can be answered by consulting the following FAQ pages. Here are a\n - *Will you add support for script...?*\n - *WIll you help me...?*\n \n-- [The SIL Open Font License (OFL-FAQ)](https://scripts.sil.org/OFL-FAQ_web)\n+- [The SIL Open Font License (OFL-FAQ)](https://openfontlicense.org/ofl-faq/)\n - *Can I use this font for...?*\n - *Can I modify the font and then include it in...*\n - *If I use the font on a web page do I have to include an acknowledgement?*\n@@ -17,25 +17,28 @@ Many questions can be answered by consulting the following FAQ pages. Here are a\n Here are a few of the most frequently asked questions specifically regarding Abyssinica SIL:\n \n #### *What is so special about Abyssinica SIL?*\n-This font is designed to work with two advanced font technologies, Graphite and OpenType. To take advantage of the advanced typographic capabilities of this font, you must be using applications that provide an adequate level of support for Graphite or OpenType. These advanced capabilities provide access to the variant character forms used in some languages.\n+This font is designed to work with the OpenType font technology. To take advantage of the advanced typographic capabilities of this font, you must be using applications that provide an adequate level of support for OpenType. The advanced OpenType capabilities provide access to the variant character forms used in some languages.\n+\n+#### *Why did you remove Graphite from Abyssinica SIL?*\n+Until version 2.300 this font included the Graphite advanced font technology. The OpenType features completely support everything that Graphite supported. Removing Graphite reduces the size of the font and some of the complexities of building the font. \n \n #### *Do you supply a keyboard to use with Abyssinica SIL?*\n \n No keyboards are supplied with the font. However, there are suggested keyboards listed in [Resources](resources).\n \n #### *My language uses variant forms of some Ethiopic characters. How do I type these using the Abyssinica SIL font? How do I use features?*\n \n-You should type the character the same way you would type the standard form of the character. Then, you need to select the variants to be displayed. If your application supports Graphite or the OpenType Character Variant features, you can use these to access the font features built into the font. See [Font Features](features) page for more details.\n+You should type the character the same way you would type the standard form of the character. Then, you need to select the variants to be displayed. If your application supports the OpenType Character Variant features, you can use these to access the font features built into the font. See [Font Features](features) page for more details.\n \n-If your application does not support Graphite features or the OpenType Character Variants, you can use TypeTunerWeb to customize the font with the variants you require. See [Font Features](features) page for more details. \n+If your application does not support the OpenType Character Variants, you can use TypeTunerWeb to customize the font with the variants you require. See [Font Features](features) page for more details. \n \n #### *Why did you remove the Stylistic Sets from ver. 2.000 of the Abyssinica SIL font?*\n \n Originally we added the Stylistic Sets because there was not a good solution for accessing the glyph variants in the font. At one point we also tried encoding them in the Private Use Area (PUA). PUA characters have now almost all been unencoded since the characters are now either encoded in Unicode or the variants are available through **Character Variants**. The Stylistic Sets were implemented inconsistently, and because of that we chose to remove them rather than attempt to fix them. If you still wish to use a font with Stylistic Sets, ver. 1.500 is still available on the [Previous Versions](previous-versions) page.\n \n #### *I have a copy of the **SIL Abyssinica** font. Can you tell me how this differs from **Abyssinica SIL**?*\n \n-It is best to upgrade to **Abyssinica SIL**. **SIL Abyssinica** (and **SIL Abyssinica U** and **SIL Abyssinica G**) was an early, unreleased version of **Abyssinica SIL**. Although a Unicode font, it only supported Unicode 3.0 and thus had a number of PUA characters in it which have since been added to Unicode 4.1 and 6.0. You should convert your data to Unicode 6.0 and use **Abyssinica SIL**. A mapping file to convert your data from PUA to Unicode 6.0 is available here: [sil-pua-unicode](https://github.com/silnrsi/wsresources/tree/master/scripts/Ethi/mappings/sil-pua-unicode). If you do not convert your data to official Unicode codepoints you will never be able to use another Ethiopic font because those are **Private** codepoints and other fonts do not support them.\n+It is best to upgrade to **Abyssinica SIL**. **SIL Abyssinica**, **SIL Abyssinica U**, and **SIL Abyssinica G** were early, unreleased versions of **Abyssinica SIL**. Although Unicode fonts, they only supported Unicode 3.0 and thus had a number of PUA characters in them which have since been added to Unicode 4.1 and 6.0. You should convert your data to Unicode and use **Abyssinica SIL**. A mapping file to convert your data from PUA to Unicode 6.0 is available here: [sil-pua-unicode](https://github.com/silnrsi/wsresources/tree/master/scripts/Ethi/mappings/sil-pua-unicode). If you do not convert your data to official Unicode codepoints you will never be able to use another Ethiopic font because those are **Private** codepoints and other fonts do not support them.\n \n #### *You have characters which are encoded in the PUA area. Is there any likelihood that these will ever be in Unicode? If so, will you update Abyssinica SIL?*\n \n@@ -45,5 +48,5 @@ With version 2.000 we removed almost all of the PUA characters in the font becau\n \n #### *I would like to bundle Abyssinica SIL with my application - can I?*\n \n-The [SIL Open Font License](https://scripts.sil.org/OFL) allows bundling with applications, even commercial ones, with some restrictions.\n+The [SIL Open Font License](https://openfontlicense.org/) allows bundling with applications, even commercial ones, with some restrictions.\n " + }, + { + "sha": "d1b7cca07233eefc1085c79a7ce133f4bf19dcc0", + "filename": "fonts/sil/abyssinicasil/documentation/source/productsite/features.md", + "status": "modified", + "additions": 19, + "deletions": 17, + "changes": 36, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Ffeatures.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Ffeatures.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Ffeatures.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,18 +1,18 @@\n \n-Abyssinica SIL is a TrueType font with smart font capabilities added using OpenType and Graphite font technologies. The Ethiopic script does not require much rendering except for some combining marks for gemination and vowel length. However, there are some glyph variations for the Ethiopic script. Some applications let the user control certain features such as Character Variants to turn on the rendering of variant characters. However, at this point, most applications do not make use of those features so another solution is needed to show the variant characters. [TypeTuner](https://scripts.sil.org/ttw/fonts2go.cgi) creates tuned fonts that use the variant glyph in place of the standard glyph. TypeTuner also provides the ability to turn on support for the Sebat Bet Gurage and Gumuz languages variants.\n+Abyssinica SIL is a TrueType font with smart font capabilities added using the OpenType font technology. The Ethiopic script does not require much rendering except for some combining marks for gemination and vowel length. However, there are some glyph variations for the Ethiopic script. Some applications let the user control certain features such as Character Variants to turn on the rendering of variant characters. However, at this point, most applications do not make use of those features so another solution is needed to show the variant characters. [TypeTuner](https://scripts.sil.org/ttw/fonts2go.cgi) creates tuned fonts that use the variant glyph in place of the standard glyph. TypeTuner also provides the ability to turn on support for the Sebat Bet Gurage and Gumuz languages variants.\n \n-See [Using Font Features](https://software.sil.org/fonts/features/). Although that page is not targeted at Ethiopic support, it does provide a comprehensive list of applications that make full use of the OpenType and Graphite font technologies.\n+See [Using Font Features](https://software.sil.org/fonts/features/). Although that page is not targeted at Ethiopic support, it does provide a comprehensive list of applications that make full use of the OpenType font technology.\n \n ## Advanced typographic capabilities\n \n-This font supports various advanced typographic capabilities using the Graphite and OpenType font technologies. \n+This font supports various advanced typographic capabilities using the OpenType font technology. \n \n-* Auto placement of diacritics (one level only) on Ethiopic syllables only (not on Latin characters)\n+* Auto placement of diacritics on Ethiopic syllables only (not on Latin characters)\n * Kerning of almost 200 pairs of Ethiopic syllables\n-* OpenType Character Variants or Graphite features (alternately-designed glyphs are also provided for a number of characters for use in particular contexts) \n-* OpenType and Graphite support for the Sebat Bet Gurage [sgw] and Gumuz [guk] languages\n+* OpenType Character Variants (alternately-designed glyphs are also provided for a number of characters for use in particular contexts) \n+* OpenType support for the Sebat Bet Gurage [sgw] and Gumuz [guk] languages\n \n-These capabilities are available in any application that supports the Graphite technology. They are also available via the OpenType technology, though this requires applications that provide a sufficient level of support for OpenType Character Variant features. \n+These capabilities are available in any application that supports OpenType technology, though this requires applications that provide a sufficient level of support for OpenType Character Variant features. \n \n A sample of diacritic placement and kerning is shown below:\n \n@@ -27,22 +27,14 @@ This page uses web fonts (WOFF2) to demonstrate font features and should display\n \n ## Customizing with TypeTuner\n \n-For applications that do not make use of Graphite or the OpenType Stylistic Sets feature, you can now download fonts customized with the variant glyphs you choose. Read the [Font Features](features) page, visit [TypeTuner Web](https://scripts.sil.org/ttw/fonts2go.cgi), then to choose the variants and download your font.\n+For applications that do not make use of the OpenType Character Variant features, you can now download fonts customized with the variant glyphs you choose. Read the [Font Features](features) page, visit [TypeTuner Web](https://scripts.sil.org/ttw/fonts2go.cgi), then to choose the variants and download your font.\n \n \n ## Complete feature list\n \n-There are some Ethiopic character shape differences in different Ethiopian languages. These can be accessed by using Graphite features, OpenType Character Variants, or language support for Sebat Bet Gurage and Gumuz languages. The documents below can be downloaded in order to see all the user-selectable font features that are available in the font. The feature names, feature ids, settings and examples are provided. \n+There are some Ethiopic character shape differences in different Ethiopian languages. These can be accessed by using OpenType Character Variants or language support for Sebat Bet Gurage and Gumuz languages. The documents below can be downloaded in order to see all the user-selectable font features that are available in the font. The feature names, feature ids, settings and examples are provided. \n \n \n-### Test rendering engine choice \n-\n-Here is a simple test to see if Graphite is working in your browser. If it is, the following will say \"RenderingGraphite\". If your browser does not support Graphite it should say \"RenderingOpentype\". Firefox is currently the only browser that supports Graphite. See the [instructions on how to enable Graphite in Firefox](https://scripts.sil.org/cms/scripts/page.php?site_id=projects&item_id=graphite_firefox#switchon).\n-\n-| | \n-------------- | --------------- \n-Check | RenderingUnknown\n-\n ### Language \n \n Affects: U+124A, U+124D, U+1298..U+129F, U+12B2, U+12B5, U+12C2, U+12C5, U+1312, U+1313, U+1315, U+1381, U+1385, U+138D \n@@ -320,6 +312,16 @@ Feature | Sample | Feature setting\n Standard | ቍ ኵ ዅ ጕ | `cv85=0`\n Alternate | ቍ ኵ ዅ ጕ⁷ | `cv85=1`\n \n+### Ligatures\n+\n+#### gzi ligature\n+\n+Affects: U+130D U+200D U+12DA\n+\n+Feature | Sample | Feature setting\n+------------- | --------------- | ------------- \n+No Joiner | ግዚ | U+130D U+12DA\n+Using ZWJ | ግ‍ዚ | U+130D U+200D U+12DA\n \n \n ## References" + }, + { + "sha": "7df43311d26981af06d213993ba82560edc8e2ac", + "filename": "fonts/sil/abyssinicasil/documentation/source/productsite/history.md", + "status": "modified", + "additions": 42, + "deletions": 0, + "changes": 42, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fhistory.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fhistory.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fhistory.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,4 +1,46 @@\n \n+### 29 Oct 2024 (WSTech Team) Abyssinica SIL version 2.300\n+\n+#### Improved\n+- Adjusted glyph shapes for\n+ - 1214 ETHIOPIC SYLLABLE HHEE\n+ - 1264 ETHIOPIC SYLLABLE BEE\n+ - 126C ETHIOPIC SYLLABLE VEE\n+ - 129C ETHIOPIC SYLLABLE NYEE\n+ - 12DC ETHIOPIC SYLLABLE ZEE\n+ - 1334 ETHIOPIC SYLLABLE PHEE\n+ - 133C ETHIOPIC SYLLABLE TSEE\n+ - AB14 ETHIOPIC SYLLABLE DZEE\n+ - AB2C ETHIOPIC SYLLABLE BBEE\n+ - 1E7E4 ETHIOPIC SYLLABLE HHYEE\n+ - 1E7EA ETHIOPIC SYLLABLE HHWEE\n+- Improve diacritic position to support multiple above diacritics\n+\n+#### Added\n+- Added gzi Ligature\n+- 2080 SUBSCRIPT ZERO\n+- 2081 SUBSCRIPT ONE\n+- 2082 SUBSCRIPT TWO\n+- 2083 SUBSCRIPT THREE\n+- 2084 SUBSCRIPT FOUR\n+- 2085 SUBSCRIPT FIVE\n+- 2086 SUBSCRIPT SIX\n+- 2087 SUBSCRIPT SEVEN\n+- 2088 SUBSCRIPT EIGHT\n+- 2089 SUBSCRIPT NINE\n+- 2460 CIRCLED DIGIT ONE\n+- 2461 CIRCLED DIGIT TWO\n+- 2462 CIRCLED DIGIT THREE\n+- 2463 CIRCLED DIGIT FOUR\n+- 2464 CIRCLED DIGIT FIVE\n+- 2465 CIRCLED DIGIT SIX\n+- 2466 CIRCLED DIGIT SEVEN\n+- 2467 CIRCLED DIGIT EIGHT\n+- 2468 CIRCLED DIGIT NINE\n+\n+#### Remove\n+- Graphite\n+\n ### 23 June 2023 (WSTech Team) Abyssinica SIL version 2.201\n - Fixed bug in TypeTuner support for cv46 tswa alternate\n " + }, + { + "sha": "6312d9b3275e91bf5e23622153db8885c74a7fc4", + "filename": "fonts/sil/abyssinicasil/documentation/source/productsite/resources.md", + "status": "modified", + "additions": 5, + "deletions": 5, + "changes": 10, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fresources.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fresources.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fresources.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -5,7 +5,7 @@ This font is supported by all major operating systems (macOS, Windows, Linux-bas\n \n ## Installation\n \n-Install the font by decompressing the .zip archive and installing the font using the standard font installation process for .ttf (TrueType/OpenType) fonts for your platform. For additional tips see the help page on [Font installation](https://software.sil.org/fonts/installation).\n+Install the fonts by decompressing the .zip archive and installing the fonts using the standard font installation process for .ttf (TrueType/OpenType) fonts for your platform. For additional tips see the help page on [Font installation](https://software.sil.org/fonts/installation).\n \n ## Keyboarding and character set support\n \n@@ -38,17 +38,17 @@ See [Character set support](charset) for details of the Unicode characters suppo\n \n This font will work normally like any other font in most applications. If the writing system requires special diacritic positioning the application/OS will need to support OpenType.\n \n-Abyssinica SIL is designed to work with two advanced font technologies, [Graphite](https://graphite.sil.org/) and OpenType. To take advantage of the advanced typographic capabilities of this font, you must be using applications that provide an adequate level of support for Graphite or OpenType.\n+If special font features are to be activated the application will need to provide a way to turn on the feature or choose the feature setting. Details of current application support, and specific techniques for activating features, are on the [Using Font Features](https://software.sil.org/fonts/features) help page.\n \n-Other suggestions are listed here: [Using Font Features](https://software.sil.org/fonts/features/). \n+Although this current font supports only OpenType, previous versions provided support for the Graphite technology. Graphite was supported through version 2.2. These older versions remain available from our [Previous Versions archive](https://software.sil.org/abyssinica/download/previous-versions).\n \n ## Web fonts\n \n-Web font versions of this font (in WOFF and WOFF2 formats) are available in the `web` folder. These can be copied to a web server and used as fonts on web pages. A very basic HTML/CSS demo page is also included. For more information on the options and techniques available for using these fonts on web pages see [Using SIL Fonts on Web Pages](https://software.sil.org/fonts/webfonts).\n+Web font versions of these fonts (in WOFF and WOFF2 formats) are available in the `web` folder. These can be copied to a web server and used as fonts on web pages. A very basic HTML/CSS demo page is also included. For more information on the options and techniques available for using these fonts on web pages see [Using SIL Fonts on Web Pages](https://software.sil.org/fonts/webfonts).\n \n ## Text conversion\n \n-This font is encoded according to [The Unicode Standard](https://unicode.org). If you have text that uses a legacy, non-Unicode encoding there are tools that can help you convert that text for use with Unicode fonts. See [Introduction to Text Conversion and Transliteration](https://scriptsource.org/entry/xlzd6n5aqt).\n+This font is encoded according to [The Unicode Standard](https://www.unicode.org/). If you have text that uses a legacy, non-Unicode encoding there are tools that can help you convert that text for use with Unicode fonts. See [Introduction to Text Conversion and Transliteration](https://scriptsource.org/entry/xlzd6n5aqt).\n \n In order to use this font with existing data that was created for use with fonts developed using custom-encoded fonts, it is necessary to re-type or convert data to produce data that is encoded in conformance with the Unicode Standard. [SIL Converters](https://software.sil.org/silconverters/) and/or [TECkit](https://software.sil.org/teckit/) can be used for character encoding conversion. TECkit allows users to write their own custom conversion mappings.\n " + }, + { + "sha": "40ab2ff0a7f44d6eb41a48fbae237358d2d8e081", + "filename": "fonts/sil/abyssinicasil/documentation/source/productsite/sample.md", + "status": "modified", + "additions": 6, + "deletions": 3, + "changes": 9, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fsample.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fsample.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fsample.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -37,8 +37,8 @@ This document demonstrates all of the characters in the font. It is organized by\n     –—‘’‚“”„†‡•…‰‹›※⁄⁠\n \n ### Superscripts and Subscripts\n-⁰⁴⁵⁶⁷⁸⁹\n \n+⁰⁴⁵⁶⁷⁸⁹ ₀₁₂₃₄₅₆₇₈₉\n \n ### Currency Symbols:\n \n@@ -48,15 +48,18 @@ This document demonstrates all of the characters in the font. It is organized by\n \n ™Ω ∂∅∆∏∑∙√∞∫≈≠≤≥ ␣ ◊ ◌ ✓\n \n+### Enclosed Alphanumerics\n+\n+①②③④⑤⑥⑦⑧⑨\n+\n ### Ethiopic:\n \n #### Syllables:\n \n ሀሁሂሃሄህሆሇ ለሉሊላሌልሎሏ ሐሑሒሓሔሕሖሗ መሙሚማሜምሞሟ ሠሡሢሣሤሥሦሧ ረሩሪራሬርሮሯ ሰሱሲሳሴስሶሷ ሸሹሺሻሼሽሾሿ ቀቁቂቃቄቅቆቇ ቈቊቋቌቍ ቐቑቒቓቔቕ ቖቘቚቛቜቝ በቡቢባቤብቦቧ ቨቩቪቫቬቭቮቯ ተቱቲታቴትቶቷ ቸቹቺቻቼችቾቿ ኀኁኂኃኄኅኆኇ ኈኊኋኌኍ ነኑኒናኔንኖኗ ኘኙኚኛኜኝኞኟ አኡኢኣኤእኦ ኧከኩኪካኬክኮኯ ኰኲኳኴኵ ኸኹኺኻኼኽኾዀዂዃዄዅ ወዉዊዋዌውዎዏ ዐዑዒዓዔዕዖ ዘዙዚዛዜዝዞዟ ዠዡዢዣዤዥዦዧ የዩዪያዬይዮዯ ደዱዲዳዴድዶዷ ዸዹዺዻዼዽዾዿ ጀጁጂጃጄጅጆጇ ገጉጊጋጌግጎጏጐጒጓጔጕ ጘጙጚጛጜጝጞጟ ጠጡጢጣጤጥጦጧ ጨጩጪጫጬጭጮጯ ጰጱጲጳጴጵጶጷ ጸጹጺጻጼጽጾጿ ፀፁፂፃፄፅፆፇ ፈፉፊፋፌፍፎፏ ፐፑፒፓፔፕፖፗ ፘ ፙ ፚ\n \n #### Combining Marks\n-◌፞◌፟◌፝
    \n-ሆ፞ሆ፟ሆ፝
    \n+◌፞◌፟◌፝
    ሆ፞ሆ፟ሆ፝ ሆ፞́ሆ፟́ሆ፝፟
    \n \n #### Punctuation\n ፠፡።፣፤፥፦፧፨" + }, + { + "sha": "d27bacc40466ba2ff8f46a0c0ef35550d146ee43", + "filename": "fonts/sil/abyssinicasil/documentation/source/productsite/support.md", + "status": "modified", + "additions": 2, + "deletions": 2, + "changes": 4, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fsupport.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fsupport.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fproductsite%2Fsupport.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,7 +1,7 @@\n \n ## Support options\n \n-As this font is distributed at no cost, we are unable to provide a commercial level of personal technical support. We will, however, try to resolve problems that are reported to us.\n+As these fonts are distributed at no cost, we are unable to provide a commercial level of personal technical support. We will, however, try to resolve problems that are reported to us.\n \n Before requesting technical support, please **carefully read all the documentation included with the fonts and linked pages on the web site**. The [Resources page](resources) is a good place to begin.\n \n@@ -15,5 +15,5 @@ If you have a bug to report or a suggestion for how we could improve the font pl\n \n ## Contact form\n \n-If the documentation and community fail to answer your question or need further help using the font, please contact us using [the form on the Abyssinica SIL web site](https://software.sil.org/abyssinica/about/contact/).\n+If the documentation and community fail to answer your question or need further help using the fonts, please contact us using [the form on the Abyssinica SIL web site](https://software.sil.org/abyssinica/about/contact/).\n " + }, + { + "sha": "e0d2e243404d8aaa15516e28ff977cadc80ed10d", + "filename": "fonts/sil/abyssinicasil/documentation/source/resources.md", + "status": "modified", + "additions": 6, + "deletions": 6, + "changes": 12, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fresources.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fresources.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fresources.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,6 +1,6 @@\n ---\n title: Abyssinica SIL - Resources\n-fontversion: 2.201\n+fontversion: 2.300\n ---\n \n ## Requirements\n@@ -9,7 +9,7 @@ This font is supported by all major operating systems (macOS, Windows, Linux-bas\n \n ## Installation\n \n-Install the font by decompressing the .zip archive and installing the font using the standard font installation process for .ttf (TrueType/OpenType) fonts for your platform. For additional tips see the help page on [Font installation](https://software.sil.org/fonts/installation).\n+Install the fonts by decompressing the .zip archive and installing the fonts using the standard font installation process for .ttf (TrueType/OpenType) fonts for your platform. For additional tips see the help page on [Font installation](https://software.sil.org/fonts/installation).\n \n ## Keyboarding and character set support\n \n@@ -42,17 +42,17 @@ See [Character set support](charset.md) for details of the Unicode characters su\n \n This font will work normally like any other font in most applications. If the writing system requires special diacritic positioning the application/OS will need to support OpenType.\n \n-Abyssinica SIL is designed to work with two advanced font technologies, [Graphite](https://graphite.sil.org/) and OpenType. To take advantage of the advanced typographic capabilities of this font, you must be using applications that provide an adequate level of support for Graphite or OpenType.\n+If special font features are to be activated the application will need to provide a way to turn on the feature or choose the feature setting. Details of current application support, and specific techniques for activating features, are on the [Using Font Features](https://software.sil.org/fonts/features) help page.\n \n-Other suggestions are listed here: [Using Font Features](https://software.sil.org/fonts/features/). \n+Although this current font supports only OpenType, previous versions provided support for the Graphite technology. Graphite was supported through version 2.2. These older versions remain available from our [Previous Versions archive](https://software.sil.org/abyssinica/download/previous-versions).\n \n ## Web fonts\n \n-Web font versions of this font (in WOFF and WOFF2 formats) are available in the `web` folder. These can be copied to a web server and used as fonts on web pages. A very basic HTML/CSS demo page is also included. For more information on the options and techniques available for using these fonts on web pages see [Using SIL Fonts on Web Pages](https://software.sil.org/fonts/webfonts).\n+Web font versions of these fonts (in WOFF and WOFF2 formats) are available in the `web` folder. These can be copied to a web server and used as fonts on web pages. A very basic HTML/CSS demo page is also included. For more information on the options and techniques available for using these fonts on web pages see [Using SIL Fonts on Web Pages](https://software.sil.org/fonts/webfonts).\n \n ## Text conversion\n \n-This font is encoded according to [The Unicode Standard](https://unicode.org). If you have text that uses a legacy, non-Unicode encoding there are tools that can help you convert that text for use with Unicode fonts. See [Introduction to Text Conversion and Transliteration](https://scriptsource.org/entry/xlzd6n5aqt).\n+This font is encoded according to [The Unicode Standard](https://www.unicode.org/). If you have text that uses a legacy, non-Unicode encoding there are tools that can help you convert that text for use with Unicode fonts. See [Introduction to Text Conversion and Transliteration](https://scriptsource.org/entry/xlzd6n5aqt).\n \n In order to use this font with existing data that was created for use with fonts developed using custom-encoded fonts, it is necessary to re-type or convert data to produce data that is encoded in conformance with the Unicode Standard. [SIL Converters](https://software.sil.org/silconverters/) and/or [TECkit](https://software.sil.org/teckit/) can be used for character encoding conversion. TECkit allows users to write their own custom conversion mappings.\n " + }, + { + "sha": "93a8e7c600c4d0615272089aefb19c6c89c406a9", + "filename": "fonts/sil/abyssinicasil/documentation/source/sample.md", + "status": "modified", + "additions": 7, + "deletions": 4, + "changes": 11, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fsample.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fsample.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fsample.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,6 +1,6 @@\n ---\n title: Abyssinica SIL - Type Sample\n-fontversion: 2.201\n+fontversion: 2.300\n ---\n \n This document demonstrates all of the characters in the font. It is organized by Unicode block. Alternate glyphs that are available through features are demonstrated in the [Features](features.md) document. At the end is a sample demonstrating an example of running text.\n@@ -41,8 +41,8 @@ This document demonstrates all of the characters in the font. It is organized by\n     –—‘’‚“”„†‡•…‰‹›※⁄⁠\n \n ### Superscripts and Subscripts\n-⁰⁴⁵⁶⁷⁸⁹\n \n+⁰⁴⁵⁶⁷⁸⁹ ₀₁₂₃₄₅₆₇₈₉\n \n ### Currency Symbols:\n \n@@ -52,15 +52,18 @@ This document demonstrates all of the characters in the font. It is organized by\n \n ™Ω ∂∅∆∏∑∙√∞∫≈≠≤≥ ␣ ◊ ◌ ✓\n \n+### Enclosed Alphanumerics\n+\n+①②③④⑤⑥⑦⑧⑨\n+\n ### Ethiopic:\n \n #### Syllables:\n \n ሀሁሂሃሄህሆሇ ለሉሊላሌልሎሏ ሐሑሒሓሔሕሖሗ መሙሚማሜምሞሟ ሠሡሢሣሤሥሦሧ ረሩሪራሬርሮሯ ሰሱሲሳሴስሶሷ ሸሹሺሻሼሽሾሿ ቀቁቂቃቄቅቆቇ ቈቊቋቌቍ ቐቑቒቓቔቕ ቖቘቚቛቜቝ በቡቢባቤብቦቧ ቨቩቪቫቬቭቮቯ ተቱቲታቴትቶቷ ቸቹቺቻቼችቾቿ ኀኁኂኃኄኅኆኇ ኈኊኋኌኍ ነኑኒናኔንኖኗ ኘኙኚኛኜኝኞኟ አኡኢኣኤእኦ ኧከኩኪካኬክኮኯ ኰኲኳኴኵ ኸኹኺኻኼኽኾዀዂዃዄዅ ወዉዊዋዌውዎዏ ዐዑዒዓዔዕዖ ዘዙዚዛዜዝዞዟ ዠዡዢዣዤዥዦዧ የዩዪያዬይዮዯ ደዱዲዳዴድዶዷ ዸዹዺዻዼዽዾዿ ጀጁጂጃጄጅጆጇ ገጉጊጋጌግጎጏጐጒጓጔጕ ጘጙጚጛጜጝጞጟ ጠጡጢጣጤጥጦጧ ጨጩጪጫጬጭጮጯ ጰጱጲጳጴጵጶጷ ጸጹጺጻጼጽጾጿ ፀፁፂፃፄፅፆፇ ፈፉፊፋፌፍፎፏ ፐፑፒፓፔፕፖፗ ፘ ፙ ፚ\n \n #### Combining Marks\n-◌፞◌፟◌፝
    \n-ሆ፞ሆ፟ሆ፝
    \n+◌፞◌፟◌፝
    ሆ፞ሆ፟ሆ፝ ሆ፞́ሆ፟́ሆ፝፟
    \n \n #### Punctuation\n ፠፡።፣፤፥፦፧፨" + }, + { + "sha": "30f4c5b0a0c2c416f698d6785d6c10183d0a75b2", + "filename": "fonts/sil/abyssinicasil/documentation/source/support.md", + "status": "modified", + "additions": 3, + "deletions": 3, + "changes": 6, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fsupport.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fsupport.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fsupport.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,11 +1,11 @@\n ---\n title: Abyssinica SIL - Support\n-fontversion: 2.201\n+fontversion: 2.300\n ---\n \n ## Support options\n \n-As this font is distributed at no cost, we are unable to provide a commercial level of personal technical support. We will, however, try to resolve problems that are reported to us.\n+As these fonts are distributed at no cost, we are unable to provide a commercial level of personal technical support. We will, however, try to resolve problems that are reported to us.\n \n Before requesting technical support, please **carefully read all the documentation included with the fonts and linked pages on the web site**. The [Resources page](resources.md) is a good place to begin.\n \n@@ -19,5 +19,5 @@ If you have a bug to report or a suggestion for how we could improve the font pl\n \n ## Contact form\n \n-If the documentation and community fail to answer your question or need further help using the font, please contact us using [the form on the Abyssinica SIL web site](https://software.sil.org/abyssinica/about/contact/).\n+If the documentation and community fail to answer your question or need further help using the fonts, please contact us using [the form on the Abyssinica SIL web site](https://software.sil.org/abyssinica/about/contact/).\n " + }, + { + "sha": "002b9f540852d3f772e773eb940d1a3b683306aa", + "filename": "fonts/sil/abyssinicasil/documentation/source/template.html", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Ftemplate.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Ftemplate.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Ftemplate.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -16,7 +16,7 @@

    $title$

    \n \n $body$\n
    \n-

    This guide is from the Abyssinica SIL project version $fontversion$ and is copyright © 2000-2023 SIL International.

    \n+

    This guide is from the Abyssinica SIL project version $fontversion$ and is copyright © 2000-2024 SIL Global.

    \n
    \n \n " + }, + { + "sha": "a5a204718a74bfdb4b53da3d9a38da8164369adb", + "filename": "fonts/sil/abyssinicasil/documentation/source/templatepdf.html", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Ftemplatepdf.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Ftemplatepdf.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Ftemplatepdf.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -16,7 +16,7 @@

    $title$

    \n \n $body$\n
    \n-

    This guide is from the Abyssinica SIL project version $fontversion$ and is copyright © 2000-2023 SIL International.

    \n+

    This guide is from the Abyssinica SIL project version $fontversion$ and is copyright © 2000-2024 SIL Global.

    \n
    \n \n " + }, + { + "sha": "b3c1ca5e4241bf5ac8444c4ae946e010b673d7d1", + "filename": "fonts/sil/abyssinicasil/documentation/source/versions.md", + "status": "modified", + "additions": 3, + "deletions": 3, + "changes": 6, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fversions.md", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fversions.md", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsource%2Fversions.md?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,21 +1,21 @@\n ---\n title: Abyssinica SIL - Versions and Changes\n-fontversion: 2.201\n+fontversion: 2.300\n ---\n \n ## Announcement list\n \n If you would like stay informed of updates to Abyssinica SIL and other SIL fonts, please subscribe to the [SIL Font News Announcement List](https://groups.google.com/a/groups.sil.org/forum/#!forum/sil-font-news). For more information see [About](about.md).\n \n-Our font announcements are also available through Twitter [@silfonts](https://twitter.com/silfonts).\n+Our font announcements are also available through X (formerly Twitter) [\\@silfonts](https://x.com/silfonts).\n \n ## Current versions\n \n The latest version of the font is always available from the [Abyssinica SIL download page](https://software.sil.org/abyssinica/download/) as a .zip archive for all major platforms.\n \n This font package is also available in the [SIL software repository for Ubuntu](https://packages.sil.org/). Users can subscribe to this software repository and get current versions and updates automatically.\n \n-Abyssinica SIL is also available through the [TypeTuner Web](https://scripts.sil.org/ttw/fonts2go.cgi) service, which allows you to choose among the smart font features and download a font with those features preset. This enables them to work in many applications that do not make use of Graphite or OpenType Character Variants.\n+Abyssinica SIL is also available through the [TypeTuner Web](https://scripts.sil.org/ttw/fonts2go.cgi) service, which allows you to choose among the smart font features and download a font with those features preset. This enables them to work in many applications that do not make use of OpenType Character Variants.\n \n ## Previous versions\n " + }, + { + "sha": "d4fe29f03a5643edd4328e9933c83b74048ac040", + "filename": "fonts/sil/abyssinicasil/documentation/support.html", + "status": "modified", + "additions": 25, + "deletions": 8, + "changes": 33, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsupport.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsupport.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fsupport.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -15,16 +15,33 @@\n

    Abyssinica SIL - Support

    \n \n

    Support options

    \n-

    As this font is distributed at no cost, we are unable to provide a commercial level of personal technical support. We will, however, try to resolve problems that are reported to us.

    \n-

    Before requesting technical support, please carefully read all the documentation included with the fonts and linked pages on the web site. The Resources page is a good place to begin.

    \n-

    Language Software Community

    \n-

    For person-to-person support visit the SIL Language Software Community, where font developers and users can help each other. These support discussions can also help others in the future.

    \n-

    Reporting bugs and feature requests

    \n-

    If you have a bug to report or a suggestion for how we could improve the font please create an issue in the Github Abyssinica SIL project or contact us directly.

    \n+

    As these fonts are distributed at no cost, we are unable to\n+ provide a commercial level of personal technical support. We will,\n+ however, try to resolve problems that are reported to us.

    \n+

    Before requesting technical support, please carefully\n+ read all the documentation included with the fonts and linked pages\n+ on the web site. The Resources\n+ page is a good place to begin.

    \n+

    Language Software\n+ Community

    \n+

    For person-to-person support visit the SIL Language\n+ Software Community, where font developers and users can help\n+ each other. These support discussions can also help others in the\n+ future.

    \n+

    Reporting bugs and\n+ feature requests

    \n+

    If you have a bug to report or a suggestion for how we could\n+ improve the font please create an issue in the Github\n+ Abyssinica SIL project or contact us directly.

    \n

    Contact form

    \n-

    If the documentation and community fail to answer your question or need further help using the font, please contact us using the form on the Abyssinica SIL web site.

    \n+

    If the documentation and community fail to answer your question\n+ or need further help using the fonts, please contact us using the form\n+ on the Abyssinica SIL web site.

    \n \n \n " + }, + { + "sha": "023a7b7554af55084ff778407d323c44823c7f7e", + "filename": "fonts/sil/abyssinicasil/documentation/versions.html", + "status": "modified", + "additions": 26, + "deletions": 8, + "changes": 34, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fversions.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fversions.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fdocumentation%2Fversions.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -15,18 +15,36 @@\n

    Abyssinica SIL - Versions and Changes

    \n \n

    Announcement list

    \n-

    If you would like stay informed of updates to Abyssinica SIL and other SIL fonts, please subscribe to the SIL Font News Announcement List. For more information see About.

    \n-

    Our font announcements are also available through Twitter [@silfonts](https://twitter.com/silfonts).

    \n+

    If you would like stay informed of updates to Abyssinica SIL and\n+ other SIL fonts, please subscribe to the SIL\n+ Font News Announcement List. For more information see About.

    \n+

    Our font announcements are also available through X (formerly\n+ Twitter) @silfonts.

    \n

    Current versions

    \n-

    The latest version of the font is always available from the Abyssinica SIL download page as a .zip archive for all major platforms.

    \n-

    This font package is also available in the SIL software repository for Ubuntu. Users can subscribe to this software repository and get current versions and updates automatically.

    \n-

    Abyssinica SIL is also available through the TypeTuner Web service, which allows you to choose among the smart font features and download a font with those features preset. This enables them to work in many applications that do not make use of Graphite or OpenType Character Variants.

    \n+

    The latest version of the font is always available from the Abyssinica SIL\n+ download page as a .zip archive for all major platforms.

    \n+

    This font package is also available in the SIL software repository for\n+ Ubuntu. Users can subscribe to this software repository and get\n+ current versions and updates automatically.

    \n+

    Abyssinica SIL is also available through the TypeTuner Web\n+ service, which allows you to choose among the smart font features\n+ and download a font with those features preset. This enables them to\n+ work in many applications that do not make use of OpenType Character\n+ Variants.

    \n

    Previous versions

    \n-

    Previous versions remain available from our Previous Versions archive.

    \n+

    Previous versions remain available from our Previous\n+ Versions archive.

    \n

    Change history

    \n-

    A detailed list of changes for each version of the fonts is on the Version history page.

    \n+

    A detailed list of changes for each version of the fonts is on\n+ the Version history page.

    \n \n \n " + }, + { + "sha": "5a582faf7932a4600289cf46a1014977478015ff", + "filename": "fonts/sil/abyssinicasil/fontmanifest.json", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Ffontmanifest.json", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Ffontmanifest.json", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Ffontmanifest.json?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -11,6 +11,6 @@\n \"AbyssinicaSIL-Regular.woff\": { \"axes\": { \"ital\": 0, \"wght\": 400.0 }, \"packagepath\": \"web/AbyssinicaSIL-Regular.woff\" },\n \"AbyssinicaSIL-Regular.woff2\": { \"axes\": { \"ital\": 0, \"wght\": 400.0 }, \"packagepath\": \"web/AbyssinicaSIL-Regular.woff2\" }\n },\n- \"version\": \"2.201\"\n+ \"version\": \"2.300\"\n }\n }" + }, + { + "sha": "fa0894c05007c0e2dcafd01423b3dde9977a9ee0", + "filename": "fonts/sil/abyssinicasil/web/AbyssinicaSIL-Regular.woff", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fweb%2FAbyssinicaSIL-Regular.woff", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fweb%2FAbyssinicaSIL-Regular.woff", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fweb%2FAbyssinicaSIL-Regular.woff?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "0eb73b5aa87ad923ad9f0ab6f62bdf3925fba026", + "filename": "fonts/sil/abyssinicasil/web/AbyssinicaSIL-Regular.woff2", + "status": "modified", + "additions": 0, + "deletions": 0, + "changes": 0, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fweb%2FAbyssinicaSIL-Regular.woff2", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fweb%2FAbyssinicaSIL-Regular.woff2", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fweb%2FAbyssinicaSIL-Regular.woff2?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058" + }, + { + "sha": "4b81995c0d19b7494584f82622a3eb4be3a14449", + "filename": "fonts/sil/abyssinicasil/web/AbyssinicaSIL-webfont-example.css", + "status": "modified", + "additions": 2, + "deletions": 3, + "changes": 5, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fweb%2FAbyssinicaSIL-webfont-example.css", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fweb%2FAbyssinicaSIL-webfont-example.css", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fweb%2FAbyssinicaSIL-webfont-example.css?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,13 +1,12 @@\n /*\n AbyssinicaSIL-webfont-example.css\n-AbyssinicaSIL v2.100\n This file is part of Abyssinica SIL font family (https://software.sil.org/abyssinica/)\n-and is Copyright (c) 2000-2023 SIL International (https://www.sil.org/),\n+and is Copyright (c) 2000-2024 SIL Global (https://www.sil.org/),\n with Reserved Font Names \"Abyssinica\" and \"SIL\". Modern Gurage glyphs \n Copyright (c) 2021-2022 The Ge'ez Frontier Foundation. This Font Software is licensed\n under the SIL Open Font License, Version 1.1. You should have received a copy\n of the license along with this Font Software. If this is not the case, go to\n-(https://scripts.sil.org/OFL) for all the details including a FAQ.\n+(https://openfontlicense.org/) for all the details including a FAQ.\n */\n \n /* use Abyssinica SIL - Regular in .woff format */" + }, + { + "sha": "287b8ceba0c64d3174d3a90bc9e0756dab41a581", + "filename": "fonts/sil/abyssinicasil/web/AbyssinicaSIL-webfont-example.html", + "status": "modified", + "additions": 2, + "deletions": 3, + "changes": 5, + "blob_url": "https://github.com/silnrsi/fonts/blob/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fweb%2FAbyssinicaSIL-webfont-example.html", + "raw_url": "https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts%2Fsil%2Fabyssinicasil%2Fweb%2FAbyssinicaSIL-webfont-example.html", + "contents_url": "https://api.github.com/repos/silnrsi/fonts/contents/fonts%2Fsil%2Fabyssinicasil%2Fweb%2FAbyssinicaSIL-webfont-example.html?ref=044a10426cdabfa3dd3b13d040a56d4b70ea4058", + "patch": "@@ -1,14 +1,13 @@\n \n \n \n \t" + } + ] +} diff --git a/developer/src/kmc-package/test/fixtures/online/fonts.languagetechnology.org/#families.json b/developer/src/kmc-package/test/fixtures/online/fonts.languagetechnology.org/#families.json new file mode 100644 index 00000000000..2a96dde5b4a --- /dev/null +++ b/developer/src/kmc-package/test/fixtures/online/fonts.languagetechnology.org/#families.json @@ -0,0 +1,8353 @@ +{ +"aboriginalsans": { + "defaults": { + "ttf": "AboriginalSansREGULAR.ttf" + }, + "distributable": true, + "fallback": "notosanscanadianaboriginal", + "family": "Aboriginal Sans", + "familyid": "aboriginalsans", + "files": { + "AboriginalSansBOLD.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "AboriginalSansBOLD.ttf", "zippath": "AboriginalSansBOLD.ttf" }, + "AboriginalSansBOLDITALIC.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "AboriginalSansBOLDITALIC.ttf", "zippath": "AboriginalSansBOLDITALIC.ttf" }, + "AboriginalSansITALIC.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "AboriginalSansITALIC.ttf", "zippath": "AboriginalSansITALIC.ttf" }, + "AboriginalSansREGULAR.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "AboriginalSansREGULAR.ttf", "zippath": "AboriginalSansREGULAR.ttf" } + }, + "license": "GPL3", + "packageurl": "https://www.languagegeek.com/font/AboriginalSans.zip", + "siteurl": "https://www.languagegeek.com/font/fontdownload.html", + "version": "9.602", + "ziproot": "" +}, +"abyssinicasil": { + "defaults": { + "ttf": "AbyssinicaSIL-Regular.ttf", + "woff": "AbyssinicaSIL-Regular.woff", + "woff2": "AbyssinicaSIL-Regular.woff2" + }, + "distributable": true, + "family": "Abyssinica SIL", + "familyid": "abyssinicasil", + "files": { + "AbyssinicaSIL-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/abyssinicasil/AbyssinicaSIL-Regular.ttf", "packagepath": "AbyssinicaSIL-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/abyssinicasil/AbyssinicaSIL-Regular.ttf", "zippath": "AbyssinicaSIL-2.300/AbyssinicaSIL-Regular.ttf" }, + "AbyssinicaSIL-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/abyssinicasil/web/AbyssinicaSIL-Regular.woff", "packagepath": "web/AbyssinicaSIL-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/abyssinicasil/web/AbyssinicaSIL-Regular.woff", "zippath": "AbyssinicaSIL-2.300/web/AbyssinicaSIL-Regular.woff" }, + "AbyssinicaSIL-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/abyssinicasil/web/AbyssinicaSIL-Regular.woff2", "packagepath": "web/AbyssinicaSIL-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/abyssinicasil/web/AbyssinicaSIL-Regular.woff2", "zippath": "AbyssinicaSIL-2.300/web/AbyssinicaSIL-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/abyssinica/AbyssinicaSIL-2.300.zip", + "siteurl": "https://software.sil.org/abyssinica/", + "source": "SIL", + "status": "current", + "version": "2.300", + "ziproot": "AbyssinicaSIL-2.300" +}, +"akatab": { + "defaults": { + "ttf": "Akatab-Regular.ttf", + "woff": "Akatab-Regular.woff", + "woff2": "Akatab-Regular.woff2" + }, + "distributable": true, + "family": "Akatab", + "familyid": "akatab", + "files": { + "Akatab-Black.ttf": { "altfamily": "Akatab Black", "axes": { "ital": 0, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/Akatab-Black.ttf", "packagepath": "Akatab-Black.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/Akatab-Black.ttf", "zippath": "Akatab-2.000/Akatab-Black.ttf" }, + "Akatab-Black.woff": { "altfamily": "Akatab Black", "axes": { "ital": 0, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/web/Akatab-Black.woff", "packagepath": "web/Akatab-Black.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/web/Akatab-Black.woff", "zippath": "Akatab-2.000/web/Akatab-Black.woff" }, + "Akatab-Black.woff2": { "altfamily": "Akatab Black", "axes": { "ital": 0, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/web/Akatab-Black.woff2", "packagepath": "web/Akatab-Black.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/web/Akatab-Black.woff2", "zippath": "Akatab-2.000/web/Akatab-Black.woff2" }, + "Akatab-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/Akatab-Bold.ttf", "packagepath": "Akatab-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/Akatab-Bold.ttf", "zippath": "Akatab-2.000/Akatab-Bold.ttf" }, + "Akatab-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/web/Akatab-Bold.woff", "packagepath": "web/Akatab-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/web/Akatab-Bold.woff", "zippath": "Akatab-2.000/web/Akatab-Bold.woff" }, + "Akatab-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/web/Akatab-Bold.woff2", "packagepath": "web/Akatab-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/web/Akatab-Bold.woff2", "zippath": "Akatab-2.000/web/Akatab-Bold.woff2" }, + "Akatab-ExtraBold.ttf": { "altfamily": "Akatab ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/Akatab-ExtraBold.ttf", "packagepath": "Akatab-ExtraBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/Akatab-ExtraBold.ttf", "zippath": "Akatab-2.000/Akatab-ExtraBold.ttf" }, + "Akatab-ExtraBold.woff": { "altfamily": "Akatab ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/web/Akatab-ExtraBold.woff", "packagepath": "web/Akatab-ExtraBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/web/Akatab-ExtraBold.woff", "zippath": "Akatab-2.000/web/Akatab-ExtraBold.woff" }, + "Akatab-ExtraBold.woff2": { "altfamily": "Akatab ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/web/Akatab-ExtraBold.woff2", "packagepath": "web/Akatab-ExtraBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/web/Akatab-ExtraBold.woff2", "zippath": "Akatab-2.000/web/Akatab-ExtraBold.woff2" }, + "Akatab-Medium.ttf": { "altfamily": "Akatab Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/Akatab-Medium.ttf", "packagepath": "Akatab-Medium.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/Akatab-Medium.ttf", "zippath": "Akatab-2.000/Akatab-Medium.ttf" }, + "Akatab-Medium.woff": { "altfamily": "Akatab Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/web/Akatab-Medium.woff", "packagepath": "web/Akatab-Medium.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/web/Akatab-Medium.woff", "zippath": "Akatab-2.000/web/Akatab-Medium.woff" }, + "Akatab-Medium.woff2": { "altfamily": "Akatab Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/web/Akatab-Medium.woff2", "packagepath": "web/Akatab-Medium.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/web/Akatab-Medium.woff2", "zippath": "Akatab-2.000/web/Akatab-Medium.woff2" }, + "Akatab-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/Akatab-Regular.ttf", "packagepath": "Akatab-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/Akatab-Regular.ttf", "zippath": "Akatab-2.000/Akatab-Regular.ttf" }, + "Akatab-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/web/Akatab-Regular.woff", "packagepath": "web/Akatab-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/web/Akatab-Regular.woff", "zippath": "Akatab-2.000/web/Akatab-Regular.woff" }, + "Akatab-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/web/Akatab-Regular.woff2", "packagepath": "web/Akatab-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/web/Akatab-Regular.woff2", "zippath": "Akatab-2.000/web/Akatab-Regular.woff2" }, + "Akatab-SemiBold.ttf": { "altfamily": "Akatab SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/Akatab-SemiBold.ttf", "packagepath": "Akatab-SemiBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/Akatab-SemiBold.ttf", "zippath": "Akatab-2.000/Akatab-SemiBold.ttf" }, + "Akatab-SemiBold.woff": { "altfamily": "Akatab SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/web/Akatab-SemiBold.woff", "packagepath": "web/Akatab-SemiBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/web/Akatab-SemiBold.woff", "zippath": "Akatab-2.000/web/Akatab-SemiBold.woff" }, + "Akatab-SemiBold.woff2": { "altfamily": "Akatab SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/akatab/web/Akatab-SemiBold.woff2", "packagepath": "web/Akatab-SemiBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/akatab/web/Akatab-SemiBold.woff2", "zippath": "Akatab-2.000/web/Akatab-SemiBold.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/akatab/Akatab-2.000.zip", + "siteurl": "https://software.sil.org/akatab/", + "source": "SIL", + "status": "current", + "version": "3.000", + "ziproot": "Akatab-2.000" +}, +"alkalami": { + "defaults": { + "ttf": "Alkalami-Regular.ttf", + "woff": "Alkalami-Regular.woff", + "woff2": "Alkalami-Regular.woff2" + }, + "distributable": true, + "family": "Alkalami", + "familyid": "alkalami", + "files": { + "Alkalami-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/alkalami/Alkalami-Regular.ttf", "packagepath": "Alkalami-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/alkalami/Alkalami-Regular.ttf", "zippath": "Alkalami-3.000/Alkalami-Regular.ttf" }, + "Alkalami-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/alkalami/web/Alkalami-Regular.woff", "packagepath": "web/Alkalami-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/alkalami/web/Alkalami-Regular.woff", "zippath": "Alkalami-3.000/web/Alkalami-Regular.woff" }, + "Alkalami-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/alkalami/web/Alkalami-Regular.woff2", "packagepath": "web/Alkalami-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/alkalami/web/Alkalami-Regular.woff2", "zippath": "Alkalami-3.000/web/Alkalami-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/alkalami/Alkalami-3.000.zip", + "siteurl": "https://software.sil.org/alkalami/", + "source": "SIL", + "status": "current", + "version": "3.000", + "ziproot": "Alkalami-3.000" +}, +"alkalamilight": { + "distributable": true, + "fallback": "ruwudu", + "family": "Alkalami", + "familyid": "alkalamilight", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/alkalami/Alkalami-1.300.zip", + "siteurl": "https://software.sil.org/alkalami/", + "source": "SIL", + "status": "deprecated", + "version": "1.300", + "ziproot": "" +}, +"andika": { + "defaults": { + "ttf": "Andika-Regular.ttf", + "woff": "Andika-Regular.woff", + "woff2": "Andika-Regular.woff2" + }, + "distributable": true, + "family": "Andika", + "familyid": "andika", + "files": { + "Andika-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/andika/Andika-Bold.ttf", "packagepath": "Andika-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/andika/Andika-Bold.ttf", "zippath": "Andika-6.200/Andika-Bold.ttf" }, + "Andika-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/andika/web/Andika-Bold.woff", "packagepath": "web/Andika-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/andika/web/Andika-Bold.woff", "zippath": "Andika-6.200/web/Andika-Bold.woff" }, + "Andika-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/andika/web/Andika-Bold.woff2", "packagepath": "web/Andika-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/andika/web/Andika-Bold.woff2", "zippath": "Andika-6.200/web/Andika-Bold.woff2" }, + "Andika-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/andika/Andika-BoldItalic.ttf", "packagepath": "Andika-BoldItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/andika/Andika-BoldItalic.ttf", "zippath": "Andika-6.200/Andika-BoldItalic.ttf" }, + "Andika-BoldItalic.woff": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/andika/web/Andika-BoldItalic.woff", "packagepath": "web/Andika-BoldItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/andika/web/Andika-BoldItalic.woff", "zippath": "Andika-6.200/web/Andika-BoldItalic.woff" }, + "Andika-BoldItalic.woff2": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/andika/web/Andika-BoldItalic.woff2", "packagepath": "web/Andika-BoldItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/andika/web/Andika-BoldItalic.woff2", "zippath": "Andika-6.200/web/Andika-BoldItalic.woff2" }, + "Andika-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/andika/Andika-Italic.ttf", "packagepath": "Andika-Italic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/andika/Andika-Italic.ttf", "zippath": "Andika-6.200/Andika-Italic.ttf" }, + "Andika-Italic.woff": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/andika/web/Andika-Italic.woff", "packagepath": "web/Andika-Italic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/andika/web/Andika-Italic.woff", "zippath": "Andika-6.200/web/Andika-Italic.woff" }, + "Andika-Italic.woff2": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/andika/web/Andika-Italic.woff2", "packagepath": "web/Andika-Italic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/andika/web/Andika-Italic.woff2", "zippath": "Andika-6.200/web/Andika-Italic.woff2" }, + "Andika-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/andika/Andika-Regular.ttf", "packagepath": "Andika-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/andika/Andika-Regular.ttf", "zippath": "Andika-6.200/Andika-Regular.ttf" }, + "Andika-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/andika/web/Andika-Regular.woff", "packagepath": "web/Andika-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/andika/web/Andika-Regular.woff", "zippath": "Andika-6.200/web/Andika-Regular.woff" }, + "Andika-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/andika/web/Andika-Regular.woff2", "packagepath": "web/Andika-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/andika/web/Andika-Regular.woff2", "zippath": "Andika-6.200/web/Andika-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/andika/Andika-6.200.zip", + "siteurl": "https://software.sil.org/andika/", + "source": "SIL", + "status": "current", + "version": "6.200", + "ziproot": "Andika-6.200" +}, +"andikaafr": { + "distributable": true, + "fallback": "andika", + "family": "Andika Afr", + "familyid": "andikaafr", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"andikaam": { + "distributable": true, + "fallback": "andika", + "family": "Andika Am", + "familyid": "andikaam", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"andikaamarea": { + "defaults": { + "ttf": "AndikaAmArea-Regular.ttf" + }, + "distributable": true, + "fallback": "andika", + "family": "Andika AmArea", + "familyid": "andikaamarea", + "files": { + "AndikaAmArea-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "AndikaAmArea-6.200/AndikaAmArea-Bold.ttf", "zippath": "AndikaAmArea-6.200/AndikaAmArea-Bold.ttf" }, + "AndikaAmArea-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "AndikaAmArea-6.200/AndikaAmArea-BoldItalic.ttf", "zippath": "AndikaAmArea-6.200/AndikaAmArea-BoldItalic.ttf" }, + "AndikaAmArea-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "AndikaAmArea-6.200/AndikaAmArea-Italic.ttf", "zippath": "AndikaAmArea-6.200/AndikaAmArea-Italic.ttf" }, + "AndikaAmArea-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "AndikaAmArea-6.200/AndikaAmArea-Regular.ttf", "zippath": "AndikaAmArea-6.200/AndikaAmArea-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=Andika&pkg=AmArea", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"andikaapac": { + "distributable": true, + "fallback": "andika", + "family": "Andika APac", + "familyid": "andikaapac", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"andikabasic": { + "distributable": true, + "fallback": "andika", + "family": "Andika Basic", + "familyid": "andikabasic", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/andika/AndikaBasicR_10.zip", + "siteurl": "https://software.sil.org/andika/", + "source": "SIL", + "status": "deprecated", + "version": "1.000" +}, +"andikacompact": { + "defaults": { + "ttf": "AndikaCompact-Regular.ttf" + }, + "distributable": true, + "fallback": "andika", + "family": "Andika Compact", + "familyid": "andikacompact", + "files": { + "AndikaCompact-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "AndikaCompact-6.200/AndikaCompact-Bold.ttf", "zippath": "AndikaCompact-6.200/AndikaCompact-Bold.ttf" }, + "AndikaCompact-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "AndikaCompact-6.200/AndikaCompact-BoldItalic.ttf", "zippath": "AndikaCompact-6.200/AndikaCompact-BoldItalic.ttf" }, + "AndikaCompact-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "AndikaCompact-6.200/AndikaCompact-Italic.ttf", "zippath": "AndikaCompact-6.200/AndikaCompact-Italic.ttf" }, + "AndikaCompact-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "AndikaCompact-6.200/AndikaCompact-Regular.ttf", "zippath": "AndikaCompact-6.200/AndikaCompact-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=Andika&pkg=Compact", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"andikacyr": { + "distributable": true, + "fallback": "andika", + "family": "Andika Cyr", + "familyid": "andikacyr", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"andikacyre": { + "distributable": true, + "fallback": "andika", + "family": "Andika CyrE", + "familyid": "andikacyre", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"andikaeur": { + "distributable": true, + "fallback": "andika", + "family": "Andika Eur", + "familyid": "andikaeur", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"andikamali": { + "defaults": { + "ttf": "AndikaMali-Regular.ttf" + }, + "distributable": true, + "fallback": "andika", + "family": "Andika Mali", + "familyid": "andikamali", + "files": { + "AndikaMali-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "AndikaMali-6.200/AndikaMali-Bold.ttf", "zippath": "AndikaMali-6.200/AndikaMali-Bold.ttf" }, + "AndikaMali-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "AndikaMali-6.200/AndikaMali-BoldItalic.ttf", "zippath": "AndikaMali-6.200/AndikaMali-BoldItalic.ttf" }, + "AndikaMali-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "AndikaMali-6.200/AndikaMali-Italic.ttf", "zippath": "AndikaMali-6.200/AndikaMali-Italic.ttf" }, + "AndikaMali-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "AndikaMali-6.200/AndikaMali-Regular.ttf", "zippath": "AndikaMali-6.200/AndikaMali-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=Andika&pkg=Mali", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"andikanewbasic": { + "distributable": true, + "fallback": "andika", + "family": "Andika New Basic", + "familyid": "andikanewbasic", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/andika/AndikaNewBasic-5.500-web.zip", + "siteurl": "https://software.sil.org/andika/", + "source": "SIL", + "status": "deprecated", + "version": "5.500" +}, +"andikanewbasicamarea": { + "distributable": true, + "fallback": "andikaamarea", + "family": "Andika New Basic AmArea", + "familyid": "andikanewbasicamarea" +}, +"andikaphon": { + "distributable": true, + "fallback": "andika", + "family": "Andika Phon", + "familyid": "andikaphon", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"andikaseb": { + "distributable": true, + "fallback": "andika", + "family": "Andika SEB", + "familyid": "andikaseb" +}, +"andikatat": { + "defaults": { + "ttf": "AndikaTat-Regular.ttf" + }, + "distributable": true, + "fallback": "andika", + "family": "Andika Tat", + "familyid": "andikatat", + "files": { + "AndikaTat-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "AndikaTat-6.200/AndikaTat-Bold.ttf", "zippath": "AndikaTat-6.200/AndikaTat-Bold.ttf" }, + "AndikaTat-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "AndikaTat-6.200/AndikaTat-BoldItalic.ttf", "zippath": "AndikaTat-6.200/AndikaTat-BoldItalic.ttf" }, + "AndikaTat-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "AndikaTat-6.200/AndikaTat-Italic.ttf", "zippath": "AndikaTat-6.200/AndikaTat-Italic.ttf" }, + "AndikaTat-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "AndikaTat-6.200/AndikaTat-Regular.ttf", "zippath": "AndikaTat-6.200/AndikaTat-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=Andika&pkg=Tat", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"andikaviet": { + "distributable": true, + "fallback": "andika", + "family": "Andika Viet", + "familyid": "andikaviet", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"angsananew": { + "distributable": false, + "fallback": "sarabun", + "family": "Angsana New", + "familyid": "angsananew", + "license": "proprietary", + "source": "Microsoft" +}, +"annapurnasil": { + "defaults": { + "ttf": "AnnapurnaSIL-Regular.ttf", + "woff": "AnnapurnaSIL-Regular.woff", + "woff2": "AnnapurnaSIL-Regular.woff2" + }, + "distributable": true, + "family": "Annapurna SIL", + "familyid": "annapurnasil", + "files": { + "AnnapurnaSIL-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/annapurnasil/AnnapurnaSIL-Bold.ttf", "packagepath": "AnnapurnaSIL-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/annapurnasil/AnnapurnaSIL-Bold.ttf", "zippath": "AnnapurnaSIL-2.100/AnnapurnaSIL-Bold.ttf" }, + "AnnapurnaSIL-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/annapurnasil/web/AnnapurnaSIL-Bold.woff", "packagepath": "web/AnnapurnaSIL-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/annapurnasil/web/AnnapurnaSIL-Bold.woff", "zippath": "AnnapurnaSIL-2.100/web/AnnapurnaSIL-Bold.woff" }, + "AnnapurnaSIL-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/annapurnasil/web/AnnapurnaSIL-Bold.woff2", "packagepath": "web/AnnapurnaSIL-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/annapurnasil/web/AnnapurnaSIL-Bold.woff2", "zippath": "AnnapurnaSIL-2.100/web/AnnapurnaSIL-Bold.woff2" }, + "AnnapurnaSIL-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/annapurnasil/AnnapurnaSIL-Regular.ttf", "packagepath": "AnnapurnaSIL-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/annapurnasil/AnnapurnaSIL-Regular.ttf", "zippath": "AnnapurnaSIL-2.100/AnnapurnaSIL-Regular.ttf" }, + "AnnapurnaSIL-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/annapurnasil/web/AnnapurnaSIL-Regular.woff", "packagepath": "web/AnnapurnaSIL-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/annapurnasil/web/AnnapurnaSIL-Regular.woff", "zippath": "AnnapurnaSIL-2.100/web/AnnapurnaSIL-Regular.woff" }, + "AnnapurnaSIL-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/annapurnasil/web/AnnapurnaSIL-Regular.woff2", "packagepath": "web/AnnapurnaSIL-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/annapurnasil/web/AnnapurnaSIL-Regular.woff2", "zippath": "AnnapurnaSIL-2.100/web/AnnapurnaSIL-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/annapurna/AnnapurnaSIL-2.100.zip", + "siteurl": "https://software.sil.org/annapurna/", + "source": "SIL", + "status": "current", + "version": "2.100", + "ziproot": "AnnapurnaSIL-2.100" +}, +"annapurnasilkham": { + "distributable": true, + "fallback": "annapurnasil", + "family": "Annapurna SIL Kham", + "familyid": "annapurnasilkham" +}, +"annapurnasilnepal": { + "defaults": { + "ttf": "AnnapurnaSILNepal-Regular.ttf" + }, + "distributable": true, + "fallback": "annapurnasil", + "family": "Annapurna SIL Nepal", + "familyid": "annapurnasilnepal", + "files": { + "AnnapurnaSILNepal-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/annapurnasilnepal/AnnapurnaSILNepal-Bold.ttf", "packagepath": "AnnapurnaSILNepal-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/annapurnasilnepal/AnnapurnaSILNepal-Bold.ttf", "zippath": "AnnapurnaSILNepal-2.100/AnnapurnaSILNepal-Bold.ttf" }, + "AnnapurnaSILNepal-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/annapurnasilnepal/AnnapurnaSILNepal-Regular.ttf", "packagepath": "AnnapurnaSILNepal-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/annapurnasilnepal/AnnapurnaSILNepal-Regular.ttf", "zippath": "AnnapurnaSILNepal-2.100/AnnapurnaSILNepal-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/annapurna/AnnapurnaSILNepal-2.100.zip", + "siteurl": "https://software.sil.org/annapurna/", + "source": "SIL", + "status": "current", + "version": "2.100", + "ziproot": "AnnapurnaSILNepal-2.100" +}, +"apparatussil": { + "distributable": true, + "fallback": "charissil", + "family": "Apparatus SIL", + "familyid": "apparatussil", + "license": "OFL", + "packageurl": "https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=AppSIL1.0.zip&filename=ApparatusSIL.zip", + "siteurl": "https://scripts.sil.org/ApparatusSIL", + "source": "SIL", + "status": "deprecated", + "version": "1.000" +}, +"arial": { + "distributable": false, + "fallback": "andika", + "family": "Arial", + "familyid": "arial", + "license": "proprietary", + "source": "Microsoft" +}, +"arialblack": { + "distributable": false, + "fallback": "andika", + "family": "Arial Black", + "familyid": "arialblack", + "license": "proprietary", + "source": "Microsoft" +}, +"arialunicodems": { + "distributable": false, + "fallback": "andika", + "family": "Arial Unicode MS", + "familyid": "arialunicodems", + "license": "proprietary", + "source": "Microsoft" +}, +"awaminastaliq": { + "defaults": { + "ttf": "AwamiNastaliq-Regular.ttf", + "woff": "AwamiNastaliq-Regular.woff", + "woff2": "AwamiNastaliq-Regular.woff2" + }, + "distributable": true, + "family": "Awami Nastaliq", + "familyid": "awaminastaliq", + "files": { + "AwamiNastaliq-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/awaminastaliq/AwamiNastaliq-Bold.ttf", "packagepath": "AwamiNastaliq-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/awaminastaliq/AwamiNastaliq-Bold.ttf", "zippath": "AwamiNastaliq-3.300/AwamiNastaliq-Bold.ttf" }, + "AwamiNastaliq-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/awaminastaliq/web/AwamiNastaliq-Bold.woff", "packagepath": "web/AwamiNastaliq-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/awaminastaliq/web/AwamiNastaliq-Bold.woff", "zippath": "AwamiNastaliq-3.300/web/AwamiNastaliq-Bold.woff" }, + "AwamiNastaliq-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/awaminastaliq/web/AwamiNastaliq-Bold.woff2", "packagepath": "web/AwamiNastaliq-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/awaminastaliq/web/AwamiNastaliq-Bold.woff2", "zippath": "AwamiNastaliq-3.300/web/AwamiNastaliq-Bold.woff2" }, + "AwamiNastaliq-ExtraBold.ttf": { "altfamily": "Awami Nastaliq ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/awaminastaliq/AwamiNastaliq-ExtraBold.ttf", "packagepath": "AwamiNastaliq-ExtraBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/awaminastaliq/AwamiNastaliq-ExtraBold.ttf", "zippath": "AwamiNastaliq-3.300/AwamiNastaliq-ExtraBold.ttf" }, + "AwamiNastaliq-ExtraBold.woff": { "altfamily": "Awami Nastaliq ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/awaminastaliq/web/AwamiNastaliq-ExtraBold.woff", "packagepath": "web/AwamiNastaliq-ExtraBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/awaminastaliq/web/AwamiNastaliq-ExtraBold.woff", "zippath": "AwamiNastaliq-3.300/web/AwamiNastaliq-ExtraBold.woff" }, + "AwamiNastaliq-ExtraBold.woff2": { "altfamily": "Awami Nastaliq ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/awaminastaliq/web/AwamiNastaliq-ExtraBold.woff2", "packagepath": "web/AwamiNastaliq-ExtraBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/awaminastaliq/web/AwamiNastaliq-ExtraBold.woff2", "zippath": "AwamiNastaliq-3.300/web/AwamiNastaliq-ExtraBold.woff2" }, + "AwamiNastaliq-Medium.ttf": { "altfamily": "Awami Nastaliq Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/awaminastaliq/AwamiNastaliq-Medium.ttf", "packagepath": "AwamiNastaliq-Medium.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/awaminastaliq/AwamiNastaliq-Medium.ttf", "zippath": "AwamiNastaliq-3.300/AwamiNastaliq-Medium.ttf" }, + "AwamiNastaliq-Medium.woff": { "altfamily": "Awami Nastaliq Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/awaminastaliq/web/AwamiNastaliq-Medium.woff", "packagepath": "web/AwamiNastaliq-Medium.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/awaminastaliq/web/AwamiNastaliq-Medium.woff", "zippath": "AwamiNastaliq-3.300/web/AwamiNastaliq-Medium.woff" }, + "AwamiNastaliq-Medium.woff2": { "altfamily": "Awami Nastaliq Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/awaminastaliq/web/AwamiNastaliq-Medium.woff2", "packagepath": "web/AwamiNastaliq-Medium.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/awaminastaliq/web/AwamiNastaliq-Medium.woff2", "zippath": "AwamiNastaliq-3.300/web/AwamiNastaliq-Medium.woff2" }, + "AwamiNastaliq-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/awaminastaliq/AwamiNastaliq-Regular.ttf", "packagepath": "AwamiNastaliq-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/awaminastaliq/AwamiNastaliq-Regular.ttf", "zippath": "AwamiNastaliq-3.300/AwamiNastaliq-Regular.ttf" }, + "AwamiNastaliq-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/awaminastaliq/web/AwamiNastaliq-Regular.woff", "packagepath": "web/AwamiNastaliq-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/awaminastaliq/web/AwamiNastaliq-Regular.woff", "zippath": "AwamiNastaliq-3.300/web/AwamiNastaliq-Regular.woff" }, + "AwamiNastaliq-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/awaminastaliq/web/AwamiNastaliq-Regular.woff2", "packagepath": "web/AwamiNastaliq-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/awaminastaliq/web/AwamiNastaliq-Regular.woff2", "zippath": "AwamiNastaliq-3.300/web/AwamiNastaliq-Regular.woff2" }, + "AwamiNastaliq-SemiBold.ttf": { "altfamily": "Awami Nastaliq SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/awaminastaliq/AwamiNastaliq-SemiBold.ttf", "packagepath": "AwamiNastaliq-SemiBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/awaminastaliq/AwamiNastaliq-SemiBold.ttf", "zippath": "AwamiNastaliq-3.300/AwamiNastaliq-SemiBold.ttf" }, + "AwamiNastaliq-SemiBold.woff": { "altfamily": "Awami Nastaliq SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/awaminastaliq/web/AwamiNastaliq-SemiBold.woff", "packagepath": "web/AwamiNastaliq-SemiBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/awaminastaliq/web/AwamiNastaliq-SemiBold.woff", "zippath": "AwamiNastaliq-3.300/web/AwamiNastaliq-SemiBold.woff" }, + "AwamiNastaliq-SemiBold.woff2": { "altfamily": "Awami Nastaliq SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/awaminastaliq/web/AwamiNastaliq-SemiBold.woff2", "packagepath": "web/AwamiNastaliq-SemiBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/awaminastaliq/web/AwamiNastaliq-SemiBold.woff2", "zippath": "AwamiNastaliq-3.300/web/AwamiNastaliq-SemiBold.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/awami/AwamiNastaliq-3.300.zip", + "siteurl": "https://software.sil.org/awami/", + "source": "SIL", + "status": "current", + "version": "3.300", + "ziproot": "AwamiNastaliq-3.300" +}, +"badami": { + "defaults": { + "ttf": "Badami-Regular.ttf", + "woff": "Badami-Regular.woff", + "woff2": "Badami-Regular.woff2" + }, + "distributable": true, + "family": "Badami", + "familyid": "badami", + "files": { + "Badami-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/badami/Badami-Bold.ttf", "packagepath": "Badami-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/badami/Badami-Bold.ttf", "zippath": "nlci-knda-badami-0.400/Badami-Bold.ttf" }, + "Badami-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/badami/woff/Badami-Bold.woff", "packagepath": "woff/Badami-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/badami/woff/Badami-Bold.woff", "zippath": "nlci-knda-badami-0.400/woff/Badami-Bold.woff" }, + "Badami-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/badami/woff/Badami-Bold.woff2", "packagepath": "woff/Badami-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/badami/woff/Badami-Bold.woff2", "zippath": "nlci-knda-badami-0.400/woff/Badami-Bold.woff2" }, + "Badami-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/badami/Badami-BoldItalic.ttf", "packagepath": "Badami-BoldItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/badami/Badami-BoldItalic.ttf", "zippath": "nlci-knda-badami-0.400/Badami-BoldItalic.ttf" }, + "Badami-BoldItalic.woff": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/badami/woff/Badami-BoldItalic.woff", "packagepath": "woff/Badami-BoldItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/badami/woff/Badami-BoldItalic.woff", "zippath": "nlci-knda-badami-0.400/woff/Badami-BoldItalic.woff" }, + "Badami-BoldItalic.woff2": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/badami/woff/Badami-BoldItalic.woff2", "packagepath": "woff/Badami-BoldItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/badami/woff/Badami-BoldItalic.woff2", "zippath": "nlci-knda-badami-0.400/woff/Badami-BoldItalic.woff2" }, + "Badami-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/badami/Badami-Italic.ttf", "packagepath": "Badami-Italic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/badami/Badami-Italic.ttf", "zippath": "nlci-knda-badami-0.400/Badami-Italic.ttf" }, + "Badami-Italic.woff": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/badami/woff/Badami-Italic.woff", "packagepath": "woff/Badami-Italic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/badami/woff/Badami-Italic.woff", "zippath": "nlci-knda-badami-0.400/woff/Badami-Italic.woff" }, + "Badami-Italic.woff2": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/badami/woff/Badami-Italic.woff2", "packagepath": "woff/Badami-Italic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/badami/woff/Badami-Italic.woff2", "zippath": "nlci-knda-badami-0.400/woff/Badami-Italic.woff2" }, + "Badami-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/badami/Badami-Regular.ttf", "packagepath": "Badami-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/badami/Badami-Regular.ttf", "zippath": "nlci-knda-badami-0.400/Badami-Regular.ttf" }, + "Badami-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/badami/woff/Badami-Regular.woff", "packagepath": "woff/Badami-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/badami/woff/Badami-Regular.woff", "zippath": "nlci-knda-badami-0.400/woff/Badami-Regular.woff" }, + "Badami-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/badami/woff/Badami-Regular.woff2", "packagepath": "woff/Badami-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/badami/woff/Badami-Regular.woff2", "zippath": "nlci-knda-badami-0.400/woff/Badami-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://github.com/nlci/knda-font-badami/releases/download/v0.400/nlci-knda-badami-0.400.zip", + "siteurl": "https://github.com/nlci/knda-font-badami", + "source": "NLCI", + "status": "current", + "version": "0.400", + "ziproot": "nlci-knda-badami-0.400" +}, +"bailey": { + "defaults": { + "ttf": "Bailey-Regular.ttf", + "woff2": "Bailey-Regular.woff2" + }, + "distributable": true, + "family": "Bailey", + "familyid": "bailey", + "files": { + "Bailey-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/bailey/Bailey-Bold.ttf", "packagepath": "Bailey-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/bailey/Bailey-Bold.ttf", "zippath": "Bailey-0.202/Bailey-Bold.ttf" }, + "Bailey-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/bailey/web/Bailey-Bold.woff2", "packagepath": "web/Bailey-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/bailey/web/Bailey-Bold.woff2", "zippath": "Bailey-0.202/web/Bailey-Bold.woff2" }, + "Bailey-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/bailey/Bailey-Regular.ttf", "packagepath": "Bailey-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/bailey/Bailey-Regular.ttf", "zippath": "Bailey-0.202/Bailey-Regular.ttf" }, + "Bailey-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/bailey/web/Bailey-Regular.woff2", "packagepath": "web/Bailey-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/bailey/web/Bailey-Regular.woff2", "zippath": "Bailey-0.202/web/Bailey-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://github.com/nlci/mlym-font-bailey/releases/download/v0.202/Bailey-0.202.zip", + "siteurl": "https://github.com/nlci/mlym-font-bailey", + "source": "NLCI", + "status": "current", + "version": "0.202", + "ziproot": "Bailey-0.202" +}, +"bjcree2uni": { + "defaults": { + "ttf": "bjcrus2.ttf" + }, + "distributable": true, + "fallback": "notosanscanadianaboriginal", + "family": "BJCree2 UNI", + "familyid": "bjcree2uni", + "files": { + "bjcrus2.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "bjcrus2.ttf" } + }, + "license": "shareware", + "siteurl": "https://www.eastcree.org/cree/en/resources/how-to/cree-fonts/", + "version": "2.200" +}, +"bjcreeuni": { + "defaults": { + "ttf": "bjcrus.ttf" + }, + "distributable": true, + "fallback": "notosanscanadianaboriginal", + "family": "BJCree UNI", + "familyid": "bjcreeuni", + "files": { + "bjcrus.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "bjcrus.ttf" } + }, + "license": "shareware", + "siteurl": "https://www.eastcree.org/cree/en/resources/how-to/cree-fonts/", + "version": "2.000" +}, +"calibri": { + "distributable": false, + "fallback": "charissil", + "family": "Calibri", + "familyid": "calibri", + "license": "proprietary", + "source": "Microsoft" +}, +"cambria": { + "distributable": false, + "fallback": "charissil", + "family": "Cambria", + "familyid": "cambria", + "license": "proprietary", + "source": "Microsoft" +}, +"charissil": { + "defaults": { + "ttf": "CharisSIL-Regular.ttf", + "woff": "CharisSIL-Regular.woff", + "woff2": "CharisSIL-Regular.woff2" + }, + "distributable": true, + "family": "Charis SIL", + "familyid": "charissil", + "files": { + "CharisSIL-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/charissil/CharisSIL-Bold.ttf", "packagepath": "CharisSIL-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/charissil/CharisSIL-Bold.ttf", "zippath": "CharisSIL-6.200/CharisSIL-Bold.ttf" }, + "CharisSIL-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/charissil/web/CharisSIL-Bold.woff", "packagepath": "web/CharisSIL-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/charissil/web/CharisSIL-Bold.woff", "zippath": "CharisSIL-6.200/web/CharisSIL-Bold.woff" }, + "CharisSIL-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/charissil/web/CharisSIL-Bold.woff2", "packagepath": "web/CharisSIL-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/charissil/web/CharisSIL-Bold.woff2", "zippath": "CharisSIL-6.200/web/CharisSIL-Bold.woff2" }, + "CharisSIL-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/charissil/CharisSIL-BoldItalic.ttf", "packagepath": "CharisSIL-BoldItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/charissil/CharisSIL-BoldItalic.ttf", "zippath": "CharisSIL-6.200/CharisSIL-BoldItalic.ttf" }, + "CharisSIL-BoldItalic.woff": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/charissil/web/CharisSIL-BoldItalic.woff", "packagepath": "web/CharisSIL-BoldItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/charissil/web/CharisSIL-BoldItalic.woff", "zippath": "CharisSIL-6.200/web/CharisSIL-BoldItalic.woff" }, + "CharisSIL-BoldItalic.woff2": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/charissil/web/CharisSIL-BoldItalic.woff2", "packagepath": "web/CharisSIL-BoldItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/charissil/web/CharisSIL-BoldItalic.woff2", "zippath": "CharisSIL-6.200/web/CharisSIL-BoldItalic.woff2" }, + "CharisSIL-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/charissil/CharisSIL-Italic.ttf", "packagepath": "CharisSIL-Italic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/charissil/CharisSIL-Italic.ttf", "zippath": "CharisSIL-6.200/CharisSIL-Italic.ttf" }, + "CharisSIL-Italic.woff": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/charissil/web/CharisSIL-Italic.woff", "packagepath": "web/CharisSIL-Italic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/charissil/web/CharisSIL-Italic.woff", "zippath": "CharisSIL-6.200/web/CharisSIL-Italic.woff" }, + "CharisSIL-Italic.woff2": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/charissil/web/CharisSIL-Italic.woff2", "packagepath": "web/CharisSIL-Italic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/charissil/web/CharisSIL-Italic.woff2", "zippath": "CharisSIL-6.200/web/CharisSIL-Italic.woff2" }, + "CharisSIL-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/charissil/CharisSIL-Regular.ttf", "packagepath": "CharisSIL-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/charissil/CharisSIL-Regular.ttf", "zippath": "CharisSIL-6.200/CharisSIL-Regular.ttf" }, + "CharisSIL-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/charissil/web/CharisSIL-Regular.woff", "packagepath": "web/CharisSIL-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/charissil/web/CharisSIL-Regular.woff", "zippath": "CharisSIL-6.200/web/CharisSIL-Regular.woff" }, + "CharisSIL-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/charissil/web/CharisSIL-Regular.woff2", "packagepath": "web/CharisSIL-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/charissil/web/CharisSIL-Regular.woff2", "zippath": "CharisSIL-6.200/web/CharisSIL-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/charis/CharisSIL-6.200.zip", + "siteurl": "https://software.sil.org/charis/", + "source": "SIL", + "status": "current", + "version": "6.200", + "ziproot": "CharisSIL-6.200" +}, +"charissilafr": { + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL Afr", + "familyid": "charissilafr", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"charissilam": { + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL Am", + "familyid": "charissilam", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"charissilamarea": { + "defaults": { + "ttf": "CharisSILAmArea-Regular.ttf" + }, + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL AmArea", + "familyid": "charissilamarea", + "files": { + "CharisSILAmArea-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "CharisSILAmArea-6.200/CharisSILAmArea-Bold.ttf", "zippath": "CharisSILAmArea-6.200/CharisSILAmArea-Bold.ttf" }, + "CharisSILAmArea-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "CharisSILAmArea-6.200/CharisSILAmArea-BoldItalic.ttf", "zippath": "CharisSILAmArea-6.200/CharisSILAmArea-BoldItalic.ttf" }, + "CharisSILAmArea-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "CharisSILAmArea-6.200/CharisSILAmArea-Italic.ttf", "zippath": "CharisSILAmArea-6.200/CharisSILAmArea-Italic.ttf" }, + "CharisSILAmArea-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "CharisSILAmArea-6.200/CharisSILAmArea-Regular.ttf", "zippath": "CharisSILAmArea-6.200/CharisSILAmArea-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=CharisSIL&pkg=AmArea", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"charissilapac": { + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL APac", + "familyid": "charissilapac", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"charissilcompact": { + "defaults": { + "ttf": "CharisSILCompact-Regular.ttf" + }, + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL Compact", + "familyid": "charissilcompact", + "files": { + "CharisSILCompact-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "CharisSILCompact-6.200/CharisSILCompact-Bold.ttf", "zippath": "CharisSILCompact-6.200/CharisSILCompact-Bold.ttf" }, + "CharisSILCompact-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "CharisSILCompact-6.200/CharisSILCompact-BoldItalic.ttf", "zippath": "CharisSILCompact-6.200/CharisSILCompact-BoldItalic.ttf" }, + "CharisSILCompact-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "CharisSILCompact-6.200/CharisSILCompact-Italic.ttf", "zippath": "CharisSILCompact-6.200/CharisSILCompact-Italic.ttf" }, + "CharisSILCompact-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "CharisSILCompact-6.200/CharisSILCompact-Regular.ttf", "zippath": "CharisSILCompact-6.200/CharisSILCompact-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=CharisSIL&pkg=Compact", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"charissilcyr": { + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL Cyr", + "familyid": "charissilcyr", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"charissilcyre": { + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL CyrE", + "familyid": "charissilcyre", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"charissileng": { + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL Eng", + "familyid": "charissileng" +}, +"charissileur": { + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL Eur", + "familyid": "charissileur", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"charissilghana": { + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL Ghana", + "familyid": "charissilghana" +}, +"charissilguinea": { + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL Guinea", + "familyid": "charissilguinea" +}, +"charissilliteracy": { + "defaults": { + "ttf": "CharisSILLiteracy-Regular.ttf" + }, + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL Literacy", + "familyid": "charissilliteracy", + "files": { + "CharisSILLiteracy-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "CharisSILLiteracy-6.200/CharisSILLiteracy-Bold.ttf", "zippath": "CharisSILLiteracy-6.200/CharisSILLiteracy-Bold.ttf" }, + "CharisSILLiteracy-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "CharisSILLiteracy-6.200/CharisSILLiteracy-BoldItalic.ttf", "zippath": "CharisSILLiteracy-6.200/CharisSILLiteracy-BoldItalic.ttf" }, + "CharisSILLiteracy-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "CharisSILLiteracy-6.200/CharisSILLiteracy-Italic.ttf", "zippath": "CharisSILLiteracy-6.200/CharisSILLiteracy-Italic.ttf" }, + "CharisSILLiteracy-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "CharisSILLiteracy-6.200/CharisSILLiteracy-Regular.ttf", "zippath": "CharisSILLiteracy-6.200/CharisSILLiteracy-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=CharisSIL&pkg=Literacy", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"charissilliteracyamarea": { + "defaults": { + "ttf": "CharisSILLiteracyAmArea-Regular.ttf" + }, + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL Literacy AmArea", + "familyid": "charissilliteracyamarea", + "files": { + "CharisSILLiteracyAmArea-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "CharisSILLiteracyAmArea-6.200/CharisSILLiteracyAmArea-Bold.ttf", "zippath": "CharisSILLiteracyAmArea-6.200/CharisSILLiteracyAmArea-Bold.ttf" }, + "CharisSILLiteracyAmArea-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "CharisSILLiteracyAmArea-6.200/CharisSILLiteracyAmArea-BoldItalic.ttf", "zippath": "CharisSILLiteracyAmArea-6.200/CharisSILLiteracyAmArea-BoldItalic.ttf" }, + "CharisSILLiteracyAmArea-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "CharisSILLiteracyAmArea-6.200/CharisSILLiteracyAmArea-Italic.ttf", "zippath": "CharisSILLiteracyAmArea-6.200/CharisSILLiteracyAmArea-Italic.ttf" }, + "CharisSILLiteracyAmArea-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "CharisSILLiteracyAmArea-6.200/CharisSILLiteracyAmArea-Regular.ttf", "zippath": "CharisSILLiteracyAmArea-6.200/CharisSILLiteracyAmArea-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=CharisSIL&pkg=LiteracyAmArea", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"charissilliteracycompact": { + "defaults": { + "ttf": "CharisSILLiteracyCompact-Regular.ttf" + }, + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL Literacy Compact", + "familyid": "charissilliteracycompact", + "files": { + "CharisSILLiteracyCompact-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "CharisSILLiteracyCompact-6.200/CharisSILLiteracyCompact-Bold.ttf", "zippath": "CharisSILLiteracyCompact-6.200/CharisSILLiteracyCompact-Bold.ttf" }, + "CharisSILLiteracyCompact-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "CharisSILLiteracyCompact-6.200/CharisSILLiteracyCompact-BoldItalic.ttf", "zippath": "CharisSILLiteracyCompact-6.200/CharisSILLiteracyCompact-BoldItalic.ttf" }, + "CharisSILLiteracyCompact-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "CharisSILLiteracyCompact-6.200/CharisSILLiteracyCompact-Italic.ttf", "zippath": "CharisSILLiteracyCompact-6.200/CharisSILLiteracyCompact-Italic.ttf" }, + "CharisSILLiteracyCompact-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "CharisSILLiteracyCompact-6.200/CharisSILLiteracyCompact-Regular.ttf", "zippath": "CharisSILLiteracyCompact-6.200/CharisSILLiteracyCompact-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=CharisSIL&pkg=LiteracyCompact", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"charissilmali": { + "defaults": { + "ttf": "CharisSILMali-Regular.ttf" + }, + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL Mali", + "familyid": "charissilmali", + "files": { + "CharisSILMali-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "CharisSILMali-6.200/CharisSILMali-Bold.ttf", "zippath": "CharisSILMali-6.200/CharisSILMali-Bold.ttf" }, + "CharisSILMali-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "CharisSILMali-6.200/CharisSILMali-BoldItalic.ttf", "zippath": "CharisSILMali-6.200/CharisSILMali-BoldItalic.ttf" }, + "CharisSILMali-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "CharisSILMali-6.200/CharisSILMali-Italic.ttf", "zippath": "CharisSILMali-6.200/CharisSILMali-Italic.ttf" }, + "CharisSILMali-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "CharisSILMali-6.200/CharisSILMali-Regular.ttf", "zippath": "CharisSILMali-6.200/CharisSILMali-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=CharisSIL&pkg=Mali", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"charissilphon": { + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL Phon", + "familyid": "charissilphon", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"charissiltat": { + "defaults": { + "ttf": "CharisSILTat-Regular.ttf" + }, + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL Tat", + "familyid": "charissiltat", + "files": { + "CharisSILTat-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "CharisSILTat-6.200/CharisSILTat-Bold.ttf", "zippath": "CharisSILTat-6.200/CharisSILTat-Bold.ttf" }, + "CharisSILTat-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "CharisSILTat-6.200/CharisSILTat-BoldItalic.ttf", "zippath": "CharisSILTat-6.200/CharisSILTat-BoldItalic.ttf" }, + "CharisSILTat-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "CharisSILTat-6.200/CharisSILTat-Italic.ttf", "zippath": "CharisSILTat-6.200/CharisSILTat-Italic.ttf" }, + "CharisSILTat-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "CharisSILTat-6.200/CharisSILTat-Regular.ttf", "zippath": "CharisSILTat-6.200/CharisSILTat-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=CharisSIL&pkg=Tat", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"charissilviet": { + "distributable": true, + "fallback": "charissil", + "family": "Charis SIL Viet", + "familyid": "charissilviet", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"couriernew": { + "distributable": false, + "fallback": "charissil", + "family": "Courier New", + "familyid": "couriernew", + "license": "proprietary", + "source": "Microsoft" +}, +"cr-udom": { + "distributable": true, + "fallback": "payaplanna", + "family": "Cr-Udom", + "familyid": "cr-udom", + "license": "OFL", + "source": "SIL", + "status": "deprecated" +}, +"daibannasil": { + "defaults": { + "ttf": "DaiBannaSIL-Regular.ttf", + "woff": "DaiBannaSIL-Regular.woff", + "woff2": "DaiBannaSIL-Regular.woff2" + }, + "distributable": true, + "family": "Dai Banna SIL", + "familyid": "daibannasil", + "files": { + "DaiBannaSIL-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/DaiBannaSIL-Bold.ttf", "packagepath": "DaiBannaSIL-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/DaiBannaSIL-Bold.ttf", "zippath": "DaiBannaSIL-4.000/DaiBannaSIL-Bold.ttf" }, + "DaiBannaSIL-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-Bold.woff", "packagepath": "web/DaiBannaSIL-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-Bold.woff", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-Bold.woff" }, + "DaiBannaSIL-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-Bold.woff2", "packagepath": "web/DaiBannaSIL-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-Bold.woff2", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-Bold.woff2" }, + "DaiBannaSIL-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/DaiBannaSIL-BoldItalic.ttf", "packagepath": "DaiBannaSIL-BoldItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/DaiBannaSIL-BoldItalic.ttf", "zippath": "DaiBannaSIL-4.000/DaiBannaSIL-BoldItalic.ttf" }, + "DaiBannaSIL-BoldItalic.woff": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-BoldItalic.woff", "packagepath": "web/DaiBannaSIL-BoldItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-BoldItalic.woff", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-BoldItalic.woff" }, + "DaiBannaSIL-BoldItalic.woff2": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-BoldItalic.woff2", "packagepath": "web/DaiBannaSIL-BoldItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-BoldItalic.woff2", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-BoldItalic.woff2" }, + "DaiBannaSIL-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/DaiBannaSIL-Italic.ttf", "packagepath": "DaiBannaSIL-Italic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/DaiBannaSIL-Italic.ttf", "zippath": "DaiBannaSIL-4.000/DaiBannaSIL-Italic.ttf" }, + "DaiBannaSIL-Italic.woff": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-Italic.woff", "packagepath": "web/DaiBannaSIL-Italic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-Italic.woff", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-Italic.woff" }, + "DaiBannaSIL-Italic.woff2": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-Italic.woff2", "packagepath": "web/DaiBannaSIL-Italic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-Italic.woff2", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-Italic.woff2" }, + "DaiBannaSIL-Light.ttf": { "altfamily": "Dai Banna SIL Light", "axes": { "ital": 0, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/DaiBannaSIL-Light.ttf", "packagepath": "DaiBannaSIL-Light.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/DaiBannaSIL-Light.ttf", "zippath": "DaiBannaSIL-4.000/DaiBannaSIL-Light.ttf" }, + "DaiBannaSIL-Light.woff": { "altfamily": "Dai Banna SIL Light", "axes": { "ital": 0, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-Light.woff", "packagepath": "web/DaiBannaSIL-Light.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-Light.woff", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-Light.woff" }, + "DaiBannaSIL-Light.woff2": { "altfamily": "Dai Banna SIL Light", "axes": { "ital": 0, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-Light.woff2", "packagepath": "web/DaiBannaSIL-Light.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-Light.woff2", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-Light.woff2" }, + "DaiBannaSIL-LightItalic.ttf": { "altfamily": "Dai Banna SIL Light", "axes": { "ital": 1, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/DaiBannaSIL-LightItalic.ttf", "packagepath": "DaiBannaSIL-LightItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/DaiBannaSIL-LightItalic.ttf", "zippath": "DaiBannaSIL-4.000/DaiBannaSIL-LightItalic.ttf" }, + "DaiBannaSIL-LightItalic.woff": { "altfamily": "Dai Banna SIL Light", "axes": { "ital": 1, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-LightItalic.woff", "packagepath": "web/DaiBannaSIL-LightItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-LightItalic.woff", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-LightItalic.woff" }, + "DaiBannaSIL-LightItalic.woff2": { "altfamily": "Dai Banna SIL Light", "axes": { "ital": 1, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-LightItalic.woff2", "packagepath": "web/DaiBannaSIL-LightItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-LightItalic.woff2", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-LightItalic.woff2" }, + "DaiBannaSIL-Medium.ttf": { "altfamily": "Dai Banna SIL Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/DaiBannaSIL-Medium.ttf", "packagepath": "DaiBannaSIL-Medium.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/DaiBannaSIL-Medium.ttf", "zippath": "DaiBannaSIL-4.000/DaiBannaSIL-Medium.ttf" }, + "DaiBannaSIL-Medium.woff": { "altfamily": "Dai Banna SIL Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-Medium.woff", "packagepath": "web/DaiBannaSIL-Medium.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-Medium.woff", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-Medium.woff" }, + "DaiBannaSIL-Medium.woff2": { "altfamily": "Dai Banna SIL Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-Medium.woff2", "packagepath": "web/DaiBannaSIL-Medium.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-Medium.woff2", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-Medium.woff2" }, + "DaiBannaSIL-MediumItalic.ttf": { "altfamily": "Dai Banna SIL Medium", "axes": { "ital": 1, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/DaiBannaSIL-MediumItalic.ttf", "packagepath": "DaiBannaSIL-MediumItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/DaiBannaSIL-MediumItalic.ttf", "zippath": "DaiBannaSIL-4.000/DaiBannaSIL-MediumItalic.ttf" }, + "DaiBannaSIL-MediumItalic.woff": { "altfamily": "Dai Banna SIL Medium", "axes": { "ital": 1, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-MediumItalic.woff", "packagepath": "web/DaiBannaSIL-MediumItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-MediumItalic.woff", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-MediumItalic.woff" }, + "DaiBannaSIL-MediumItalic.woff2": { "altfamily": "Dai Banna SIL Medium", "axes": { "ital": 1, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-MediumItalic.woff2", "packagepath": "web/DaiBannaSIL-MediumItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-MediumItalic.woff2", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-MediumItalic.woff2" }, + "DaiBannaSIL-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/DaiBannaSIL-Regular.ttf", "packagepath": "DaiBannaSIL-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/DaiBannaSIL-Regular.ttf", "zippath": "DaiBannaSIL-4.000/DaiBannaSIL-Regular.ttf" }, + "DaiBannaSIL-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-Regular.woff", "packagepath": "web/DaiBannaSIL-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-Regular.woff", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-Regular.woff" }, + "DaiBannaSIL-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-Regular.woff2", "packagepath": "web/DaiBannaSIL-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-Regular.woff2", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-Regular.woff2" }, + "DaiBannaSIL-SemiBold.ttf": { "altfamily": "Dai Banna SIL SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/DaiBannaSIL-SemiBold.ttf", "packagepath": "DaiBannaSIL-SemiBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/DaiBannaSIL-SemiBold.ttf", "zippath": "DaiBannaSIL-4.000/DaiBannaSIL-SemiBold.ttf" }, + "DaiBannaSIL-SemiBold.woff": { "altfamily": "Dai Banna SIL SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-SemiBold.woff", "packagepath": "web/DaiBannaSIL-SemiBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-SemiBold.woff", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-SemiBold.woff" }, + "DaiBannaSIL-SemiBold.woff2": { "altfamily": "Dai Banna SIL SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-SemiBold.woff2", "packagepath": "web/DaiBannaSIL-SemiBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-SemiBold.woff2", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-SemiBold.woff2" }, + "DaiBannaSIL-SemiBoldItalic.ttf": { "altfamily": "Dai Banna SIL SemiBold", "axes": { "ital": 1, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/DaiBannaSIL-SemiBoldItalic.ttf", "packagepath": "DaiBannaSIL-SemiBoldItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/DaiBannaSIL-SemiBoldItalic.ttf", "zippath": "DaiBannaSIL-4.000/DaiBannaSIL-SemiBoldItalic.ttf" }, + "DaiBannaSIL-SemiBoldItalic.woff": { "altfamily": "Dai Banna SIL SemiBold", "axes": { "ital": 1, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-SemiBoldItalic.woff", "packagepath": "web/DaiBannaSIL-SemiBoldItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-SemiBoldItalic.woff", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-SemiBoldItalic.woff" }, + "DaiBannaSIL-SemiBoldItalic.woff2": { "altfamily": "Dai Banna SIL SemiBold", "axes": { "ital": 1, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/daibannasil/web/DaiBannaSIL-SemiBoldItalic.woff2", "packagepath": "web/DaiBannaSIL-SemiBoldItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/daibannasil/web/DaiBannaSIL-SemiBoldItalic.woff2", "zippath": "DaiBannaSIL-4.000/web/DaiBannaSIL-SemiBoldItalic.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/daibanna/DaiBannaSIL-4.000.zip", + "siteurl": "https://software.sil.org/daibanna/", + "source": "SIL", + "status": "current", + "version": "4.000", + "ziproot": "DaiBannaSIL-4.000" +}, +"daibannasilbook": { + "defaults": { + "ttf": "DBSILLR.ttf", + "woff": "DBSILLR.woff" + }, + "distributable": true, + "fallback": "daibannasil", + "family": "Dai Banna SIL Light", + "familyid": "daibannasilbook", + "files": { + "DBSILBB.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBB.ttf", "zippath": "DaiBannaSIL-3.000/DBSILBB.ttf" }, + "DBSILBB.woff": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBB.woff", "zippath": "DaiBannaSIL-3.000/DBSILBB.woff" }, + "DBSILBC.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBC.ttf", "zippath": "DaiBannaSIL-3.000/DBSILBC.ttf" }, + "DBSILBC.woff": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBC.woff", "zippath": "DaiBannaSIL-3.000/DBSILBC.woff" }, + "DBSILBO.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBO.ttf", "zippath": "DaiBannaSIL-3.000/DBSILBO.ttf" }, + "DBSILBO.woff": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBO.woff", "zippath": "DaiBannaSIL-3.000/DBSILBO.woff" }, + "DBSILBR.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBR.ttf", "zippath": "DaiBannaSIL-3.000/DBSILBR.ttf" }, + "DBSILBR.woff": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBR.woff", "zippath": "DaiBannaSIL-3.000/DBSILBR.woff" }, + "DBSILLB.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLB.ttf", "zippath": "DaiBannaSIL-3.000/DBSILLB.ttf" }, + "DBSILLB.woff": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLB.woff", "zippath": "DaiBannaSIL-3.000/DBSILLB.woff" }, + "DBSILLC.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLC.ttf", "zippath": "DaiBannaSIL-3.000/DBSILLC.ttf" }, + "DBSILLC.woff": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLC.woff", "zippath": "DaiBannaSIL-3.000/DBSILLC.woff" }, + "DBSILLO.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLO.ttf", "zippath": "DaiBannaSIL-3.000/DBSILLO.ttf" }, + "DBSILLO.woff": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLO.woff", "zippath": "DaiBannaSIL-3.000/DBSILLO.woff" }, + "DBSILLR.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLR.ttf", "zippath": "DaiBannaSIL-3.000/DBSILLR.ttf" }, + "DBSILLR.woff": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLR.woff", "zippath": "DaiBannaSIL-3.000/DBSILLR.woff" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/daibanna/DaiBannaSIL-3.000.zip", + "siteurl": "https://software.sil.org/daibanna/", + "source": "SIL", + "status": "archived", + "version": "3.000", + "ziproot": "" +}, +"daibannasillight": { + "defaults": { + "ttf": "DBSILLR.ttf", + "woff": "DBSILLR.woff" + }, + "distributable": true, + "fallback": "daibannasil", + "family": "Dai Banna SIL Light", + "familyid": "daibannasillight", + "files": { + "DBSILBB.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBB.ttf", "zippath": "DaiBannaSIL-3.000/DBSILBB.ttf" }, + "DBSILBB.woff": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBB.woff", "zippath": "DaiBannaSIL-3.000/DBSILBB.woff" }, + "DBSILBC.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBC.ttf", "zippath": "DaiBannaSIL-3.000/DBSILBC.ttf" }, + "DBSILBC.woff": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBC.woff", "zippath": "DaiBannaSIL-3.000/DBSILBC.woff" }, + "DBSILBO.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBO.ttf", "zippath": "DaiBannaSIL-3.000/DBSILBO.ttf" }, + "DBSILBO.woff": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBO.woff", "zippath": "DaiBannaSIL-3.000/DBSILBO.woff" }, + "DBSILBR.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBR.ttf", "zippath": "DaiBannaSIL-3.000/DBSILBR.ttf" }, + "DBSILBR.woff": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILBR.woff", "zippath": "DaiBannaSIL-3.000/DBSILBR.woff" }, + "DBSILLB.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLB.ttf", "zippath": "DaiBannaSIL-3.000/DBSILLB.ttf" }, + "DBSILLB.woff": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLB.woff", "zippath": "DaiBannaSIL-3.000/DBSILLB.woff" }, + "DBSILLC.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLC.ttf", "zippath": "DaiBannaSIL-3.000/DBSILLC.ttf" }, + "DBSILLC.woff": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLC.woff", "zippath": "DaiBannaSIL-3.000/DBSILLC.woff" }, + "DBSILLO.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLO.ttf", "zippath": "DaiBannaSIL-3.000/DBSILLO.ttf" }, + "DBSILLO.woff": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLO.woff", "zippath": "DaiBannaSIL-3.000/DBSILLO.woff" }, + "DBSILLR.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLR.ttf", "zippath": "DaiBannaSIL-3.000/DBSILLR.ttf" }, + "DBSILLR.woff": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "DaiBannaSIL-3.000/DBSILLR.woff", "zippath": "DaiBannaSIL-3.000/DBSILLR.woff" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/daibanna/DaiBannaSIL-3.000.zip", + "siteurl": "https://software.sil.org/daibanna/", + "source": "SIL", + "status": "archived", + "version": "3.000", + "ziproot": "" +}, +"dokchampa": { + "distributable": false, + "fallback": "notosanslao", + "family": "DokChampa", + "familyid": "dokchampa", + "license": "proprietary", + "source": "Microsoft" +}, +"doulossil": { + "defaults": { + "ttf": "DoulosSIL-Regular.ttf", + "woff": "DoulosSIL-Regular.woff", + "woff2": "DoulosSIL-Regular.woff2" + }, + "distributable": true, + "family": "Doulos SIL", + "familyid": "doulossil", + "files": { + "DoulosSIL-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/doulossil/DoulosSIL-Regular.ttf", "packagepath": "DoulosSIL-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/doulossil/DoulosSIL-Regular.ttf", "zippath": "DoulosSIL-6.200/DoulosSIL-Regular.ttf" }, + "DoulosSIL-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/doulossil/web/DoulosSIL-Regular.woff", "packagepath": "web/DoulosSIL-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/doulossil/web/DoulosSIL-Regular.woff", "zippath": "DoulosSIL-6.200/web/DoulosSIL-Regular.woff" }, + "DoulosSIL-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/doulossil/web/DoulosSIL-Regular.woff2", "packagepath": "web/DoulosSIL-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/doulossil/web/DoulosSIL-Regular.woff2", "zippath": "DoulosSIL-6.200/web/DoulosSIL-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/doulos/DoulosSIL-6.200.zip", + "siteurl": "https://software.sil.org/doulos/", + "source": "SIL", + "status": "current", + "version": "6.200", + "ziproot": "DoulosSIL-6.200" +}, +"doulossilafr": { + "distributable": true, + "fallback": "doulossil", + "family": "Doulos SIL Afr", + "familyid": "doulossilafr", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"doulossilam": { + "distributable": true, + "fallback": "doulossil", + "family": "Doulos SIL Am", + "familyid": "doulossilam", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"doulossilamarea": { + "defaults": { + "ttf": "DoulosSILAmArea-Regular.ttf" + }, + "distributable": true, + "fallback": "doulossil", + "family": "Doulos SIL AmArea", + "familyid": "doulossilamarea", + "files": { + "DoulosSILAmArea-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "DoulosSILAmArea-6.200/DoulosSILAmArea-Regular.ttf", "zippath": "DoulosSILAmArea-6.200/DoulosSILAmArea-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=DoulosSIL&pkg=AmArea", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"doulossilapac": { + "distributable": true, + "fallback": "doulossil", + "family": "Doulos SIL APac", + "familyid": "doulossilapac", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"doulossilcipher": { + "defaults": { + "ttf": "DoulosSILCipher-R.ttf", + "woff": "DoulosSILCipher-R.woff" + }, + "distributable": true, + "family": "Doulos SIL", + "familyid": "doulossilcipher", + "files": { + "DoulosSILCipher-R.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/doulossilcipher/DoulosSILCipher-R.ttf", "packagepath": "DoulosSILCipher-R.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/doulossilcipher/DoulosSILCipher-R.ttf", "zippath": "DoulosSILCipher_1.020/DoulosSILCipher-R.ttf" }, + "DoulosSILCipher-R.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/doulossilcipher/web/DoulosSILCipher-R.woff", "packagepath": "web/DoulosSILCipher-R.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/doulossilcipher/web/DoulosSILCipher-R.woff", "zippath": "DoulosSILCipher_1.020/web/DoulosSILCipher-R.woff" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/doulos-sil-cipher/DoulosSILCipher-1.020.zip", + "siteurl": "https://software.sil.org/doulos-sil-cipher/", + "source": "SIL", + "status": "current", + "version": "1.020", + "ziproot": "DoulosSILCipher_1.020" +}, +"doulossilcompact": { + "defaults": { + "ttf": "DoulosSILCompact-Regular.ttf" + }, + "distributable": true, + "fallback": "doulossil", + "family": "Doulos SIL Compact", + "familyid": "doulossilcompact", + "files": { + "DoulosSILCompact-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "DoulosSILCompact-6.200/DoulosSILCompact-Regular.ttf", "zippath": "DoulosSILCompact-6.200/DoulosSILCompact-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=DoulosSIL&pkg=Compact", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"doulossilcyr": { + "distributable": true, + "fallback": "doulossil", + "family": "Doulos SIL Cyr", + "familyid": "doulossilcyr", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"doulossilcyre": { + "distributable": true, + "fallback": "doulossil", + "family": "Doulos SIL CyrE", + "familyid": "doulossilcyre", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"doulossileur": { + "distributable": true, + "fallback": "doulossil", + "family": "Doulos SIL Eur", + "familyid": "doulossileur", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"doulossilliteracy": { + "defaults": { + "ttf": "DoulosSILLiteracy-Regular.ttf" + }, + "distributable": true, + "fallback": "doulossil", + "family": "Doulos SIL Literacy", + "familyid": "doulossilliteracy", + "files": { + "DoulosSILLiteracy-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "DoulosSILLiteracy-6.200/DoulosSILLiteracy-Regular.ttf", "zippath": "DoulosSILLiteracy-6.200/DoulosSILLiteracy-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=DoulosSIL&pkg=Literacy", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"doulossilliteracyamarea": { + "defaults": { + "ttf": "DoulosSILLiteracyAmArea-Regular.ttf" + }, + "distributable": true, + "fallback": "doulossil", + "family": "Doulos SIL Literacy AmArea", + "familyid": "doulossilliteracyamarea", + "files": { + "DoulosSILLiteracyAmArea-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "DoulosSILLiteracyAmArea-6.200/DoulosSILLiteracyAmArea-Regular.ttf", "zippath": "DoulosSILLiteracyAmArea-6.200/DoulosSILLiteracyAmArea-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=DoulosSIL&pkg=LiteracyAmArea", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"doulossilliteracycompact": { + "defaults": { + "ttf": "DoulosSILLiteracyCompact-Regular.ttf" + }, + "distributable": true, + "fallback": "doulossil", + "family": "Doulos SIL Literacy Compact", + "familyid": "doulossilliteracycompact", + "files": { + "DoulosSILLiteracyCompact-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "DoulosSILLiteracyCompact-6.200/DoulosSILLiteracyCompact-Regular.ttf", "zippath": "DoulosSILLiteracyCompact-6.200/DoulosSILLiteracyCompact-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=DoulosSIL&pkg=LiteracyCompact", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"doulossilmali": { + "defaults": { + "ttf": "DoulosSILMali-Regular.ttf" + }, + "distributable": true, + "fallback": "doulossil", + "family": "Doulos SIL Mali", + "familyid": "doulossilmali", + "files": { + "DoulosSILMali-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "DoulosSILMali-6.200/DoulosSILMali-Regular.ttf", "zippath": "DoulosSILMali-6.200/DoulosSILMali-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=DoulosSIL&pkg=Mali", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"doulossilphon": { + "distributable": true, + "fallback": "doulossil", + "family": "Doulos SIL Phon", + "familyid": "doulossilphon", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"doulossiltat": { + "defaults": { + "ttf": "DoulosSILTat-Regular.ttf" + }, + "distributable": true, + "fallback": "doulossil", + "family": "Doulos SIL Tat", + "familyid": "doulossiltat", + "files": { + "DoulosSILTat-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "DoulosSILTat-6.200/DoulosSILTat-Regular.ttf", "zippath": "DoulosSILTat-6.200/DoulosSILTat-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=DoulosSIL&pkg=Tat", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"doulossilviet": { + "distributable": true, + "fallback": "doulossil", + "family": "Doulos SIL Viet", + "familyid": "doulossilviet", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"dukor": { + "defaults": { + "ttf": "Dukor.ttf" + }, + "distributable": true, + "fallback": "wakor", + "family": "Dukor", + "familyid": "dukor", + "files": { + "Dukor.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Dukor-1.0.7/Dukor.ttf", "zippath": "Dukor-1.0.7/Dukor.ttf" }, + "DukorItalic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "Dukor-1.0.7/DukorItalic.ttf", "zippath": "Dukor-1.0.7/DukorItalic.ttf" } + }, + "license": "OFL", + "packageurl": "https://www.evertype.com/fonts/vai/dukorfont.zip", + "siteurl": "https://www.evertype.com/fonts/vai/", + "source": "Evertype", + "version": "1.0.7", + "ziproot": "" +}, +"eastsyriacmarcus": { + "distributable": false, + "fallback": "notosanssyriac", + "family": "East Syriac Marcus", + "familyid": "eastsyriacmarcus", + "license": "Freeware" +}, +"ebrima": { + "distributable": false, + "fallback": "akatab", + "family": "Ebrima", + "familyid": "ebrima", + "license": "proprietary", + "source": "Microsoft" +}, +"eeyek": { + "defaults": { + "ttf": "Eeyek-Regular.ttf", + "woff": "Eeyek-Regular.woff" + }, + "distributable": true, + "family": "Eeyek", + "familyid": "eeyek", + "files": { + "Eeyek-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/eeyek/Eeyek-Regular.ttf", "packagepath": "Eeyek-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/eeyek/Eeyek-Regular.ttf", "zippath": "Eeyek-2.000/Eeyek-Regular.ttf" }, + "Eeyek-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/eeyek/web/Eeyek-Regular.woff", "packagepath": "web/Eeyek-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/eeyek/web/Eeyek-Regular.woff", "zippath": "Eeyek-2.000/web/Eeyek-Regular.woff" } + }, + "license": "OFL", + "packageurl": "https://github.com/silnrsi/font-eeyek/releases/download/v2.000/Eeyek-2.000.zip", + "siteurl": "https://github.com/silnrsi/font-eeyek", + "source": "SIL", + "status": "current", + "version": "2.000", + "ziproot": "Eeyek-2.000" +}, +"ezrasil": { + "defaults": { + "ttf": "SILEOT.ttf", + "woff": "SILEOT.woff" + }, + "distributable": true, + "family": "Ezra SIL", + "familyid": "ezrasil", + "files": { + "SILEOT.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ezrasil/SILEOT.ttf", "packagepath": "SILEOT.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ezrasil/SILEOT.ttf", "zippath": "EzraSIL-2.51-web/SILEOT.ttf" }, + "SILEOT.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ezrasil/web/SILEOT.woff", "packagepath": "web/SILEOT.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ezrasil/web/SILEOT.woff", "zippath": "EzraSIL-2.51-web/web/SILEOT.woff" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/ezra/EzraSIL-2.51-web.zip", + "siteurl": "https://software.sil.org/ezra/", + "source": "SIL", + "status": "current", + "version": "2.510", + "ziproot": "EzraSIL-2.51-web" +}, +"ezrasilsr": { + "defaults": { + "ttf": "SILEOTSR.ttf", + "woff": "SILEOTSR.woff" + }, + "distributable": true, + "family": "Ezra SIL SR", + "familyid": "ezrasilsr", + "files": { + "SILEOTSR.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ezrasilsr/SILEOTSR.ttf", "packagepath": "SILEOTSR.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ezrasilsr/SILEOTSR.ttf", "zippath": "EzraSIL-2.51-web/SILEOTSR.ttf" }, + "SILEOTSR.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ezrasilsr/web/SILEOTSR.woff", "packagepath": "web/SILEOTSR.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ezrasilsr/web/SILEOTSR.woff", "zippath": "EzraSIL-2.51-web/web/SILEOTSR.woff" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/ezra/EzraSIL-2.51-web.zip", + "siteurl": "https://software.sil.org/ezra/", + "source": "SIL", + "status": "current", + "version": "2.510", + "ziproot": "EzraSIL-2.51-web" +}, +"galatiasil": { + "defaults": { + "ttf": "GalSILR.ttf", + "woff": "GalSILR.woff" + }, + "distributable": true, + "family": "Galatia SIL", + "familyid": "galatiasil", + "files": { + "GalSILB.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/galatiasil/GalSILB.ttf", "packagepath": "GalSILB.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/galatiasil/GalSILB.ttf", "zippath": "GalatiaSIL-2.1-web/GalSILB.ttf" }, + "GalSILB.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/galatiasil/web/GalSILB.woff", "packagepath": "web/GalSILB.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/galatiasil/web/GalSILB.woff", "zippath": "GalatiaSIL-2.1-web/web/GalSILB.woff" }, + "GalSILR.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/galatiasil/GalSILR.ttf", "packagepath": "GalSILR.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/galatiasil/GalSILR.ttf", "zippath": "GalatiaSIL-2.1-web/GalSILR.ttf" }, + "GalSILR.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/galatiasil/web/GalSILR.woff", "packagepath": "web/GalSILR.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/galatiasil/web/GalSILR.woff", "zippath": "GalatiaSIL-2.1-web/web/GalSILR.woff" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/galatia/GalatiaSIL-2.1-web.zip", + "siteurl": "https://software.sil.org/Galatia/", + "source": "SIL", + "status": "current", + "version": "2.100", + "ziproot": "GalatiaSIL-2.1-web" +}, +"gautami": { + "distributable": false, + "fallback": "suranna", + "family": "Gautami", + "familyid": "gautami", + "license": "proprietary", + "source": "Microsoft" +}, +"gentium": { + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium", + "familyid": "gentium", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/gentium/Gentium-1.03.zip", + "siteurl": "https://software.sil.org/gentium/", + "source": "SIL", + "status": "deprecated", + "version": "1.030" +}, +"gentiumbasic": { + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Basic", + "familyid": "gentiumbasic", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/gentium/GentiumBasic_1102.zip", + "siteurl": "https://software.sil.org/gentium/", + "source": "SIL", + "status": "deprecated", + "version": "1.102" +}, +"gentiumbookbasic": { + "distributable": true, + "fallback": "gentiumbookplus", + "family": "Gentium Book Basic", + "familyid": "gentiumbookbasic", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/gentium/GentiumBasic_1102.zip", + "siteurl": "https://software.sil.org/gentium/", + "source": "SIL", + "status": "deprecated", + "version": "1.102" +}, +"gentiumbookplus": { + "defaults": { + "ttf": "GentiumBookPlus-Regular.ttf", + "woff": "GentiumBookPlus-Regular.woff", + "woff2": "GentiumBookPlus-Regular.woff2" + }, + "distributable": true, + "family": "Gentium Book Plus", + "familyid": "gentiumbookplus", + "files": { + "GentiumBookPlus-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumbookplus/GentiumBookPlus-Bold.ttf", "packagepath": "GentiumBookPlus-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumbookplus/GentiumBookPlus-Bold.ttf", "zippath": "GentiumPlus-6.200/GentiumBookPlus-Bold.ttf" }, + "GentiumBookPlus-Bold.woff": { "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumbookplus/web/GentiumBookPlus-Bold.woff", "packagepath": "web/GentiumBookPlus-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumbookplus/web/GentiumBookPlus-Bold.woff", "zippath": "GentiumPlus-6.200/web/GentiumBookPlus-Bold.woff" }, + "GentiumBookPlus-Bold.woff2": { "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumbookplus/web/GentiumBookPlus-Bold.woff2", "packagepath": "web/GentiumBookPlus-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumbookplus/web/GentiumBookPlus-Bold.woff2", "zippath": "GentiumPlus-6.200/web/GentiumBookPlus-Bold.woff2" }, + "GentiumBookPlus-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumbookplus/GentiumBookPlus-BoldItalic.ttf", "packagepath": "GentiumBookPlus-BoldItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumbookplus/GentiumBookPlus-BoldItalic.ttf", "zippath": "GentiumPlus-6.200/GentiumBookPlus-BoldItalic.ttf" }, + "GentiumBookPlus-BoldItalic.woff": { "axes": { "ital": 1, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumbookplus/web/GentiumBookPlus-BoldItalic.woff", "packagepath": "web/GentiumBookPlus-BoldItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumbookplus/web/GentiumBookPlus-BoldItalic.woff", "zippath": "GentiumPlus-6.200/web/GentiumBookPlus-BoldItalic.woff" }, + "GentiumBookPlus-BoldItalic.woff2": { "axes": { "ital": 1, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumbookplus/web/GentiumBookPlus-BoldItalic.woff2", "packagepath": "web/GentiumBookPlus-BoldItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumbookplus/web/GentiumBookPlus-BoldItalic.woff2", "zippath": "GentiumPlus-6.200/web/GentiumBookPlus-BoldItalic.woff2" }, + "GentiumBookPlus-Italic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumbookplus/GentiumBookPlus-Italic.ttf", "packagepath": "GentiumBookPlus-Italic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumbookplus/GentiumBookPlus-Italic.ttf", "zippath": "GentiumPlus-6.200/GentiumBookPlus-Italic.ttf" }, + "GentiumBookPlus-Italic.woff": { "axes": { "ital": 1, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumbookplus/web/GentiumBookPlus-Italic.woff", "packagepath": "web/GentiumBookPlus-Italic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumbookplus/web/GentiumBookPlus-Italic.woff", "zippath": "GentiumPlus-6.200/web/GentiumBookPlus-Italic.woff" }, + "GentiumBookPlus-Italic.woff2": { "axes": { "ital": 1, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumbookplus/web/GentiumBookPlus-Italic.woff2", "packagepath": "web/GentiumBookPlus-Italic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumbookplus/web/GentiumBookPlus-Italic.woff2", "zippath": "GentiumPlus-6.200/web/GentiumBookPlus-Italic.woff2" }, + "GentiumBookPlus-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumbookplus/GentiumBookPlus-Regular.ttf", "packagepath": "GentiumBookPlus-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumbookplus/GentiumBookPlus-Regular.ttf", "zippath": "GentiumPlus-6.200/GentiumBookPlus-Regular.ttf" }, + "GentiumBookPlus-Regular.woff": { "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumbookplus/web/GentiumBookPlus-Regular.woff", "packagepath": "web/GentiumBookPlus-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumbookplus/web/GentiumBookPlus-Regular.woff", "zippath": "GentiumPlus-6.200/web/GentiumBookPlus-Regular.woff" }, + "GentiumBookPlus-Regular.woff2": { "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumbookplus/web/GentiumBookPlus-Regular.woff2", "packagepath": "web/GentiumBookPlus-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumbookplus/web/GentiumBookPlus-Regular.woff2", "zippath": "GentiumPlus-6.200/web/GentiumBookPlus-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/gentium/GentiumPlus-6.200.zip", + "siteurl": "https://software.sil.org/gentium/", + "source": "SIL", + "status": "current", + "version": "6.200", + "ziproot": "GentiumPlus-6.200" +}, +"gentiumbookplusamarea": { + "defaults": { + "ttf": "GentiumBookPlusAmArea-Regular.ttf" + }, + "distributable": true, + "fallback": "gentiumbookplus", + "family": "Gentium Book Plus AmArea", + "familyid": "gentiumbookplusamarea", + "files": { + "GentiumBookPlusAmArea-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-Bold.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-Bold.ttf" }, + "GentiumBookPlusAmArea-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-BoldItalic.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-BoldItalic.ttf" }, + "GentiumBookPlusAmArea-Italic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-Italic.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-Italic.ttf" }, + "GentiumBookPlusAmArea-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-Regular.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-Regular.ttf" }, + "GentiumPlusAmArea-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-Bold.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-Bold.ttf" }, + "GentiumPlusAmArea-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-BoldItalic.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-BoldItalic.ttf" }, + "GentiumPlusAmArea-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-Italic.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-Italic.ttf" }, + "GentiumPlusAmArea-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-Regular.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=GentiumPlus&pkg=AmArea", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"gentiumbookpluscompact": { + "defaults": { + "ttf": "GentiumBookPlusCompact-Regular.ttf" + }, + "distributable": true, + "fallback": "gentiumbookplus", + "family": "Gentium Book Plus Compact", + "familyid": "gentiumbookpluscompact", + "files": { + "GentiumBookPlusCompact-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-Bold.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-Bold.ttf" }, + "GentiumBookPlusCompact-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-BoldItalic.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-BoldItalic.ttf" }, + "GentiumBookPlusCompact-Italic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-Italic.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-Italic.ttf" }, + "GentiumBookPlusCompact-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-Regular.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-Regular.ttf" }, + "GentiumPlusCompact-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumPlusCompact-Bold.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumPlusCompact-Bold.ttf" }, + "GentiumPlusCompact-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumPlusCompact-BoldItalic.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumPlusCompact-BoldItalic.ttf" }, + "GentiumPlusCompact-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumPlusCompact-Italic.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumPlusCompact-Italic.ttf" }, + "GentiumPlusCompact-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumPlusCompact-Regular.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumPlusCompact-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=GentiumPlus&pkg=Compact", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"gentiumbookpluslitamarea": { + "defaults": { + "ttf": "GentiumPlusLitAmArea-Regular.ttf" + }, + "distributable": true, + "fallback": "gentiumbookplus", + "family": "Gentium Plus Lit AmArea", + "familyid": "gentiumbookpluslitamarea", + "files": { + "GentiumBookPlusLitAmArea-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-Bold.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-Bold.ttf" }, + "GentiumBookPlusLitAmArea-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-BoldItalic.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-BoldItalic.ttf" }, + "GentiumBookPlusLitAmArea-Italic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-Italic.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-Italic.ttf" }, + "GentiumBookPlusLitAmArea-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-Regular.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-Regular.ttf" }, + "GentiumPlusLitAmArea-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-Bold.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-Bold.ttf" }, + "GentiumPlusLitAmArea-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-BoldItalic.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-BoldItalic.ttf" }, + "GentiumPlusLitAmArea-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-Italic.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-Italic.ttf" }, + "GentiumPlusLitAmArea-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-Regular.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=GentiumPlus&pkg=LitAmArea", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"gentiumbookpluslitcomp": { + "defaults": { + "ttf": "GentiumPlusLitComp-Regular.ttf" + }, + "distributable": true, + "fallback": "gentiumbookplus", + "family": "Gentium Plus Lit Comp", + "familyid": "gentiumbookpluslitcomp", + "files": { + "GentiumBookPlusLitComp-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-Bold.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-Bold.ttf" }, + "GentiumBookPlusLitComp-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-BoldItalic.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-BoldItalic.ttf" }, + "GentiumBookPlusLitComp-Italic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-Italic.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-Italic.ttf" }, + "GentiumBookPlusLitComp-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-Regular.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-Regular.ttf" }, + "GentiumPlusLitComp-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-Bold.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-Bold.ttf" }, + "GentiumPlusLitComp-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-BoldItalic.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-BoldItalic.ttf" }, + "GentiumPlusLitComp-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-Italic.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-Italic.ttf" }, + "GentiumPlusLitComp-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-Regular.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=GentiumPlus&pkg=LitComp", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"gentiumbookplusliteracy": { + "defaults": { + "ttf": "GentiumPlusLiteracy-Regular.ttf" + }, + "distributable": true, + "fallback": "gentiumbookplus", + "family": "Gentium Plus Literacy", + "familyid": "gentiumbookplusliteracy", + "files": { + "GentiumBookPlusLiteracy-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-Bold.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-Bold.ttf" }, + "GentiumBookPlusLiteracy-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-BoldItalic.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-BoldItalic.ttf" }, + "GentiumBookPlusLiteracy-Italic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-Italic.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-Italic.ttf" }, + "GentiumBookPlusLiteracy-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-Regular.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-Regular.ttf" }, + "GentiumPlusLiteracy-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-Bold.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-Bold.ttf" }, + "GentiumPlusLiteracy-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-BoldItalic.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-BoldItalic.ttf" }, + "GentiumPlusLiteracy-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-Italic.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-Italic.ttf" }, + "GentiumPlusLiteracy-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-Regular.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=GentiumPlus&pkg=Literacy", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"gentiumbookplusliteracyamarea": { + "distributable": true, + "fallback": "gentiumbookpluslitamarea", + "family": "Gentium Book Plus Literacy AmArea", + "familyid": "gentiumbookplusliteracyamarea", + "license": "OFL", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"gentiumbookplusliteracycompact": { + "distributable": true, + "fallback": "gentiumbookpluslitcomp", + "family": "Gentium Book Plus Literacy Compact", + "familyid": "gentiumbookplusliteracycompact", + "license": "OFL", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"gentiumbookplusmali": { + "defaults": { + "ttf": "GentiumPlusMali-Regular.ttf" + }, + "distributable": true, + "fallback": "gentiumbookplus", + "family": "Gentium Plus Mali", + "familyid": "gentiumbookplusmali", + "files": { + "GentiumBookPlusMali-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumBookPlusMali-Bold.ttf", "zippath": "GentiumPlusMali-6.200/GentiumBookPlusMali-Bold.ttf" }, + "GentiumBookPlusMali-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumBookPlusMali-BoldItalic.ttf", "zippath": "GentiumPlusMali-6.200/GentiumBookPlusMali-BoldItalic.ttf" }, + "GentiumBookPlusMali-Italic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumBookPlusMali-Italic.ttf", "zippath": "GentiumPlusMali-6.200/GentiumBookPlusMali-Italic.ttf" }, + "GentiumBookPlusMali-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumBookPlusMali-Regular.ttf", "zippath": "GentiumPlusMali-6.200/GentiumBookPlusMali-Regular.ttf" }, + "GentiumPlusMali-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumPlusMali-Bold.ttf", "zippath": "GentiumPlusMali-6.200/GentiumPlusMali-Bold.ttf" }, + "GentiumPlusMali-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumPlusMali-BoldItalic.ttf", "zippath": "GentiumPlusMali-6.200/GentiumPlusMali-BoldItalic.ttf" }, + "GentiumPlusMali-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumPlusMali-Italic.ttf", "zippath": "GentiumPlusMali-6.200/GentiumPlusMali-Italic.ttf" }, + "GentiumPlusMali-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumPlusMali-Regular.ttf", "zippath": "GentiumPlusMali-6.200/GentiumPlusMali-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=GentiumPlus&pkg=Mali", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"gentiumbookplustat": { + "defaults": { + "ttf": "GentiumPlusTat-Regular.ttf" + }, + "distributable": true, + "fallback": "gentiumbookplus", + "family": "Gentium Plus Tat", + "familyid": "gentiumbookplustat", + "files": { + "GentiumBookPlusTat-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumBookPlusTat-Bold.ttf", "zippath": "GentiumPlusTat-6.200/GentiumBookPlusTat-Bold.ttf" }, + "GentiumBookPlusTat-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumBookPlusTat-BoldItalic.ttf", "zippath": "GentiumPlusTat-6.200/GentiumBookPlusTat-BoldItalic.ttf" }, + "GentiumBookPlusTat-Italic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumBookPlusTat-Italic.ttf", "zippath": "GentiumPlusTat-6.200/GentiumBookPlusTat-Italic.ttf" }, + "GentiumBookPlusTat-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumBookPlusTat-Regular.ttf", "zippath": "GentiumPlusTat-6.200/GentiumBookPlusTat-Regular.ttf" }, + "GentiumPlusTat-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumPlusTat-Bold.ttf", "zippath": "GentiumPlusTat-6.200/GentiumPlusTat-Bold.ttf" }, + "GentiumPlusTat-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumPlusTat-BoldItalic.ttf", "zippath": "GentiumPlusTat-6.200/GentiumPlusTat-BoldItalic.ttf" }, + "GentiumPlusTat-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumPlusTat-Italic.ttf", "zippath": "GentiumPlusTat-6.200/GentiumPlusTat-Italic.ttf" }, + "GentiumPlusTat-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumPlusTat-Regular.ttf", "zippath": "GentiumPlusTat-6.200/GentiumPlusTat-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=GentiumPlus&pkg=Tat", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"gentiumplus": { + "defaults": { + "ttf": "GentiumPlus-Regular.ttf", + "woff": "GentiumPlus-Regular.woff", + "woff2": "GentiumPlus-Regular.woff2" + }, + "distributable": true, + "family": "Gentium Plus", + "familyid": "gentiumplus", + "files": { + "GentiumPlus-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumplus/GentiumPlus-Bold.ttf", "packagepath": "GentiumPlus-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumplus/GentiumPlus-Bold.ttf", "zippath": "GentiumPlus-6.200/GentiumPlus-Bold.ttf" }, + "GentiumPlus-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumplus/web/GentiumPlus-Bold.woff", "packagepath": "web/GentiumPlus-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumplus/web/GentiumPlus-Bold.woff", "zippath": "GentiumPlus-6.200/web/GentiumPlus-Bold.woff" }, + "GentiumPlus-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumplus/web/GentiumPlus-Bold.woff2", "packagepath": "web/GentiumPlus-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumplus/web/GentiumPlus-Bold.woff2", "zippath": "GentiumPlus-6.200/web/GentiumPlus-Bold.woff2" }, + "GentiumPlus-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumplus/GentiumPlus-BoldItalic.ttf", "packagepath": "GentiumPlus-BoldItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumplus/GentiumPlus-BoldItalic.ttf", "zippath": "GentiumPlus-6.200/GentiumPlus-BoldItalic.ttf" }, + "GentiumPlus-BoldItalic.woff": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumplus/web/GentiumPlus-BoldItalic.woff", "packagepath": "web/GentiumPlus-BoldItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumplus/web/GentiumPlus-BoldItalic.woff", "zippath": "GentiumPlus-6.200/web/GentiumPlus-BoldItalic.woff" }, + "GentiumPlus-BoldItalic.woff2": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumplus/web/GentiumPlus-BoldItalic.woff2", "packagepath": "web/GentiumPlus-BoldItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumplus/web/GentiumPlus-BoldItalic.woff2", "zippath": "GentiumPlus-6.200/web/GentiumPlus-BoldItalic.woff2" }, + "GentiumPlus-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumplus/GentiumPlus-Italic.ttf", "packagepath": "GentiumPlus-Italic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumplus/GentiumPlus-Italic.ttf", "zippath": "GentiumPlus-6.200/GentiumPlus-Italic.ttf" }, + "GentiumPlus-Italic.woff": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumplus/web/GentiumPlus-Italic.woff", "packagepath": "web/GentiumPlus-Italic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumplus/web/GentiumPlus-Italic.woff", "zippath": "GentiumPlus-6.200/web/GentiumPlus-Italic.woff" }, + "GentiumPlus-Italic.woff2": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumplus/web/GentiumPlus-Italic.woff2", "packagepath": "web/GentiumPlus-Italic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumplus/web/GentiumPlus-Italic.woff2", "zippath": "GentiumPlus-6.200/web/GentiumPlus-Italic.woff2" }, + "GentiumPlus-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumplus/GentiumPlus-Regular.ttf", "packagepath": "GentiumPlus-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumplus/GentiumPlus-Regular.ttf", "zippath": "GentiumPlus-6.200/GentiumPlus-Regular.ttf" }, + "GentiumPlus-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumplus/web/GentiumPlus-Regular.woff", "packagepath": "web/GentiumPlus-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumplus/web/GentiumPlus-Regular.woff", "zippath": "GentiumPlus-6.200/web/GentiumPlus-Regular.woff" }, + "GentiumPlus-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/gentiumplus/web/GentiumPlus-Regular.woff2", "packagepath": "web/GentiumPlus-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/gentiumplus/web/GentiumPlus-Regular.woff2", "zippath": "GentiumPlus-6.200/web/GentiumPlus-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/gentium/GentiumPlus-6.200.zip", + "siteurl": "https://software.sil.org/gentium/", + "source": "SIL", + "status": "current", + "version": "6.200", + "ziproot": "GentiumPlus-6.200" +}, +"gentiumplusafr": { + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Plus Afr", + "familyid": "gentiumplusafr", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"gentiumplusam": { + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Plus Am", + "familyid": "gentiumplusam", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"gentiumplusamarea": { + "defaults": { + "ttf": "GentiumBookPlusAmArea-Regular.ttf" + }, + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Book Plus AmArea", + "familyid": "gentiumplusamarea", + "files": { + "GentiumBookPlusAmArea-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-Bold.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-Bold.ttf" }, + "GentiumBookPlusAmArea-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-BoldItalic.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-BoldItalic.ttf" }, + "GentiumBookPlusAmArea-Italic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-Italic.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-Italic.ttf" }, + "GentiumBookPlusAmArea-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-Regular.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumBookPlusAmArea-Regular.ttf" }, + "GentiumPlusAmArea-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-Bold.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-Bold.ttf" }, + "GentiumPlusAmArea-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-BoldItalic.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-BoldItalic.ttf" }, + "GentiumPlusAmArea-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-Italic.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-Italic.ttf" }, + "GentiumPlusAmArea-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-Regular.ttf", "zippath": "GentiumPlusAmArea-6.200/GentiumPlusAmArea-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=GentiumPlus&pkg=AmArea", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"gentiumplusapac": { + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Plus APac", + "familyid": "gentiumplusapac", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"gentiumpluscompact": { + "defaults": { + "ttf": "GentiumBookPlusCompact-Regular.ttf" + }, + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Book Plus Compact", + "familyid": "gentiumpluscompact", + "files": { + "GentiumBookPlusCompact-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-Bold.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-Bold.ttf" }, + "GentiumBookPlusCompact-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-BoldItalic.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-BoldItalic.ttf" }, + "GentiumBookPlusCompact-Italic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-Italic.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-Italic.ttf" }, + "GentiumBookPlusCompact-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-Regular.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumBookPlusCompact-Regular.ttf" }, + "GentiumPlusCompact-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumPlusCompact-Bold.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumPlusCompact-Bold.ttf" }, + "GentiumPlusCompact-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumPlusCompact-BoldItalic.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumPlusCompact-BoldItalic.ttf" }, + "GentiumPlusCompact-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumPlusCompact-Italic.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumPlusCompact-Italic.ttf" }, + "GentiumPlusCompact-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "GentiumPlusCompact-6.200/GentiumPlusCompact-Regular.ttf", "zippath": "GentiumPlusCompact-6.200/GentiumPlusCompact-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=GentiumPlus&pkg=Compact", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"gentiumpluscyr": { + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Plus Cyr", + "familyid": "gentiumpluscyr", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"gentiumpluscyre": { + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Plus CyrE", + "familyid": "gentiumpluscyre", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"gentiumpluseur": { + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Plus Eur", + "familyid": "gentiumpluseur", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"gentiumpluslitamarea": { + "defaults": { + "ttf": "GentiumPlusLitAmArea-Regular.ttf" + }, + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Plus Lit AmArea", + "familyid": "gentiumpluslitamarea", + "files": { + "GentiumBookPlusLitAmArea-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-Bold.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-Bold.ttf" }, + "GentiumBookPlusLitAmArea-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-BoldItalic.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-BoldItalic.ttf" }, + "GentiumBookPlusLitAmArea-Italic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-Italic.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-Italic.ttf" }, + "GentiumBookPlusLitAmArea-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-Regular.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumBookPlusLitAmArea-Regular.ttf" }, + "GentiumPlusLitAmArea-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-Bold.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-Bold.ttf" }, + "GentiumPlusLitAmArea-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-BoldItalic.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-BoldItalic.ttf" }, + "GentiumPlusLitAmArea-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-Italic.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-Italic.ttf" }, + "GentiumPlusLitAmArea-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-Regular.ttf", "zippath": "GentiumPlusLitAmArea-6.200/GentiumPlusLitAmArea-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=GentiumPlus&pkg=LitAmArea", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"gentiumpluslitcomp": { + "defaults": { + "ttf": "GentiumPlusLitComp-Regular.ttf" + }, + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Plus Lit Comp", + "familyid": "gentiumpluslitcomp", + "files": { + "GentiumBookPlusLitComp-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-Bold.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-Bold.ttf" }, + "GentiumBookPlusLitComp-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-BoldItalic.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-BoldItalic.ttf" }, + "GentiumBookPlusLitComp-Italic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-Italic.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-Italic.ttf" }, + "GentiumBookPlusLitComp-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-Regular.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumBookPlusLitComp-Regular.ttf" }, + "GentiumPlusLitComp-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-Bold.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-Bold.ttf" }, + "GentiumPlusLitComp-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-BoldItalic.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-BoldItalic.ttf" }, + "GentiumPlusLitComp-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-Italic.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-Italic.ttf" }, + "GentiumPlusLitComp-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-Regular.ttf", "zippath": "GentiumPlusLitComp-6.200/GentiumPlusLitComp-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=GentiumPlus&pkg=LitComp", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"gentiumplusliteracy": { + "defaults": { + "ttf": "GentiumPlusLiteracy-Regular.ttf" + }, + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Plus Literacy", + "familyid": "gentiumplusliteracy", + "files": { + "GentiumBookPlusLiteracy-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-Bold.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-Bold.ttf" }, + "GentiumBookPlusLiteracy-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-BoldItalic.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-BoldItalic.ttf" }, + "GentiumBookPlusLiteracy-Italic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-Italic.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-Italic.ttf" }, + "GentiumBookPlusLiteracy-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-Regular.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumBookPlusLiteracy-Regular.ttf" }, + "GentiumPlusLiteracy-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-Bold.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-Bold.ttf" }, + "GentiumPlusLiteracy-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-BoldItalic.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-BoldItalic.ttf" }, + "GentiumPlusLiteracy-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-Italic.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-Italic.ttf" }, + "GentiumPlusLiteracy-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-Regular.ttf", "zippath": "GentiumPlusLiteracy-6.200/GentiumPlusLiteracy-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=GentiumPlus&pkg=Literacy", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"gentiumplusliteracyamarea": { + "distributable": true, + "fallback": "gentiumpluslitamarea", + "family": "Gentium Plus Literacy AmArea", + "familyid": "gentiumplusliteracyamarea", + "license": "OFL", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"gentiumplusliteracycompact": { + "distributable": true, + "fallback": "gentiumpluslitcomp", + "family": "Gentium Plus Literacy Compact", + "familyid": "gentiumplusliteracycompact", + "license": "OFL", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"gentiumplusmali": { + "defaults": { + "ttf": "GentiumPlusMali-Regular.ttf" + }, + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Plus Mali", + "familyid": "gentiumplusmali", + "files": { + "GentiumBookPlusMali-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumBookPlusMali-Bold.ttf", "zippath": "GentiumPlusMali-6.200/GentiumBookPlusMali-Bold.ttf" }, + "GentiumBookPlusMali-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumBookPlusMali-BoldItalic.ttf", "zippath": "GentiumPlusMali-6.200/GentiumBookPlusMali-BoldItalic.ttf" }, + "GentiumBookPlusMali-Italic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumBookPlusMali-Italic.ttf", "zippath": "GentiumPlusMali-6.200/GentiumBookPlusMali-Italic.ttf" }, + "GentiumBookPlusMali-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumBookPlusMali-Regular.ttf", "zippath": "GentiumPlusMali-6.200/GentiumBookPlusMali-Regular.ttf" }, + "GentiumPlusMali-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumPlusMali-Bold.ttf", "zippath": "GentiumPlusMali-6.200/GentiumPlusMali-Bold.ttf" }, + "GentiumPlusMali-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumPlusMali-BoldItalic.ttf", "zippath": "GentiumPlusMali-6.200/GentiumPlusMali-BoldItalic.ttf" }, + "GentiumPlusMali-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumPlusMali-Italic.ttf", "zippath": "GentiumPlusMali-6.200/GentiumPlusMali-Italic.ttf" }, + "GentiumPlusMali-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "GentiumPlusMali-6.200/GentiumPlusMali-Regular.ttf", "zippath": "GentiumPlusMali-6.200/GentiumPlusMali-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=GentiumPlus&pkg=Mali", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"gentiumplusphon": { + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Plus Phon", + "familyid": "gentiumplusphon", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"gentiumplustat": { + "defaults": { + "ttf": "GentiumPlusTat-Regular.ttf" + }, + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Plus Tat", + "familyid": "gentiumplustat", + "files": { + "GentiumBookPlusTat-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumBookPlusTat-Bold.ttf", "zippath": "GentiumPlusTat-6.200/GentiumBookPlusTat-Bold.ttf" }, + "GentiumBookPlusTat-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumBookPlusTat-BoldItalic.ttf", "zippath": "GentiumPlusTat-6.200/GentiumBookPlusTat-BoldItalic.ttf" }, + "GentiumBookPlusTat-Italic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumBookPlusTat-Italic.ttf", "zippath": "GentiumPlusTat-6.200/GentiumBookPlusTat-Italic.ttf" }, + "GentiumBookPlusTat-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumBookPlusTat-Regular.ttf", "zippath": "GentiumPlusTat-6.200/GentiumBookPlusTat-Regular.ttf" }, + "GentiumPlusTat-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumPlusTat-Bold.ttf", "zippath": "GentiumPlusTat-6.200/GentiumPlusTat-Bold.ttf" }, + "GentiumPlusTat-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumPlusTat-BoldItalic.ttf", "zippath": "GentiumPlusTat-6.200/GentiumPlusTat-BoldItalic.ttf" }, + "GentiumPlusTat-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumPlusTat-Italic.ttf", "zippath": "GentiumPlusTat-6.200/GentiumPlusTat-Italic.ttf" }, + "GentiumPlusTat-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "GentiumPlusTat-6.200/GentiumPlusTat-Regular.ttf", "zippath": "GentiumPlusTat-6.200/GentiumPlusTat-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=GentiumPlus&pkg=Tat", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "archived", + "version": "6.200", + "ziproot": "" +}, +"gentiumplusviet": { + "distributable": true, + "fallback": "gentiumplus", + "family": "Gentium Plus Viet", + "familyid": "gentiumplusviet", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lcgfonts/CDGA_Subsets-5.000.zip", + "siteurl": "https://software.sil.org/lcgfonts/download/", + "source": "SIL", + "status": "deprecated", + "version": "5.000" +}, +"georgia": { + "distributable": false, + "fallback": "charissil", + "family": "Georgia", + "familyid": "georgia", + "license": "proprietary", + "source": "Microsoft" +}, +"harmattan": { + "defaults": { + "ttf": "Harmattan-Regular.ttf", + "woff": "Harmattan-Regular.woff", + "woff2": "Harmattan-Regular.woff2" + }, + "distributable": true, + "family": "Harmattan", + "familyid": "harmattan", + "files": { + "Harmattan-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/harmattan/Harmattan-Bold.ttf", "packagepath": "Harmattan-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/harmattan/Harmattan-Bold.ttf", "zippath": "Harmattan-4.300/Harmattan-Bold.ttf" }, + "Harmattan-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/harmattan/web/Harmattan-Bold.woff", "packagepath": "web/Harmattan-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/harmattan/web/Harmattan-Bold.woff", "zippath": "Harmattan-4.300/web/Harmattan-Bold.woff" }, + "Harmattan-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/harmattan/web/Harmattan-Bold.woff2", "packagepath": "web/Harmattan-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/harmattan/web/Harmattan-Bold.woff2", "zippath": "Harmattan-4.300/web/Harmattan-Bold.woff2" }, + "Harmattan-Medium.ttf": { "altfamily": "Harmattan Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/harmattan/Harmattan-Medium.ttf", "packagepath": "Harmattan-Medium.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/harmattan/Harmattan-Medium.ttf", "zippath": "Harmattan-4.300/Harmattan-Medium.ttf" }, + "Harmattan-Medium.woff": { "altfamily": "Harmattan Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/harmattan/web/Harmattan-Medium.woff", "packagepath": "web/Harmattan-Medium.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/harmattan/web/Harmattan-Medium.woff", "zippath": "Harmattan-4.300/web/Harmattan-Medium.woff" }, + "Harmattan-Medium.woff2": { "altfamily": "Harmattan Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/harmattan/web/Harmattan-Medium.woff2", "packagepath": "web/Harmattan-Medium.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/harmattan/web/Harmattan-Medium.woff2", "zippath": "Harmattan-4.300/web/Harmattan-Medium.woff2" }, + "Harmattan-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/harmattan/Harmattan-Regular.ttf", "packagepath": "Harmattan-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/harmattan/Harmattan-Regular.ttf", "zippath": "Harmattan-4.300/Harmattan-Regular.ttf" }, + "Harmattan-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/harmattan/web/Harmattan-Regular.woff", "packagepath": "web/Harmattan-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/harmattan/web/Harmattan-Regular.woff", "zippath": "Harmattan-4.300/web/Harmattan-Regular.woff" }, + "Harmattan-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/harmattan/web/Harmattan-Regular.woff2", "packagepath": "web/Harmattan-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/harmattan/web/Harmattan-Regular.woff2", "zippath": "Harmattan-4.300/web/Harmattan-Regular.woff2" }, + "Harmattan-SemiBold.ttf": { "altfamily": "Harmattan SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/harmattan/Harmattan-SemiBold.ttf", "packagepath": "Harmattan-SemiBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/harmattan/Harmattan-SemiBold.ttf", "zippath": "Harmattan-4.300/Harmattan-SemiBold.ttf" }, + "Harmattan-SemiBold.woff": { "altfamily": "Harmattan SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/harmattan/web/Harmattan-SemiBold.woff", "packagepath": "web/Harmattan-SemiBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/harmattan/web/Harmattan-SemiBold.woff", "zippath": "Harmattan-4.300/web/Harmattan-SemiBold.woff" }, + "Harmattan-SemiBold.woff2": { "altfamily": "Harmattan SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/harmattan/web/Harmattan-SemiBold.woff2", "packagepath": "web/Harmattan-SemiBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/harmattan/web/Harmattan-SemiBold.woff2", "zippath": "Harmattan-4.300/web/Harmattan-SemiBold.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/harmattan/Harmattan-4.300.zip", + "siteurl": "https://software.sil.org/harmattan/", + "source": "SIL", + "status": "current", + "version": "4.300", + "ziproot": "Harmattan-4.300" +}, +"japasansoriya": { + "defaults": { + "ttf": "JapaSansOriya-Regular.ttf", + "woff": "JapaSansOriya-Regular.woff", + "woff2": "JapaSansOriya-Regular.woff2" + }, + "distributable": true, + "family": "Japa Sans Oriya", + "familyid": "japasansoriya", + "files": { + "JapaSansOriya-Bold.ttf": { "axes": { "ital": 0, "wdth": 100.0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/japasansoriya/JapaSansOriya-Bold.ttf", "packagepath": "JapaSansOriya-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/japasansoriya/JapaSansOriya-Bold.ttf", "zippath": "JapaSansOriya-2.200/JapaSansOriya-Bold.ttf" }, + "JapaSansOriya-Bold.woff": { "axes": { "ital": 0, "wdth": 100.0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/japasansoriya/web/JapaSansOriya-Bold.woff", "packagepath": "web/JapaSansOriya-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/japasansoriya/web/JapaSansOriya-Bold.woff", "zippath": "JapaSansOriya-2.200/web/JapaSansOriya-Bold.woff" }, + "JapaSansOriya-Bold.woff2": { "axes": { "ital": 0, "wdth": 100.0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/japasansoriya/web/JapaSansOriya-Bold.woff2", "packagepath": "web/JapaSansOriya-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/japasansoriya/web/JapaSansOriya-Bold.woff2", "zippath": "JapaSansOriya-2.200/web/JapaSansOriya-Bold.woff2" }, + "JapaSansOriya-Regular.ttf": { "axes": { "ital": 0, "wdth": 100.0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/japasansoriya/JapaSansOriya-Regular.ttf", "packagepath": "JapaSansOriya-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/japasansoriya/JapaSansOriya-Regular.ttf", "zippath": "JapaSansOriya-2.200/JapaSansOriya-Regular.ttf" }, + "JapaSansOriya-Regular.woff": { "axes": { "ital": 0, "wdth": 100.0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/japasansoriya/web/JapaSansOriya-Regular.woff", "packagepath": "web/JapaSansOriya-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/japasansoriya/web/JapaSansOriya-Regular.woff", "zippath": "JapaSansOriya-2.200/web/JapaSansOriya-Regular.woff" }, + "JapaSansOriya-Regular.woff2": { "axes": { "ital": 0, "wdth": 100.0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/japasansoriya/web/JapaSansOriya-Regular.woff2", "packagepath": "web/JapaSansOriya-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/japasansoriya/web/JapaSansOriya-Regular.woff2", "zippath": "JapaSansOriya-2.200/web/JapaSansOriya-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://github.com/silnrsi/font-japa-sans-oriya/releases/download/v2.200/JapaSansOriya-2.200.zip", + "siteurl": "https://github.com/silnrsi/font-japa-sans-oriya", + "source": "SIL", + "status": "current", + "version": "2.200", + "ziproot": "JapaSansOriya-2.200" +}, +"kalinga": { + "distributable": false, + "fallback": "japasansoriya", + "family": "Kalinga", + "familyid": "kalinga", + "license": "proprietary", + "source": "Microsoft" +}, +"kanchenjunga": { + "defaults": { + "ttf": "Kanchenjunga-Regular.ttf", + "woff": "Kanchenjunga-Regular.woff", + "woff2": "Kanchenjunga-Regular.woff2" + }, + "distributable": true, + "family": "Kanchenjunga", + "familyid": "kanchenjunga", + "files": { + "Kanchenjunga-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kanchenjunga/Kanchenjunga-Bold.ttf", "packagepath": "Kanchenjunga-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kanchenjunga/Kanchenjunga-Bold.ttf", "zippath": "Kanchenjunga-2.001/Kanchenjunga-Bold.ttf" }, + "Kanchenjunga-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kanchenjunga/web/Kanchenjunga-Bold.woff", "packagepath": "web/Kanchenjunga-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kanchenjunga/web/Kanchenjunga-Bold.woff", "zippath": "Kanchenjunga-2.001/web/Kanchenjunga-Bold.woff" }, + "Kanchenjunga-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kanchenjunga/web/Kanchenjunga-Bold.woff2", "packagepath": "web/Kanchenjunga-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kanchenjunga/web/Kanchenjunga-Bold.woff2", "zippath": "Kanchenjunga-2.001/web/Kanchenjunga-Bold.woff2" }, + "Kanchenjunga-Medium.ttf": { "altfamily": "Kanchenjunga Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kanchenjunga/Kanchenjunga-Medium.ttf", "packagepath": "Kanchenjunga-Medium.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kanchenjunga/Kanchenjunga-Medium.ttf", "zippath": "Kanchenjunga-2.001/Kanchenjunga-Medium.ttf" }, + "Kanchenjunga-Medium.woff": { "altfamily": "Kanchenjunga Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kanchenjunga/web/Kanchenjunga-Medium.woff", "packagepath": "web/Kanchenjunga-Medium.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kanchenjunga/web/Kanchenjunga-Medium.woff", "zippath": "Kanchenjunga-2.001/web/Kanchenjunga-Medium.woff" }, + "Kanchenjunga-Medium.woff2": { "altfamily": "Kanchenjunga Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kanchenjunga/web/Kanchenjunga-Medium.woff2", "packagepath": "web/Kanchenjunga-Medium.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kanchenjunga/web/Kanchenjunga-Medium.woff2", "zippath": "Kanchenjunga-2.001/web/Kanchenjunga-Medium.woff2" }, + "Kanchenjunga-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kanchenjunga/Kanchenjunga-Regular.ttf", "packagepath": "Kanchenjunga-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kanchenjunga/Kanchenjunga-Regular.ttf", "zippath": "Kanchenjunga-2.001/Kanchenjunga-Regular.ttf" }, + "Kanchenjunga-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kanchenjunga/web/Kanchenjunga-Regular.woff", "packagepath": "web/Kanchenjunga-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kanchenjunga/web/Kanchenjunga-Regular.woff", "zippath": "Kanchenjunga-2.001/web/Kanchenjunga-Regular.woff" }, + "Kanchenjunga-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kanchenjunga/web/Kanchenjunga-Regular.woff2", "packagepath": "web/Kanchenjunga-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kanchenjunga/web/Kanchenjunga-Regular.woff2", "zippath": "Kanchenjunga-2.001/web/Kanchenjunga-Regular.woff2" }, + "Kanchenjunga-SemiBold.ttf": { "altfamily": "Kanchenjunga SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kanchenjunga/Kanchenjunga-SemiBold.ttf", "packagepath": "Kanchenjunga-SemiBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kanchenjunga/Kanchenjunga-SemiBold.ttf", "zippath": "Kanchenjunga-2.001/Kanchenjunga-SemiBold.ttf" }, + "Kanchenjunga-SemiBold.woff": { "altfamily": "Kanchenjunga SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kanchenjunga/web/Kanchenjunga-SemiBold.woff", "packagepath": "web/Kanchenjunga-SemiBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kanchenjunga/web/Kanchenjunga-SemiBold.woff", "zippath": "Kanchenjunga-2.001/web/Kanchenjunga-SemiBold.woff" }, + "Kanchenjunga-SemiBold.woff2": { "altfamily": "Kanchenjunga SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kanchenjunga/web/Kanchenjunga-SemiBold.woff2", "packagepath": "web/Kanchenjunga-SemiBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kanchenjunga/web/Kanchenjunga-SemiBold.woff2", "zippath": "Kanchenjunga-2.001/web/Kanchenjunga-SemiBold.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/kanchenjunga/Kanchenjunga-2.001.zip", + "siteurl": "https://software.sil.org/kanchenjunga/", + "source": "SIL", + "status": "current", + "version": "2.001", + "ziproot": "Kanchenjunga-2.001" +}, +"kartika": { + "distributable": false, + "fallback": "bailey", + "family": "Kartika", + "familyid": "kartika", + "license": "proprietary", + "source": "Microsoft" +}, +"kayahli": { + "distributable": false, + "fallback": "kayphodu", + "family": "Kayahli", + "familyid": "kayahli" +}, +"kayphodu": { + "defaults": { + "ttf": "KayPhoDu-Regular.ttf", + "woff": "KayPhoDu-Regular.woff", + "woff2": "KayPhoDu-Regular.woff2" + }, + "distributable": true, + "family": "Kay Pho Du", + "familyid": "kayphodu", + "files": { + "KayPhoDu-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kayphodu/KayPhoDu-Bold.ttf", "packagepath": "KayPhoDu-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kayphodu/KayPhoDu-Bold.ttf", "zippath": "KayPhoDu-3.000/KayPhoDu-Bold.ttf" }, + "KayPhoDu-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kayphodu/web/KayPhoDu-Bold.woff", "packagepath": "web/KayPhoDu-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kayphodu/web/KayPhoDu-Bold.woff", "zippath": "KayPhoDu-3.000/web/KayPhoDu-Bold.woff" }, + "KayPhoDu-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kayphodu/web/KayPhoDu-Bold.woff2", "packagepath": "web/KayPhoDu-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kayphodu/web/KayPhoDu-Bold.woff2", "zippath": "KayPhoDu-3.000/web/KayPhoDu-Bold.woff2" }, + "KayPhoDu-Medium.ttf": { "altfamily": "Kay Pho Du Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kayphodu/KayPhoDu-Medium.ttf", "packagepath": "KayPhoDu-Medium.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kayphodu/KayPhoDu-Medium.ttf", "zippath": "KayPhoDu-3.000/KayPhoDu-Medium.ttf" }, + "KayPhoDu-Medium.woff": { "altfamily": "Kay Pho Du Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kayphodu/web/KayPhoDu-Medium.woff", "packagepath": "web/KayPhoDu-Medium.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kayphodu/web/KayPhoDu-Medium.woff", "zippath": "KayPhoDu-3.000/web/KayPhoDu-Medium.woff" }, + "KayPhoDu-Medium.woff2": { "altfamily": "Kay Pho Du Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kayphodu/web/KayPhoDu-Medium.woff2", "packagepath": "web/KayPhoDu-Medium.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kayphodu/web/KayPhoDu-Medium.woff2", "zippath": "KayPhoDu-3.000/web/KayPhoDu-Medium.woff2" }, + "KayPhoDu-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kayphodu/KayPhoDu-Regular.ttf", "packagepath": "KayPhoDu-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kayphodu/KayPhoDu-Regular.ttf", "zippath": "KayPhoDu-3.000/KayPhoDu-Regular.ttf" }, + "KayPhoDu-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kayphodu/web/KayPhoDu-Regular.woff", "packagepath": "web/KayPhoDu-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kayphodu/web/KayPhoDu-Regular.woff", "zippath": "KayPhoDu-3.000/web/KayPhoDu-Regular.woff" }, + "KayPhoDu-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kayphodu/web/KayPhoDu-Regular.woff2", "packagepath": "web/KayPhoDu-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kayphodu/web/KayPhoDu-Regular.woff2", "zippath": "KayPhoDu-3.000/web/KayPhoDu-Regular.woff2" }, + "KayPhoDu-SemiBold.ttf": { "altfamily": "Kay Pho Du SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kayphodu/KayPhoDu-SemiBold.ttf", "packagepath": "KayPhoDu-SemiBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kayphodu/KayPhoDu-SemiBold.ttf", "zippath": "KayPhoDu-3.000/KayPhoDu-SemiBold.ttf" }, + "KayPhoDu-SemiBold.woff": { "altfamily": "Kay Pho Du SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kayphodu/web/KayPhoDu-SemiBold.woff", "packagepath": "web/KayPhoDu-SemiBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kayphodu/web/KayPhoDu-SemiBold.woff", "zippath": "KayPhoDu-3.000/web/KayPhoDu-SemiBold.woff" }, + "KayPhoDu-SemiBold.woff2": { "altfamily": "Kay Pho Du SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/kayphodu/web/KayPhoDu-SemiBold.woff2", "packagepath": "web/KayPhoDu-SemiBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/kayphodu/web/KayPhoDu-SemiBold.woff2", "zippath": "KayPhoDu-3.000/web/KayPhoDu-SemiBold.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/kayphodu/KayPhoDu-3.000.zip", + "siteurl": "https://software.sil.org/kayphodu/", + "source": "SIL", + "status": "current", + "version": "3.000", + "ziproot": "KayPhoDu-3.000" +}, +"khmerbarkaew": { + "distributable": false, + "fallback": "khmerbusra", + "family": "Khmer Barkaew", + "familyid": "khmerbarkaew" +}, +"khmerbusra": { + "defaults": { + "ttf": "Busra-R.ttf" + }, + "distributable": true, + "family": "Khmer Busra", + "familyid": "khmerbusra", + "files": { + "Busra-B.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/khmerbusra/Busra-B.ttf", "packagepath": "Busra-B.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/khmerbusra/Busra-B.ttf", "zippath": "Mondulkiri-7.100/Busra-B.ttf" }, + "Busra-BI.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/khmerbusra/Busra-BI.ttf", "packagepath": "Busra-BI.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/khmerbusra/Busra-BI.ttf", "zippath": "Mondulkiri-7.100/Busra-BI.ttf" }, + "Busra-I.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/khmerbusra/Busra-I.ttf", "packagepath": "Busra-I.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/khmerbusra/Busra-I.ttf", "zippath": "Mondulkiri-7.100/Busra-I.ttf" }, + "Busra-R.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/khmerbusra/Busra-R.ttf", "packagepath": "Busra-R.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/khmerbusra/Busra-R.ttf", "zippath": "Mondulkiri-7.100/Busra-R.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/mondulkiri/Mondulkiri-7.100.zip", + "siteurl": "https://software.sil.org/Mondulkiri/", + "source": "SIL", + "status": "current", + "version": "7.100", + "ziproot": "Mondulkiri-7.100" +}, +"khmerbusrabunong": { + "defaults": { + "ttf": "Mo5V56xs.ttf" + }, + "distributable": true, + "fallback": "khmerbusra", + "family": "Khmer Busra xspace", + "familyid": "khmerbusrabunong", + "files": { + "Mo5V56Bu.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56Bu.ttf", "zippath": "Mondulkiri-5.300/Mo5V56Bu.ttf" }, + "Mo5V56MO.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56MO.ttf", "zippath": "Mondulkiri-5.300/Mo5V56MO.ttf" }, + "Mo5V56dc.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56dc.ttf", "zippath": "Mondulkiri-5.300/Mo5V56dc.ttf" }, + "Mo5V56di.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56di.ttf", "zippath": "Mondulkiri-5.300/Mo5V56di.ttf" }, + "Mo5V56do.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56do.ttf", "zippath": "Mondulkiri-5.300/Mo5V56do.ttf" }, + "Mo5V56hi.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56hi.ttf", "zippath": "Mondulkiri-5.300/Mo5V56hi.ttf" }, + "Mo5V56xs.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56xs.ttf", "zippath": "Mondulkiri-5.300/Mo5V56xs.ttf" }, + "Mo9V55.ttf": { "axes": { "ital": 0, "wght": 900.0 }, "packagepath": "Mondulkiri-5.300/Mo9V55.ttf", "zippath": "Mondulkiri-5.300/Mo9V55.ttf" }, + "RataV53.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/RataV53.ttf", "zippath": "Mondulkiri-5.300/RataV53.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/mondulkiri/Mondulkiri-5.300.zip", + "siteurl": "https://software.sil.org/Mondulkiri/", + "source": "SIL", + "status": "archived", + "version": "5.300", + "ziproot": "" +}, +"khmerbusradiagnostic": { + "defaults": { + "ttf": "Mo5V56xs.ttf" + }, + "distributable": true, + "fallback": "khmerbusra", + "family": "Khmer Busra xspace", + "familyid": "khmerbusradiagnostic", + "files": { + "Mo5V56Bu.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56Bu.ttf", "zippath": "Mondulkiri-5.300/Mo5V56Bu.ttf" }, + "Mo5V56MO.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56MO.ttf", "zippath": "Mondulkiri-5.300/Mo5V56MO.ttf" }, + "Mo5V56dc.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56dc.ttf", "zippath": "Mondulkiri-5.300/Mo5V56dc.ttf" }, + "Mo5V56di.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56di.ttf", "zippath": "Mondulkiri-5.300/Mo5V56di.ttf" }, + "Mo5V56do.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56do.ttf", "zippath": "Mondulkiri-5.300/Mo5V56do.ttf" }, + "Mo5V56hi.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56hi.ttf", "zippath": "Mondulkiri-5.300/Mo5V56hi.ttf" }, + "Mo5V56xs.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56xs.ttf", "zippath": "Mondulkiri-5.300/Mo5V56xs.ttf" }, + "Mo9V55.ttf": { "axes": { "ital": 0, "wght": 900.0 }, "packagepath": "Mondulkiri-5.300/Mo9V55.ttf", "zippath": "Mondulkiri-5.300/Mo9V55.ttf" }, + "RataV53.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/RataV53.ttf", "zippath": "Mondulkiri-5.300/RataV53.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/mondulkiri/Mondulkiri-5.300.zip", + "siteurl": "https://software.sil.org/Mondulkiri/", + "source": "SIL", + "status": "archived", + "version": "5.300", + "ziproot": "" +}, +"khmerbusradict": { + "defaults": { + "ttf": "Mo5V56xs.ttf" + }, + "distributable": true, + "fallback": "khmerbusra", + "family": "Khmer Busra xspace", + "familyid": "khmerbusradict", + "files": { + "Mo5V56Bu.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56Bu.ttf", "zippath": "Mondulkiri-5.300/Mo5V56Bu.ttf" }, + "Mo5V56MO.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56MO.ttf", "zippath": "Mondulkiri-5.300/Mo5V56MO.ttf" }, + "Mo5V56dc.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56dc.ttf", "zippath": "Mondulkiri-5.300/Mo5V56dc.ttf" }, + "Mo5V56di.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56di.ttf", "zippath": "Mondulkiri-5.300/Mo5V56di.ttf" }, + "Mo5V56do.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56do.ttf", "zippath": "Mondulkiri-5.300/Mo5V56do.ttf" }, + "Mo5V56hi.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56hi.ttf", "zippath": "Mondulkiri-5.300/Mo5V56hi.ttf" }, + "Mo5V56xs.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56xs.ttf", "zippath": "Mondulkiri-5.300/Mo5V56xs.ttf" }, + "Mo9V55.ttf": { "axes": { "ital": 0, "wght": 900.0 }, "packagepath": "Mondulkiri-5.300/Mo9V55.ttf", "zippath": "Mondulkiri-5.300/Mo9V55.ttf" }, + "RataV53.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/RataV53.ttf", "zippath": "Mondulkiri-5.300/RataV53.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/mondulkiri/Mondulkiri-5.300.zip", + "siteurl": "https://software.sil.org/Mondulkiri/", + "source": "SIL", + "status": "archived", + "version": "5.300", + "ziproot": "" +}, +"khmerbusradot": { + "defaults": { + "ttf": "Mo5V56xs.ttf" + }, + "distributable": true, + "fallback": "khmerbusra", + "family": "Khmer Busra xspace", + "familyid": "khmerbusradot", + "files": { + "Mo5V56Bu.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56Bu.ttf", "zippath": "Mondulkiri-5.300/Mo5V56Bu.ttf" }, + "Mo5V56MO.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56MO.ttf", "zippath": "Mondulkiri-5.300/Mo5V56MO.ttf" }, + "Mo5V56dc.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56dc.ttf", "zippath": "Mondulkiri-5.300/Mo5V56dc.ttf" }, + "Mo5V56di.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56di.ttf", "zippath": "Mondulkiri-5.300/Mo5V56di.ttf" }, + "Mo5V56do.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56do.ttf", "zippath": "Mondulkiri-5.300/Mo5V56do.ttf" }, + "Mo5V56hi.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56hi.ttf", "zippath": "Mondulkiri-5.300/Mo5V56hi.ttf" }, + "Mo5V56xs.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56xs.ttf", "zippath": "Mondulkiri-5.300/Mo5V56xs.ttf" }, + "Mo9V55.ttf": { "axes": { "ital": 0, "wght": 900.0 }, "packagepath": "Mondulkiri-5.300/Mo9V55.ttf", "zippath": "Mondulkiri-5.300/Mo9V55.ttf" }, + "RataV53.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/RataV53.ttf", "zippath": "Mondulkiri-5.300/RataV53.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/mondulkiri/Mondulkiri-5.300.zip", + "siteurl": "https://software.sil.org/Mondulkiri/", + "source": "SIL", + "status": "archived", + "version": "5.300", + "ziproot": "" +}, +"khmerbusrahigh": { + "defaults": { + "ttf": "Mo5V56xs.ttf" + }, + "distributable": true, + "fallback": "khmerbusra", + "family": "Khmer Busra xspace", + "familyid": "khmerbusrahigh", + "files": { + "Mo5V56Bu.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56Bu.ttf", "zippath": "Mondulkiri-5.300/Mo5V56Bu.ttf" }, + "Mo5V56MO.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56MO.ttf", "zippath": "Mondulkiri-5.300/Mo5V56MO.ttf" }, + "Mo5V56dc.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56dc.ttf", "zippath": "Mondulkiri-5.300/Mo5V56dc.ttf" }, + "Mo5V56di.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56di.ttf", "zippath": "Mondulkiri-5.300/Mo5V56di.ttf" }, + "Mo5V56do.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56do.ttf", "zippath": "Mondulkiri-5.300/Mo5V56do.ttf" }, + "Mo5V56hi.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56hi.ttf", "zippath": "Mondulkiri-5.300/Mo5V56hi.ttf" }, + "Mo5V56xs.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56xs.ttf", "zippath": "Mondulkiri-5.300/Mo5V56xs.ttf" }, + "Mo9V55.ttf": { "axes": { "ital": 0, "wght": 900.0 }, "packagepath": "Mondulkiri-5.300/Mo9V55.ttf", "zippath": "Mondulkiri-5.300/Mo9V55.ttf" }, + "RataV53.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/RataV53.ttf", "zippath": "Mondulkiri-5.300/RataV53.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/mondulkiri/Mondulkiri-5.300.zip", + "siteurl": "https://software.sil.org/Mondulkiri/", + "source": "SIL", + "status": "archived", + "version": "5.300", + "ziproot": "" +}, +"khmerbusramoe": { + "defaults": { + "ttf": "Mo5V56xs.ttf" + }, + "distributable": true, + "fallback": "khmerbusra", + "family": "Khmer Busra xspace", + "familyid": "khmerbusramoe", + "files": { + "Mo5V56Bu.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56Bu.ttf", "zippath": "Mondulkiri-5.300/Mo5V56Bu.ttf" }, + "Mo5V56MO.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56MO.ttf", "zippath": "Mondulkiri-5.300/Mo5V56MO.ttf" }, + "Mo5V56dc.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56dc.ttf", "zippath": "Mondulkiri-5.300/Mo5V56dc.ttf" }, + "Mo5V56di.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56di.ttf", "zippath": "Mondulkiri-5.300/Mo5V56di.ttf" }, + "Mo5V56do.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56do.ttf", "zippath": "Mondulkiri-5.300/Mo5V56do.ttf" }, + "Mo5V56hi.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56hi.ttf", "zippath": "Mondulkiri-5.300/Mo5V56hi.ttf" }, + "Mo5V56xs.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56xs.ttf", "zippath": "Mondulkiri-5.300/Mo5V56xs.ttf" }, + "Mo9V55.ttf": { "axes": { "ital": 0, "wght": 900.0 }, "packagepath": "Mondulkiri-5.300/Mo9V55.ttf", "zippath": "Mondulkiri-5.300/Mo9V55.ttf" }, + "RataV53.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/RataV53.ttf", "zippath": "Mondulkiri-5.300/RataV53.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/mondulkiri/Mondulkiri-5.300.zip", + "siteurl": "https://software.sil.org/Mondulkiri/", + "source": "SIL", + "status": "archived", + "version": "5.300", + "ziproot": "" +}, +"khmerbusraxspace": { + "defaults": { + "ttf": "Mo5V56xs.ttf" + }, + "distributable": true, + "fallback": "khmerbusra", + "family": "Khmer Busra xspace", + "familyid": "khmerbusraxspace", + "files": { + "Mo5V56Bu.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56Bu.ttf", "zippath": "Mondulkiri-5.300/Mo5V56Bu.ttf" }, + "Mo5V56MO.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56MO.ttf", "zippath": "Mondulkiri-5.300/Mo5V56MO.ttf" }, + "Mo5V56dc.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56dc.ttf", "zippath": "Mondulkiri-5.300/Mo5V56dc.ttf" }, + "Mo5V56di.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56di.ttf", "zippath": "Mondulkiri-5.300/Mo5V56di.ttf" }, + "Mo5V56do.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56do.ttf", "zippath": "Mondulkiri-5.300/Mo5V56do.ttf" }, + "Mo5V56hi.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56hi.ttf", "zippath": "Mondulkiri-5.300/Mo5V56hi.ttf" }, + "Mo5V56xs.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56xs.ttf", "zippath": "Mondulkiri-5.300/Mo5V56xs.ttf" }, + "Mo9V55.ttf": { "axes": { "ital": 0, "wght": 900.0 }, "packagepath": "Mondulkiri-5.300/Mo9V55.ttf", "zippath": "Mondulkiri-5.300/Mo9V55.ttf" }, + "RataV53.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/RataV53.ttf", "zippath": "Mondulkiri-5.300/RataV53.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/mondulkiri/Mondulkiri-5.300.zip", + "siteurl": "https://software.sil.org/Mondulkiri/", + "source": "SIL", + "status": "archived", + "version": "5.300", + "ziproot": "" +}, +"khmerdakdam": { + "distributable": false, + "fallback": "khmerbusra", + "family": "Khmer Dakdam", + "familyid": "khmerdakdam" +}, +"khmermondulkiri": { + "defaults": { + "ttf": "Mondulkiri-R.ttf" + }, + "distributable": true, + "family": "Khmer Mondulkiri", + "familyid": "khmermondulkiri", + "files": { + "Mondulkiri-B.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/khmermondulkiri/Mondulkiri-B.ttf", "packagepath": "Mondulkiri-B.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/khmermondulkiri/Mondulkiri-B.ttf", "zippath": "Mondulkiri-7.100/Mondulkiri-B.ttf" }, + "Mondulkiri-BI.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/khmermondulkiri/Mondulkiri-BI.ttf", "packagepath": "Mondulkiri-BI.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/khmermondulkiri/Mondulkiri-BI.ttf", "zippath": "Mondulkiri-7.100/Mondulkiri-BI.ttf" }, + "Mondulkiri-I.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/khmermondulkiri/Mondulkiri-I.ttf", "packagepath": "Mondulkiri-I.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/khmermondulkiri/Mondulkiri-I.ttf", "zippath": "Mondulkiri-7.100/Mondulkiri-I.ttf" }, + "Mondulkiri-R.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/khmermondulkiri/Mondulkiri-R.ttf", "packagepath": "Mondulkiri-R.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/khmermondulkiri/Mondulkiri-R.ttf", "zippath": "Mondulkiri-7.100/Mondulkiri-R.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/mondulkiri/Mondulkiri-7.100.zip", + "siteurl": "https://software.sil.org/Mondulkiri/", + "source": "SIL", + "status": "current", + "version": "7.100", + "ziproot": "Mondulkiri-7.100" +}, +"khmeroureang": { + "defaults": { + "ttf": "Mo5V56xs.ttf" + }, + "distributable": true, + "fallback": "khmerbusra", + "family": "Khmer Busra xspace", + "familyid": "khmeroureang", + "files": { + "Mo5V56Bu.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56Bu.ttf", "zippath": "Mondulkiri-5.300/Mo5V56Bu.ttf" }, + "Mo5V56MO.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56MO.ttf", "zippath": "Mondulkiri-5.300/Mo5V56MO.ttf" }, + "Mo5V56dc.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56dc.ttf", "zippath": "Mondulkiri-5.300/Mo5V56dc.ttf" }, + "Mo5V56di.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56di.ttf", "zippath": "Mondulkiri-5.300/Mo5V56di.ttf" }, + "Mo5V56do.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56do.ttf", "zippath": "Mondulkiri-5.300/Mo5V56do.ttf" }, + "Mo5V56hi.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56hi.ttf", "zippath": "Mondulkiri-5.300/Mo5V56hi.ttf" }, + "Mo5V56xs.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56xs.ttf", "zippath": "Mondulkiri-5.300/Mo5V56xs.ttf" }, + "Mo9V55.ttf": { "axes": { "ital": 0, "wght": 900.0 }, "packagepath": "Mondulkiri-5.300/Mo9V55.ttf", "zippath": "Mondulkiri-5.300/Mo9V55.ttf" }, + "RataV53.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/RataV53.ttf", "zippath": "Mondulkiri-5.300/RataV53.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/mondulkiri/Mondulkiri-5.300.zip", + "siteurl": "https://software.sil.org/Mondulkiri/", + "source": "SIL", + "status": "archived", + "version": "5.300", + "ziproot": "" +}, +"khmerratanakiri": { + "defaults": { + "ttf": "Mo5V56xs.ttf" + }, + "distributable": true, + "fallback": "khmerbusra", + "family": "Khmer Busra xspace", + "familyid": "khmerratanakiri", + "files": { + "Mo5V56Bu.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56Bu.ttf", "zippath": "Mondulkiri-5.300/Mo5V56Bu.ttf" }, + "Mo5V56MO.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56MO.ttf", "zippath": "Mondulkiri-5.300/Mo5V56MO.ttf" }, + "Mo5V56dc.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56dc.ttf", "zippath": "Mondulkiri-5.300/Mo5V56dc.ttf" }, + "Mo5V56di.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56di.ttf", "zippath": "Mondulkiri-5.300/Mo5V56di.ttf" }, + "Mo5V56do.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56do.ttf", "zippath": "Mondulkiri-5.300/Mo5V56do.ttf" }, + "Mo5V56hi.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56hi.ttf", "zippath": "Mondulkiri-5.300/Mo5V56hi.ttf" }, + "Mo5V56xs.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/Mo5V56xs.ttf", "zippath": "Mondulkiri-5.300/Mo5V56xs.ttf" }, + "Mo9V55.ttf": { "axes": { "ital": 0, "wght": 900.0 }, "packagepath": "Mondulkiri-5.300/Mo9V55.ttf", "zippath": "Mondulkiri-5.300/Mo9V55.ttf" }, + "RataV53.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Mondulkiri-5.300/RataV53.ttf", "zippath": "Mondulkiri-5.300/RataV53.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/mondulkiri/Mondulkiri-5.300.zip", + "siteurl": "https://software.sil.org/Mondulkiri/", + "source": "SIL", + "status": "archived", + "version": "5.300", + "ziproot": "" +}, +"kyebogyisil": { + "distributable": true, + "fallback": "kayphodu", + "family": "Kyebogyi SIL", + "familyid": "kyebogyisil", + "license": "OFL", + "packageurl": "https://github.com/silnrsi/font-kyebogyi/raw/master/srcs/Kyebogyi_SIL.ttf", + "siteurl": "https://github.com/silnrsi/font-kyebogyi", + "source": "SIL", + "status": "deprecated", + "version": "1.000" +}, +"lateef": { + "defaults": { + "ttf": "Lateef-Regular.ttf", + "woff": "Lateef-Regular.woff", + "woff2": "Lateef-Regular.woff2" + }, + "distributable": true, + "family": "Lateef", + "familyid": "lateef", + "files": { + "Lateef-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/Lateef-Bold.ttf", "packagepath": "Lateef-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/Lateef-Bold.ttf", "zippath": "Lateef-4.300/Lateef-Bold.ttf" }, + "Lateef-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/web/Lateef-Bold.woff", "packagepath": "web/Lateef-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/web/Lateef-Bold.woff", "zippath": "Lateef-4.300/web/Lateef-Bold.woff" }, + "Lateef-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/web/Lateef-Bold.woff2", "packagepath": "web/Lateef-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/web/Lateef-Bold.woff2", "zippath": "Lateef-4.300/web/Lateef-Bold.woff2" }, + "Lateef-ExtraBold.ttf": { "altfamily": "Lateef ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/Lateef-ExtraBold.ttf", "packagepath": "Lateef-ExtraBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/Lateef-ExtraBold.ttf", "zippath": "Lateef-4.300/Lateef-ExtraBold.ttf" }, + "Lateef-ExtraBold.woff": { "altfamily": "Lateef ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/web/Lateef-ExtraBold.woff", "packagepath": "web/Lateef-ExtraBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/web/Lateef-ExtraBold.woff", "zippath": "Lateef-4.300/web/Lateef-ExtraBold.woff" }, + "Lateef-ExtraBold.woff2": { "altfamily": "Lateef ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/web/Lateef-ExtraBold.woff2", "packagepath": "web/Lateef-ExtraBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/web/Lateef-ExtraBold.woff2", "zippath": "Lateef-4.300/web/Lateef-ExtraBold.woff2" }, + "Lateef-ExtraLight.ttf": { "altfamily": "Lateef ExtraLight", "axes": { "ital": 0, "wght": 200.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/Lateef-ExtraLight.ttf", "packagepath": "Lateef-ExtraLight.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/Lateef-ExtraLight.ttf", "zippath": "Lateef-4.300/Lateef-ExtraLight.ttf" }, + "Lateef-ExtraLight.woff": { "altfamily": "Lateef ExtraLight", "axes": { "ital": 0, "wght": 200.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/web/Lateef-ExtraLight.woff", "packagepath": "web/Lateef-ExtraLight.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/web/Lateef-ExtraLight.woff", "zippath": "Lateef-4.300/web/Lateef-ExtraLight.woff" }, + "Lateef-ExtraLight.woff2": { "altfamily": "Lateef ExtraLight", "axes": { "ital": 0, "wght": 200.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/web/Lateef-ExtraLight.woff2", "packagepath": "web/Lateef-ExtraLight.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/web/Lateef-ExtraLight.woff2", "zippath": "Lateef-4.300/web/Lateef-ExtraLight.woff2" }, + "Lateef-Light.ttf": { "altfamily": "Lateef Light", "axes": { "ital": 0, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/Lateef-Light.ttf", "packagepath": "Lateef-Light.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/Lateef-Light.ttf", "zippath": "Lateef-4.300/Lateef-Light.ttf" }, + "Lateef-Light.woff": { "altfamily": "Lateef Light", "axes": { "ital": 0, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/web/Lateef-Light.woff", "packagepath": "web/Lateef-Light.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/web/Lateef-Light.woff", "zippath": "Lateef-4.300/web/Lateef-Light.woff" }, + "Lateef-Light.woff2": { "altfamily": "Lateef Light", "axes": { "ital": 0, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/web/Lateef-Light.woff2", "packagepath": "web/Lateef-Light.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/web/Lateef-Light.woff2", "zippath": "Lateef-4.300/web/Lateef-Light.woff2" }, + "Lateef-Medium.ttf": { "altfamily": "Lateef Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/Lateef-Medium.ttf", "packagepath": "Lateef-Medium.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/Lateef-Medium.ttf", "zippath": "Lateef-4.300/Lateef-Medium.ttf" }, + "Lateef-Medium.woff": { "altfamily": "Lateef Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/web/Lateef-Medium.woff", "packagepath": "web/Lateef-Medium.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/web/Lateef-Medium.woff", "zippath": "Lateef-4.300/web/Lateef-Medium.woff" }, + "Lateef-Medium.woff2": { "altfamily": "Lateef Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/web/Lateef-Medium.woff2", "packagepath": "web/Lateef-Medium.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/web/Lateef-Medium.woff2", "zippath": "Lateef-4.300/web/Lateef-Medium.woff2" }, + "Lateef-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/Lateef-Regular.ttf", "packagepath": "Lateef-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/Lateef-Regular.ttf", "zippath": "Lateef-4.300/Lateef-Regular.ttf" }, + "Lateef-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/web/Lateef-Regular.woff", "packagepath": "web/Lateef-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/web/Lateef-Regular.woff", "zippath": "Lateef-4.300/web/Lateef-Regular.woff" }, + "Lateef-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/web/Lateef-Regular.woff2", "packagepath": "web/Lateef-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/web/Lateef-Regular.woff2", "zippath": "Lateef-4.300/web/Lateef-Regular.woff2" }, + "Lateef-SemiBold.ttf": { "altfamily": "Lateef SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/Lateef-SemiBold.ttf", "packagepath": "Lateef-SemiBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/Lateef-SemiBold.ttf", "zippath": "Lateef-4.300/Lateef-SemiBold.ttf" }, + "Lateef-SemiBold.woff": { "altfamily": "Lateef SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/web/Lateef-SemiBold.woff", "packagepath": "web/Lateef-SemiBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/web/Lateef-SemiBold.woff", "zippath": "Lateef-4.300/web/Lateef-SemiBold.woff" }, + "Lateef-SemiBold.woff2": { "altfamily": "Lateef SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lateef/web/Lateef-SemiBold.woff2", "packagepath": "web/Lateef-SemiBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lateef/web/Lateef-SemiBold.woff2", "zippath": "Lateef-4.300/web/Lateef-SemiBold.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lateef/Lateef-4.300.zip", + "siteurl": "https://software.sil.org/lateef/", + "source": "SIL", + "status": "current", + "version": "4.300", + "ziproot": "Lateef-4.300" +}, +"lateefgr": { + "defaults": { + "ttf": "LateefGR-Regular.ttf", + "woff": "LateefGR-Regular.woff" + }, + "distributable": true, + "fallback": "lateef", + "family": "LateefGR", + "familyid": "lateefgr", + "files": { + "LateefGR-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "LateefGR-1.200/LateefGR-Regular.ttf", "zippath": "LateefGR-1.200/LateefGR-Regular.ttf" }, + "LateefGR-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "LateefGR-1.200/web/LateefGR-Regular.woff", "zippath": "LateefGR-1.200/web/LateefGR-Regular.woff" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lateef/LateefGR-1.200.zip", + "siteurl": "https://software.sil.org/lateef/", + "source": "SIL", + "status": "archived", + "version": "1.200", + "ziproot": "" +}, +"latha": { + "distributable": false, + "fallback": "thiruvalluvar", + "family": "Latha", + "familyid": "latha", + "license": "proprietary", + "source": "Microsoft" +}, +"lisubosa": { + "defaults": { + "ttf": "LisuBosa-Regular.ttf", + "woff": "LisuBosa-Regular.woff", + "woff2": "LisuBosa-Regular.woff2" + }, + "distributable": true, + "family": "Lisu Bosa", + "familyid": "lisubosa", + "files": { + "LisuBosa-Black.ttf": { "altfamily": "Lisu Bosa Black", "axes": { "ital": 0, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-Black.ttf", "packagepath": "LisuBosa-Black.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-Black.ttf", "zippath": "LisuBosa-2.000/LisuBosa-Black.ttf" }, + "LisuBosa-Black.woff": { "altfamily": "Lisu Bosa Black", "axes": { "ital": 0, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-Black.woff", "packagepath": "web/LisuBosa-Black.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-Black.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-Black.woff" }, + "LisuBosa-Black.woff2": { "altfamily": "Lisu Bosa Black", "axes": { "ital": 0, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-Black.woff2", "packagepath": "web/LisuBosa-Black.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-Black.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-Black.woff2" }, + "LisuBosa-BlackItalic.ttf": { "altfamily": "Lisu Bosa Black", "axes": { "ital": 1, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-BlackItalic.ttf", "packagepath": "LisuBosa-BlackItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-BlackItalic.ttf", "zippath": "LisuBosa-2.000/LisuBosa-BlackItalic.ttf" }, + "LisuBosa-BlackItalic.woff": { "altfamily": "Lisu Bosa Black", "axes": { "ital": 1, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-BlackItalic.woff", "packagepath": "web/LisuBosa-BlackItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-BlackItalic.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-BlackItalic.woff" }, + "LisuBosa-BlackItalic.woff2": { "altfamily": "Lisu Bosa Black", "axes": { "ital": 1, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-BlackItalic.woff2", "packagepath": "web/LisuBosa-BlackItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-BlackItalic.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-BlackItalic.woff2" }, + "LisuBosa-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-Bold.ttf", "packagepath": "LisuBosa-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-Bold.ttf", "zippath": "LisuBosa-2.000/LisuBosa-Bold.ttf" }, + "LisuBosa-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-Bold.woff", "packagepath": "web/LisuBosa-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-Bold.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-Bold.woff" }, + "LisuBosa-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-Bold.woff2", "packagepath": "web/LisuBosa-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-Bold.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-Bold.woff2" }, + "LisuBosa-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-BoldItalic.ttf", "packagepath": "LisuBosa-BoldItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-BoldItalic.ttf", "zippath": "LisuBosa-2.000/LisuBosa-BoldItalic.ttf" }, + "LisuBosa-BoldItalic.woff": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-BoldItalic.woff", "packagepath": "web/LisuBosa-BoldItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-BoldItalic.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-BoldItalic.woff" }, + "LisuBosa-BoldItalic.woff2": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-BoldItalic.woff2", "packagepath": "web/LisuBosa-BoldItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-BoldItalic.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-BoldItalic.woff2" }, + "LisuBosa-ExtraBold.ttf": { "altfamily": "Lisu Bosa ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-ExtraBold.ttf", "packagepath": "LisuBosa-ExtraBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-ExtraBold.ttf", "zippath": "LisuBosa-2.000/LisuBosa-ExtraBold.ttf" }, + "LisuBosa-ExtraBold.woff": { "altfamily": "Lisu Bosa ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-ExtraBold.woff", "packagepath": "web/LisuBosa-ExtraBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-ExtraBold.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-ExtraBold.woff" }, + "LisuBosa-ExtraBold.woff2": { "altfamily": "Lisu Bosa ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-ExtraBold.woff2", "packagepath": "web/LisuBosa-ExtraBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-ExtraBold.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-ExtraBold.woff2" }, + "LisuBosa-ExtraBoldItalic.ttf": { "altfamily": "Lisu Bosa ExtraBold", "axes": { "ital": 1, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-ExtraBoldItalic.ttf", "packagepath": "LisuBosa-ExtraBoldItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-ExtraBoldItalic.ttf", "zippath": "LisuBosa-2.000/LisuBosa-ExtraBoldItalic.ttf" }, + "LisuBosa-ExtraBoldItalic.woff": { "altfamily": "Lisu Bosa ExtraBold", "axes": { "ital": 1, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-ExtraBoldItalic.woff", "packagepath": "web/LisuBosa-ExtraBoldItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-ExtraBoldItalic.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-ExtraBoldItalic.woff" }, + "LisuBosa-ExtraBoldItalic.woff2": { "altfamily": "Lisu Bosa ExtraBold", "axes": { "ital": 1, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-ExtraBoldItalic.woff2", "packagepath": "web/LisuBosa-ExtraBoldItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-ExtraBoldItalic.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-ExtraBoldItalic.woff2" }, + "LisuBosa-ExtraLight.ttf": { "altfamily": "Lisu Bosa ExtraLight", "axes": { "ital": 0, "wght": 200.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-ExtraLight.ttf", "packagepath": "LisuBosa-ExtraLight.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-ExtraLight.ttf", "zippath": "LisuBosa-2.000/LisuBosa-ExtraLight.ttf" }, + "LisuBosa-ExtraLight.woff": { "altfamily": "Lisu Bosa ExtraLight", "axes": { "ital": 0, "wght": 200.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-ExtraLight.woff", "packagepath": "web/LisuBosa-ExtraLight.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-ExtraLight.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-ExtraLight.woff" }, + "LisuBosa-ExtraLight.woff2": { "altfamily": "Lisu Bosa ExtraLight", "axes": { "ital": 0, "wght": 200.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-ExtraLight.woff2", "packagepath": "web/LisuBosa-ExtraLight.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-ExtraLight.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-ExtraLight.woff2" }, + "LisuBosa-ExtraLightItalic.ttf": { "altfamily": "Lisu Bosa ExtraLight", "axes": { "ital": 1, "wght": 200.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-ExtraLightItalic.ttf", "packagepath": "LisuBosa-ExtraLightItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-ExtraLightItalic.ttf", "zippath": "LisuBosa-2.000/LisuBosa-ExtraLightItalic.ttf" }, + "LisuBosa-ExtraLightItalic.woff": { "altfamily": "Lisu Bosa ExtraLight", "axes": { "ital": 1, "wght": 200.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-ExtraLightItalic.woff", "packagepath": "web/LisuBosa-ExtraLightItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-ExtraLightItalic.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-ExtraLightItalic.woff" }, + "LisuBosa-ExtraLightItalic.woff2": { "altfamily": "Lisu Bosa ExtraLight", "axes": { "ital": 1, "wght": 200.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-ExtraLightItalic.woff2", "packagepath": "web/LisuBosa-ExtraLightItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-ExtraLightItalic.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-ExtraLightItalic.woff2" }, + "LisuBosa-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-Italic.ttf", "packagepath": "LisuBosa-Italic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-Italic.ttf", "zippath": "LisuBosa-2.000/LisuBosa-Italic.ttf" }, + "LisuBosa-Italic.woff": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-Italic.woff", "packagepath": "web/LisuBosa-Italic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-Italic.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-Italic.woff" }, + "LisuBosa-Italic.woff2": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-Italic.woff2", "packagepath": "web/LisuBosa-Italic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-Italic.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-Italic.woff2" }, + "LisuBosa-Light.ttf": { "altfamily": "Lisu Bosa Light", "axes": { "ital": 0, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-Light.ttf", "packagepath": "LisuBosa-Light.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-Light.ttf", "zippath": "LisuBosa-2.000/LisuBosa-Light.ttf" }, + "LisuBosa-Light.woff": { "altfamily": "Lisu Bosa Light", "axes": { "ital": 0, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-Light.woff", "packagepath": "web/LisuBosa-Light.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-Light.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-Light.woff" }, + "LisuBosa-Light.woff2": { "altfamily": "Lisu Bosa Light", "axes": { "ital": 0, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-Light.woff2", "packagepath": "web/LisuBosa-Light.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-Light.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-Light.woff2" }, + "LisuBosa-LightItalic.ttf": { "altfamily": "Lisu Bosa Light", "axes": { "ital": 1, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-LightItalic.ttf", "packagepath": "LisuBosa-LightItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-LightItalic.ttf", "zippath": "LisuBosa-2.000/LisuBosa-LightItalic.ttf" }, + "LisuBosa-LightItalic.woff": { "altfamily": "Lisu Bosa Light", "axes": { "ital": 1, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-LightItalic.woff", "packagepath": "web/LisuBosa-LightItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-LightItalic.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-LightItalic.woff" }, + "LisuBosa-LightItalic.woff2": { "altfamily": "Lisu Bosa Light", "axes": { "ital": 1, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-LightItalic.woff2", "packagepath": "web/LisuBosa-LightItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-LightItalic.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-LightItalic.woff2" }, + "LisuBosa-Medium.ttf": { "altfamily": "Lisu Bosa Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-Medium.ttf", "packagepath": "LisuBosa-Medium.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-Medium.ttf", "zippath": "LisuBosa-2.000/LisuBosa-Medium.ttf" }, + "LisuBosa-Medium.woff": { "altfamily": "Lisu Bosa Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-Medium.woff", "packagepath": "web/LisuBosa-Medium.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-Medium.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-Medium.woff" }, + "LisuBosa-Medium.woff2": { "altfamily": "Lisu Bosa Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-Medium.woff2", "packagepath": "web/LisuBosa-Medium.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-Medium.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-Medium.woff2" }, + "LisuBosa-MediumItalic.ttf": { "altfamily": "Lisu Bosa Medium", "axes": { "ital": 1, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-MediumItalic.ttf", "packagepath": "LisuBosa-MediumItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-MediumItalic.ttf", "zippath": "LisuBosa-2.000/LisuBosa-MediumItalic.ttf" }, + "LisuBosa-MediumItalic.woff": { "altfamily": "Lisu Bosa Medium", "axes": { "ital": 1, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-MediumItalic.woff", "packagepath": "web/LisuBosa-MediumItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-MediumItalic.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-MediumItalic.woff" }, + "LisuBosa-MediumItalic.woff2": { "altfamily": "Lisu Bosa Medium", "axes": { "ital": 1, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-MediumItalic.woff2", "packagepath": "web/LisuBosa-MediumItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-MediumItalic.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-MediumItalic.woff2" }, + "LisuBosa-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-Regular.ttf", "packagepath": "LisuBosa-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-Regular.ttf", "zippath": "LisuBosa-2.000/LisuBosa-Regular.ttf" }, + "LisuBosa-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-Regular.woff", "packagepath": "web/LisuBosa-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-Regular.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-Regular.woff" }, + "LisuBosa-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-Regular.woff2", "packagepath": "web/LisuBosa-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-Regular.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-Regular.woff2" }, + "LisuBosa-SemiBold.ttf": { "altfamily": "Lisu Bosa SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-SemiBold.ttf", "packagepath": "LisuBosa-SemiBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-SemiBold.ttf", "zippath": "LisuBosa-2.000/LisuBosa-SemiBold.ttf" }, + "LisuBosa-SemiBold.woff": { "altfamily": "Lisu Bosa SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-SemiBold.woff", "packagepath": "web/LisuBosa-SemiBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-SemiBold.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-SemiBold.woff" }, + "LisuBosa-SemiBold.woff2": { "altfamily": "Lisu Bosa SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-SemiBold.woff2", "packagepath": "web/LisuBosa-SemiBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-SemiBold.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-SemiBold.woff2" }, + "LisuBosa-SemiBoldItalic.ttf": { "altfamily": "Lisu Bosa SemiBold", "axes": { "ital": 1, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/LisuBosa-SemiBoldItalic.ttf", "packagepath": "LisuBosa-SemiBoldItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/LisuBosa-SemiBoldItalic.ttf", "zippath": "LisuBosa-2.000/LisuBosa-SemiBoldItalic.ttf" }, + "LisuBosa-SemiBoldItalic.woff": { "altfamily": "Lisu Bosa SemiBold", "axes": { "ital": 1, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-SemiBoldItalic.woff", "packagepath": "web/LisuBosa-SemiBoldItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-SemiBoldItalic.woff", "zippath": "LisuBosa-2.000/web/LisuBosa-SemiBoldItalic.woff" }, + "LisuBosa-SemiBoldItalic.woff2": { "altfamily": "Lisu Bosa SemiBold", "axes": { "ital": 1, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosa/web/LisuBosa-SemiBoldItalic.woff2", "packagepath": "web/LisuBosa-SemiBoldItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosa/web/LisuBosa-SemiBoldItalic.woff2", "zippath": "LisuBosa-2.000/web/LisuBosa-SemiBoldItalic.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lisubosa/LisuBosa-2.000.zip", + "siteurl": "https://software.sil.org/lisubosa/", + "source": "SIL", + "status": "current", + "version": "2.000", + "ziproot": "LisuBosa-2.000" +}, +"lisubosalolo": { + "defaults": { + "ttf": "LisuBosaLolo-Regular.ttf" + }, + "distributable": true, + "family": "Lisu Bosa Lolo", + "familyid": "lisubosalolo", + "files": { + "LisuBosaLolo-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosalolo/LisuBosaLolo-Bold.ttf", "packagepath": "LisuBosaLolo-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosalolo/LisuBosaLolo-Bold.ttf", "zippath": "LisuBosaLolo-2.000/LisuBosaLolo-Bold.ttf" }, + "LisuBosaLolo-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosalolo/LisuBosaLolo-BoldItalic.ttf", "packagepath": "LisuBosaLolo-BoldItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosalolo/LisuBosaLolo-BoldItalic.ttf", "zippath": "LisuBosaLolo-2.000/LisuBosaLolo-BoldItalic.ttf" }, + "LisuBosaLolo-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosalolo/LisuBosaLolo-Italic.ttf", "packagepath": "LisuBosaLolo-Italic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosalolo/LisuBosaLolo-Italic.ttf", "zippath": "LisuBosaLolo-2.000/LisuBosaLolo-Italic.ttf" }, + "LisuBosaLolo-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/lisubosalolo/LisuBosaLolo-Regular.ttf", "packagepath": "LisuBosaLolo-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/lisubosalolo/LisuBosaLolo-Regular.ttf", "zippath": "LisuBosaLolo-2.000/LisuBosaLolo-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/lisubosa/LisuBosaLolo-2.000.zip", + "siteurl": "https://software.sil.org/lisubosa/", + "source": "SIL", + "status": "current", + "version": "2.000", + "ziproot": "LisuBosaLolo-2.000" +}, +"lisutzimu": { + "distributable": true, + "fallback": "lisubosa", + "family": "LisuTzimu", + "familyid": "lisutzimu", + "license": "OFL", + "packageurl": "https://github.com/silnrsi/font-lisutzimu/releases/download/v2.000/LisuTzimu-2.000.zip", + "siteurl": "https://github.com/silnrsi/font-lisutzimu", + "source": "SIL", + "status": "deprecated", + "version": "2.000" +}, +"mangal": { + "distributable": false, + "fallback": "annapurnasil", + "family": "Mangal", + "familyid": "mangal", + "license": "proprietary", + "source": "Microsoft" +}, +"microsofthimalaya": { + "distributable": false, + "fallback": "notoseriftibetan", + "family": "Microsoft Himalaya", + "familyid": "microsofthimalaya", + "license": "proprietary", + "source": "Microsoft" +}, +"mingzat": { + "defaults": { + "ttf": "Mingzat-Regular.ttf", + "woff": "Mingzat-Regular.woff", + "woff2": "Mingzat-Regular.woff2" + }, + "distributable": true, + "family": "Mingzat", + "familyid": "mingzat", + "files": { + "Mingzat-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/mingzat/Mingzat-Regular.ttf", "packagepath": "Mingzat-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/mingzat/Mingzat-Regular.ttf", "zippath": "Mingzat-1.100/Mingzat-Regular.ttf" }, + "Mingzat-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/mingzat/web/Mingzat-Regular.woff", "packagepath": "web/Mingzat-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/mingzat/web/Mingzat-Regular.woff", "zippath": "Mingzat-1.100/web/Mingzat-Regular.woff" }, + "Mingzat-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/mingzat/web/Mingzat-Regular.woff2", "packagepath": "web/Mingzat-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/mingzat/web/Mingzat-Regular.woff2", "zippath": "Mingzat-1.100/web/Mingzat-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/mingzat/Mingzat-1.100.zip", + "siteurl": "https://software.sil.org/Mingzat/", + "source": "SIL", + "status": "current", + "version": "1.100", + "ziproot": "Mingzat-1.100" +}, +"namdhinggo": { + "defaults": { + "ttf": "Namdhinggo-Regular.ttf", + "woff": "Namdhinggo-Regular.woff", + "woff2": "Namdhinggo-Regular.woff2" + }, + "distributable": true, + "family": "Namdhinggo", + "familyid": "namdhinggo", + "files": { + "Namdhinggo-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/namdhinggo/Namdhinggo-Bold.ttf", "packagepath": "Namdhinggo-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/namdhinggo/Namdhinggo-Bold.ttf", "zippath": "Namdhinggo-3.100/Namdhinggo-Bold.ttf" }, + "Namdhinggo-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/namdhinggo/web/Namdhinggo-Bold.woff", "packagepath": "web/Namdhinggo-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/namdhinggo/web/Namdhinggo-Bold.woff", "zippath": "Namdhinggo-3.100/web/Namdhinggo-Bold.woff" }, + "Namdhinggo-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/namdhinggo/web/Namdhinggo-Bold.woff2", "packagepath": "web/Namdhinggo-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/namdhinggo/web/Namdhinggo-Bold.woff2", "zippath": "Namdhinggo-3.100/web/Namdhinggo-Bold.woff2" }, + "Namdhinggo-ExtraBold.ttf": { "altfamily": "Namdhinggo ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/namdhinggo/Namdhinggo-ExtraBold.ttf", "packagepath": "Namdhinggo-ExtraBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/namdhinggo/Namdhinggo-ExtraBold.ttf", "zippath": "Namdhinggo-3.100/Namdhinggo-ExtraBold.ttf" }, + "Namdhinggo-ExtraBold.woff": { "altfamily": "Namdhinggo ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/namdhinggo/web/Namdhinggo-ExtraBold.woff", "packagepath": "web/Namdhinggo-ExtraBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/namdhinggo/web/Namdhinggo-ExtraBold.woff", "zippath": "Namdhinggo-3.100/web/Namdhinggo-ExtraBold.woff" }, + "Namdhinggo-ExtraBold.woff2": { "altfamily": "Namdhinggo ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/namdhinggo/web/Namdhinggo-ExtraBold.woff2", "packagepath": "web/Namdhinggo-ExtraBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/namdhinggo/web/Namdhinggo-ExtraBold.woff2", "zippath": "Namdhinggo-3.100/web/Namdhinggo-ExtraBold.woff2" }, + "Namdhinggo-Medium.ttf": { "altfamily": "Namdhinggo Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/namdhinggo/Namdhinggo-Medium.ttf", "packagepath": "Namdhinggo-Medium.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/namdhinggo/Namdhinggo-Medium.ttf", "zippath": "Namdhinggo-3.100/Namdhinggo-Medium.ttf" }, + "Namdhinggo-Medium.woff": { "altfamily": "Namdhinggo Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/namdhinggo/web/Namdhinggo-Medium.woff", "packagepath": "web/Namdhinggo-Medium.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/namdhinggo/web/Namdhinggo-Medium.woff", "zippath": "Namdhinggo-3.100/web/Namdhinggo-Medium.woff" }, + "Namdhinggo-Medium.woff2": { "altfamily": "Namdhinggo Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/namdhinggo/web/Namdhinggo-Medium.woff2", "packagepath": "web/Namdhinggo-Medium.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/namdhinggo/web/Namdhinggo-Medium.woff2", "zippath": "Namdhinggo-3.100/web/Namdhinggo-Medium.woff2" }, + "Namdhinggo-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/namdhinggo/Namdhinggo-Regular.ttf", "packagepath": "Namdhinggo-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/namdhinggo/Namdhinggo-Regular.ttf", "zippath": "Namdhinggo-3.100/Namdhinggo-Regular.ttf" }, + "Namdhinggo-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/namdhinggo/web/Namdhinggo-Regular.woff", "packagepath": "web/Namdhinggo-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/namdhinggo/web/Namdhinggo-Regular.woff", "zippath": "Namdhinggo-3.100/web/Namdhinggo-Regular.woff" }, + "Namdhinggo-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/namdhinggo/web/Namdhinggo-Regular.woff2", "packagepath": "web/Namdhinggo-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/namdhinggo/web/Namdhinggo-Regular.woff2", "zippath": "Namdhinggo-3.100/web/Namdhinggo-Regular.woff2" }, + "Namdhinggo-SemiBold.ttf": { "altfamily": "Namdhinggo SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/namdhinggo/Namdhinggo-SemiBold.ttf", "packagepath": "Namdhinggo-SemiBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/namdhinggo/Namdhinggo-SemiBold.ttf", "zippath": "Namdhinggo-3.100/Namdhinggo-SemiBold.ttf" }, + "Namdhinggo-SemiBold.woff": { "altfamily": "Namdhinggo SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/namdhinggo/web/Namdhinggo-SemiBold.woff", "packagepath": "web/Namdhinggo-SemiBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/namdhinggo/web/Namdhinggo-SemiBold.woff", "zippath": "Namdhinggo-3.100/web/Namdhinggo-SemiBold.woff" }, + "Namdhinggo-SemiBold.woff2": { "altfamily": "Namdhinggo SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/namdhinggo/web/Namdhinggo-SemiBold.woff2", "packagepath": "web/Namdhinggo-SemiBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/namdhinggo/web/Namdhinggo-SemiBold.woff2", "zippath": "Namdhinggo-3.100/web/Namdhinggo-SemiBold.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/namdhinggo/Namdhinggo-3.100.zip", + "siteurl": "https://software.sil.org/Namdhinggo/", + "source": "SIL", + "status": "current", + "version": "3.100", + "ziproot": "Namdhinggo-3.100" +}, +"namdhinggosil": { + "defaults": { + "ttf": "NamdhinggoSIL-Regular.ttf", + "woff": "NamdhinggoSIL-Regular.woff", + "woff2": "NamdhinggoSIL-Regular.woff2" + }, + "distributable": true, + "fallback": "namdhinggo", + "family": "Namdhinggo SIL", + "familyid": "namdhinggosil", + "files": { + "NamdhinggoSIL-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "NamdhinggoSIL-2.000/NamdhinggoSIL-Regular.ttf", "zippath": "NamdhinggoSIL-2.000/NamdhinggoSIL-Regular.ttf" }, + "NamdhinggoSIL-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "NamdhinggoSIL-2.000/woff/NamdhinggoSIL-Regular.woff", "zippath": "NamdhinggoSIL-2.000/woff/NamdhinggoSIL-Regular.woff" }, + "NamdhinggoSIL-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "NamdhinggoSIL-2.000/woff/NamdhinggoSIL-Regular.woff2", "zippath": "NamdhinggoSIL-2.000/woff/NamdhinggoSIL-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/namdhinggo/NamdhinggoSIL-2.000.zip", + "siteurl": "https://software.sil.org/Namdhinggo/", + "source": "SIL", + "status": "archived", + "version": "2.000", + "ziproot": "" +}, +"narnoor": { + "defaults": { + "ttf": "Narnoor-Regular.ttf", + "woff": "Narnoor-Regular.woff", + "woff2": "Narnoor-Regular.woff2" + }, + "distributable": true, + "family": "Narnoor", + "familyid": "narnoor", + "files": { + "Narnoor-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/narnoor/Narnoor-Bold.ttf", "packagepath": "Narnoor-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/narnoor/Narnoor-Bold.ttf", "zippath": "Narnoor-3.000/Narnoor-Bold.ttf" }, + "Narnoor-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/narnoor/web/Narnoor-Bold.woff", "packagepath": "web/Narnoor-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/narnoor/web/Narnoor-Bold.woff", "zippath": "Narnoor-3.000/web/Narnoor-Bold.woff" }, + "Narnoor-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/narnoor/web/Narnoor-Bold.woff2", "packagepath": "web/Narnoor-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/narnoor/web/Narnoor-Bold.woff2", "zippath": "Narnoor-3.000/web/Narnoor-Bold.woff2" }, + "Narnoor-ExtraBold.ttf": { "altfamily": "Narnoor ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/narnoor/Narnoor-ExtraBold.ttf", "packagepath": "Narnoor-ExtraBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/narnoor/Narnoor-ExtraBold.ttf", "zippath": "Narnoor-3.000/Narnoor-ExtraBold.ttf" }, + "Narnoor-ExtraBold.woff": { "altfamily": "Narnoor ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/narnoor/web/Narnoor-ExtraBold.woff", "packagepath": "web/Narnoor-ExtraBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/narnoor/web/Narnoor-ExtraBold.woff", "zippath": "Narnoor-3.000/web/Narnoor-ExtraBold.woff" }, + "Narnoor-ExtraBold.woff2": { "altfamily": "Narnoor ExtraBold", "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/narnoor/web/Narnoor-ExtraBold.woff2", "packagepath": "web/Narnoor-ExtraBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/narnoor/web/Narnoor-ExtraBold.woff2", "zippath": "Narnoor-3.000/web/Narnoor-ExtraBold.woff2" }, + "Narnoor-Medium.ttf": { "altfamily": "Narnoor Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/narnoor/Narnoor-Medium.ttf", "packagepath": "Narnoor-Medium.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/narnoor/Narnoor-Medium.ttf", "zippath": "Narnoor-3.000/Narnoor-Medium.ttf" }, + "Narnoor-Medium.woff": { "altfamily": "Narnoor Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/narnoor/web/Narnoor-Medium.woff", "packagepath": "web/Narnoor-Medium.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/narnoor/web/Narnoor-Medium.woff", "zippath": "Narnoor-3.000/web/Narnoor-Medium.woff" }, + "Narnoor-Medium.woff2": { "altfamily": "Narnoor Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/narnoor/web/Narnoor-Medium.woff2", "packagepath": "web/Narnoor-Medium.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/narnoor/web/Narnoor-Medium.woff2", "zippath": "Narnoor-3.000/web/Narnoor-Medium.woff2" }, + "Narnoor-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/narnoor/Narnoor-Regular.ttf", "packagepath": "Narnoor-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/narnoor/Narnoor-Regular.ttf", "zippath": "Narnoor-3.000/Narnoor-Regular.ttf" }, + "Narnoor-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/narnoor/web/Narnoor-Regular.woff", "packagepath": "web/Narnoor-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/narnoor/web/Narnoor-Regular.woff", "zippath": "Narnoor-3.000/web/Narnoor-Regular.woff" }, + "Narnoor-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/narnoor/web/Narnoor-Regular.woff2", "packagepath": "web/Narnoor-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/narnoor/web/Narnoor-Regular.woff2", "zippath": "Narnoor-3.000/web/Narnoor-Regular.woff2" }, + "Narnoor-SemiBold.ttf": { "altfamily": "Narnoor SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/narnoor/Narnoor-SemiBold.ttf", "packagepath": "Narnoor-SemiBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/narnoor/Narnoor-SemiBold.ttf", "zippath": "Narnoor-3.000/Narnoor-SemiBold.ttf" }, + "Narnoor-SemiBold.woff": { "altfamily": "Narnoor SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/narnoor/web/Narnoor-SemiBold.woff", "packagepath": "web/Narnoor-SemiBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/narnoor/web/Narnoor-SemiBold.woff", "zippath": "Narnoor-3.000/web/Narnoor-SemiBold.woff" }, + "Narnoor-SemiBold.woff2": { "altfamily": "Narnoor SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/narnoor/web/Narnoor-SemiBold.woff2", "packagepath": "web/Narnoor-SemiBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/narnoor/web/Narnoor-SemiBold.woff2", "zippath": "Narnoor-3.000/web/Narnoor-SemiBold.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/narnoor/Narnoor-3.000.zip", + "siteurl": "https://software.sil.org/narnoor/", + "source": "SIL", + "status": "current", + "version": "3.000", + "ziproot": "Narnoor-3.000" +}, +"nokyung": { + "defaults": { + "ttf": "Nokyung-Regular.ttf", + "woff": "Nokyung-Regular.woff" + }, + "distributable": true, + "family": "Nokyung", + "familyid": "nokyung", + "files": { + "Nokyung-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/nokyung/Nokyung-Bold.ttf", "packagepath": "Nokyung-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/nokyung/Nokyung-Bold.ttf", "zippath": "Nokyung-1.490-dev-e7e323M/Nokyung-Bold.ttf" }, + "Nokyung-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/nokyung/web/Nokyung-Bold.woff", "packagepath": "web/Nokyung-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/nokyung/web/Nokyung-Bold.woff", "zippath": "Nokyung-1.490-dev-e7e323M/web/Nokyung-Bold.woff" }, + "Nokyung-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/nokyung/Nokyung-Regular.ttf", "packagepath": "Nokyung-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/nokyung/Nokyung-Regular.ttf", "zippath": "Nokyung-1.490-dev-e7e323M/Nokyung-Regular.ttf" }, + "Nokyung-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/nokyung/web/Nokyung-Regular.woff", "packagepath": "web/Nokyung-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/nokyung/web/Nokyung-Regular.woff", "zippath": "Nokyung-1.490-dev-e7e323M/web/Nokyung-Regular.woff" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/nokyung/Nokyung-1.490-dev-e7e323M.zip", + "siteurl": "https://software.sil.org/Nokyung/", + "source": "SIL", + "status": "current", + "version": "1.490", + "ziproot": "Nokyung-1.490-dev-e7e323M" +}, +"notonaskharabicui": { + "defaults": { + "ttf": "NotoNaskhArabicUI-Regular.ttf" + }, + "distributable": true, + "family": "Noto Naskh Arabic UI", + "familyid": "notonaskharabicui", + "files": { + "NotoNaskhArabicUI-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoNaskhArabicUI-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoNaskhArabicUI/full/ttf/NotoNaskhArabicUI-Bold.ttf", "zippath": "NotoNaskhArabicUI/full/ttf/NotoNaskhArabicUI-Bold.ttf" }, + "NotoNaskhArabicUI-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoNaskhArabicUI-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoNaskhArabicUI/full/ttf/NotoNaskhArabicUI-Medium.ttf", "zippath": "NotoNaskhArabicUI/full/ttf/NotoNaskhArabicUI-Medium.ttf" }, + "NotoNaskhArabicUI-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoNaskhArabicUI-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoNaskhArabicUI/full/ttf/NotoNaskhArabicUI-Regular.ttf", "zippath": "NotoNaskhArabicUI/full/ttf/NotoNaskhArabicUI-Regular.ttf" }, + "NotoNaskhArabicUI-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoNaskhArabicUI-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoNaskhArabicUI/full/ttf/NotoNaskhArabicUI-SemiBold.ttf", "zippath": "NotoNaskhArabicUI/full/ttf/NotoNaskhArabicUI-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/arabic/releases/download/NotoNaskhArabicUI-v2.014/NotoNaskhArabicUI-v2.014.zip", + "siteurl": "https://github.com/notofonts/arabic/releases/tag/NotoNaskhArabicUI-v2.014", + "source": "Google", + "status": "current", + "version": "2.014", + "ziproot": "NotoNaskhArabicUI" +}, +"notonastaliqurdu": { + "defaults": { + "ttf": "NotoNastaliqUrdu-Regular.ttf" + }, + "distributable": true, + "family": "Noto Nastaliq Urdu", + "familyid": "notonastaliqurdu", + "files": { + "NotoNastaliqUrdu-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoNastaliqUrdu-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoNastaliqUrdu/full/ttf/NotoNastaliqUrdu-Bold.ttf", "zippath": "NotoNastaliqUrdu/full/ttf/NotoNastaliqUrdu-Bold.ttf" }, + "NotoNastaliqUrdu-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoNastaliqUrdu-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoNastaliqUrdu/full/ttf/NotoNastaliqUrdu-Regular.ttf", "zippath": "NotoNastaliqUrdu/full/ttf/NotoNastaliqUrdu-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/nastaliq/releases/download/NotoNastaliqUrdu-v3.007/NotoNastaliqUrdu-v3.007.zip", + "siteurl": "https://github.com/notofonts/nastaliq/releases/tag/NotoNastaliqUrdu-v3.007", + "source": "Google", + "status": "current", + "version": "3.007", + "ziproot": "NotoNastaliqUrdu" +}, +"notosans": { + "defaults": { + "ttf": "NotoSans-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans", + "familyid": "notosans", + "files": { + "NotoSans-Black.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSans-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-Black.ttf", "zippath": "NotoSans/full/ttf/NotoSans-Black.ttf" }, + "NotoSans-BlackItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSans-BlackItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-BlackItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-BlackItalic.ttf" }, + "NotoSans-Bold.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSans-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-Bold.ttf", "zippath": "NotoSans/full/ttf/NotoSans-Bold.ttf" }, + "NotoSans-BoldItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSans-BoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-BoldItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-BoldItalic.ttf" }, + "NotoSans-Condensed.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSans-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-Condensed.ttf", "zippath": "NotoSans/full/ttf/NotoSans-Condensed.ttf" }, + "NotoSans-CondensedBlack.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSans-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedBlack.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedBlack.ttf" }, + "NotoSans-CondensedBlackItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSans-CondensedBlackItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedBlackItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedBlackItalic.ttf" }, + "NotoSans-CondensedBold.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSans-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedBold.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedBold.ttf" }, + "NotoSans-CondensedBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSans-CondensedBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedBoldItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedBoldItalic.ttf" }, + "NotoSans-CondensedExtraBold.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSans-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedExtraBold.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedExtraBold.ttf" }, + "NotoSans-CondensedExtraBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSans-CondensedExtraBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedExtraBoldItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedExtraBoldItalic.ttf" }, + "NotoSans-CondensedExtraLight.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSans-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedExtraLight.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedExtraLight.ttf" }, + "NotoSans-CondensedExtraLightItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSans-CondensedExtraLightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedExtraLightItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedExtraLightItalic.ttf" }, + "NotoSans-CondensedItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSans-CondensedItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedItalic.ttf" }, + "NotoSans-CondensedLight.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSans-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedLight.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedLight.ttf" }, + "NotoSans-CondensedLightItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSans-CondensedLightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedLightItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedLightItalic.ttf" }, + "NotoSans-CondensedMedium.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSans-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedMedium.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedMedium.ttf" }, + "NotoSans-CondensedMediumItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSans-CondensedMediumItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedMediumItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedMediumItalic.ttf" }, + "NotoSans-CondensedSemiBold.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSans-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedSemiBold.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedSemiBold.ttf" }, + "NotoSans-CondensedSemiBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSans-CondensedSemiBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedSemiBoldItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedSemiBoldItalic.ttf" }, + "NotoSans-CondensedThin.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSans-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedThin.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedThin.ttf" }, + "NotoSans-CondensedThinItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSans-CondensedThinItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-CondensedThinItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-CondensedThinItalic.ttf" }, + "NotoSans-ExtraBold.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSans-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraBold.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraBold.ttf" }, + "NotoSans-ExtraBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSans-ExtraBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraBoldItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraBoldItalic.ttf" }, + "NotoSans-ExtraCondensed.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensed.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensed.ttf" }, + "NotoSans-ExtraCondensedBlack.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedBlack.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedBlack.ttf" }, + "NotoSans-ExtraCondensedBlackItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedBlackItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedBlackItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedBlackItalic.ttf" }, + "NotoSans-ExtraCondensedBold.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedBold.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedBold.ttf" }, + "NotoSans-ExtraCondensedBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedBoldItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedBoldItalic.ttf" }, + "NotoSans-ExtraCondensedExtraBold.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedExtraBold.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedExtraBold.ttf" }, + "NotoSans-ExtraCondensedExtraBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedExtraBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedExtraBoldItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedExtraBoldItalic.ttf" }, + "NotoSans-ExtraCondensedExtraLight.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedExtraLight.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedExtraLight.ttf" }, + "NotoSans-ExtraCondensedExtraLightItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedExtraLightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedExtraLightItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedExtraLightItalic.ttf" }, + "NotoSans-ExtraCondensedItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedItalic.ttf" }, + "NotoSans-ExtraCondensedLight.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedLight.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedLight.ttf" }, + "NotoSans-ExtraCondensedLightItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedLightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedLightItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedLightItalic.ttf" }, + "NotoSans-ExtraCondensedMedium.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedMedium.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedMedium.ttf" }, + "NotoSans-ExtraCondensedMediumItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedMediumItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedMediumItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedMediumItalic.ttf" }, + "NotoSans-ExtraCondensedSemiBold.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedSemiBold.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedSemiBold.ttf" }, + "NotoSans-ExtraCondensedSemiBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedSemiBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedSemiBoldItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedSemiBoldItalic.ttf" }, + "NotoSans-ExtraCondensedThin.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedThin.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedThin.ttf" }, + "NotoSans-ExtraCondensedThinItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSans-ExtraCondensedThinItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedThinItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraCondensedThinItalic.ttf" }, + "NotoSans-ExtraLight.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSans-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraLight.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraLight.ttf" }, + "NotoSans-ExtraLightItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSans-ExtraLightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ExtraLightItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ExtraLightItalic.ttf" }, + "NotoSans-Italic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSans-Italic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-Italic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-Italic.ttf" }, + "NotoSans-Light.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSans-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-Light.ttf", "zippath": "NotoSans/full/ttf/NotoSans-Light.ttf" }, + "NotoSans-LightItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSans-LightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-LightItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-LightItalic.ttf" }, + "NotoSans-Medium.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSans-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-Medium.ttf", "zippath": "NotoSans/full/ttf/NotoSans-Medium.ttf" }, + "NotoSans-MediumItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSans-MediumItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-MediumItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-MediumItalic.ttf" }, + "NotoSans-Regular.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSans-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-Regular.ttf", "zippath": "NotoSans/full/ttf/NotoSans-Regular.ttf" }, + "NotoSans-SemiBold.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSans-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiBold.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiBold.ttf" }, + "NotoSans-SemiBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSans-SemiBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiBoldItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiBoldItalic.ttf" }, + "NotoSans-SemiCondensed.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensed.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensed.ttf" }, + "NotoSans-SemiCondensedBlack.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedBlack.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedBlack.ttf" }, + "NotoSans-SemiCondensedBlackItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedBlackItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedBlackItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedBlackItalic.ttf" }, + "NotoSans-SemiCondensedBold.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedBold.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedBold.ttf" }, + "NotoSans-SemiCondensedBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedBoldItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedBoldItalic.ttf" }, + "NotoSans-SemiCondensedExtraBold.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedExtraBold.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedExtraBold.ttf" }, + "NotoSans-SemiCondensedExtraBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedExtraBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedExtraBoldItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedExtraBoldItalic.ttf" }, + "NotoSans-SemiCondensedExtraLight.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedExtraLight.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedExtraLight.ttf" }, + "NotoSans-SemiCondensedExtraLightItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedExtraLightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedExtraLightItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedExtraLightItalic.ttf" }, + "NotoSans-SemiCondensedItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedItalic.ttf" }, + "NotoSans-SemiCondensedLight.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedLight.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedLight.ttf" }, + "NotoSans-SemiCondensedLightItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedLightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedLightItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedLightItalic.ttf" }, + "NotoSans-SemiCondensedMedium.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedMedium.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedMedium.ttf" }, + "NotoSans-SemiCondensedMediumItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedMediumItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedMediumItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedMediumItalic.ttf" }, + "NotoSans-SemiCondensedSemiBold.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedSemiBold.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedSemiBold.ttf" }, + "NotoSans-SemiCondensedSemiBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedSemiBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedSemiBoldItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedSemiBoldItalic.ttf" }, + "NotoSans-SemiCondensedThin.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedThin.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedThin.ttf" }, + "NotoSans-SemiCondensedThinItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSans-SemiCondensedThinItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-SemiCondensedThinItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-SemiCondensedThinItalic.ttf" }, + "NotoSans-Thin.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSans-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-Thin.ttf", "zippath": "NotoSans/full/ttf/NotoSans-Thin.ttf" }, + "NotoSans-ThinItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSans-ThinItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSans/full/ttf/NotoSans-ThinItalic.ttf", "zippath": "NotoSans/full/ttf/NotoSans-ThinItalic.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/latin-greek-cyrillic/releases/download/NotoSans-v2.012/NotoSans-v2.012.zip", + "siteurl": "https://github.com/notofonts/latin-greek-cyrillic/releases/tag/NotoSans-v2.012", + "source": "Google", + "status": "current", + "version": "2.012", + "ziproot": "NotoSans" +}, +"notosansadlam": { + "defaults": { + "ttf": "NotoSansAdlam-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Adlam", + "familyid": "notosansadlam", + "files": { + "NotoSansAdlam-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansAdlam-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansAdlam/full/ttf/NotoSansAdlam-Bold.ttf", "zippath": "NotoSansAdlam/full/ttf/NotoSansAdlam-Bold.ttf" }, + "NotoSansAdlam-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansAdlam-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansAdlam/full/ttf/NotoSansAdlam-Regular.ttf", "zippath": "NotoSansAdlam/full/ttf/NotoSansAdlam-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/adlam/releases/download/NotoSansAdlam-v3.001/NotoSansAdlam-v3.001.zip", + "siteurl": "https://github.com/notofonts/adlam/releases/tag/NotoSansAdlam-v3.001", + "source": "Google", + "status": "current", + "version": "3.001", + "ziproot": "NotoSansAdlam" +}, +"notosansanatolianhieroglyphs": { + "defaults": { + "ttf": "NotoSansAnatolianHieroglyphs-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Anatolian Hieroglyphs", + "familyid": "notosansanatolianhieroglyphs", + "files": { + "NotoSansAnatolianHieroglyphs-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansAnatolianHieroglyphs-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansAnatolianHieroglyphs/full/ttf/NotoSansAnatolianHieroglyphs-Regular.ttf", "zippath": "NotoSansAnatolianHieroglyphs/full/ttf/NotoSansAnatolianHieroglyphs-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/anatolian-hieroglyphs/releases/download/NotoSansAnatolianHieroglyphs-v2.001/NotoSansAnatolianHieroglyphs-v2.001.zip", + "siteurl": "https://github.com/notofonts/anatolian-hieroglyphs/releases/tag/NotoSansAnatolianHieroglyphs-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansAnatolianHieroglyphs" +}, +"notosansarabic": { + "defaults": { + "ttf": "NotoSansArabic-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Arabic", + "familyid": "notosansarabic", + "files": { + "NotoSansArabic-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansArabic-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-Black.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-Black.ttf" }, + "NotoSansArabic-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansArabic-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-Bold.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-Bold.ttf" }, + "NotoSansArabic-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansArabic-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-Condensed.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-Condensed.ttf" }, + "NotoSansArabic-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansArabic-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedBlack.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-CondensedBlack.ttf" }, + "NotoSansArabic-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansArabic-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedBold.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-CondensedBold.ttf" }, + "NotoSansArabic-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansArabic-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedExtraBold.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-CondensedExtraBold.ttf" }, + "NotoSansArabic-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansArabic-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedExtraLight.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-CondensedExtraLight.ttf" }, + "NotoSansArabic-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansArabic-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedLight.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-CondensedLight.ttf" }, + "NotoSansArabic-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansArabic-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedMedium.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-CondensedMedium.ttf" }, + "NotoSansArabic-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansArabic-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedSemiBold.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-CondensedSemiBold.ttf" }, + "NotoSansArabic-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansArabic-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedThin.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-CondensedThin.ttf" }, + "NotoSansArabic-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansArabic-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraBold.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-ExtraBold.ttf" }, + "NotoSansArabic-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansArabic-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensed.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensed.ttf" }, + "NotoSansArabic-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansArabic-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedBlack.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedBlack.ttf" }, + "NotoSansArabic-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansArabic-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedBold.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedBold.ttf" }, + "NotoSansArabic-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansArabic-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedExtraBold.ttf" }, + "NotoSansArabic-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansArabic-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedExtraLight.ttf" }, + "NotoSansArabic-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansArabic-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedLight.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedLight.ttf" }, + "NotoSansArabic-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansArabic-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedMedium.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedMedium.ttf" }, + "NotoSansArabic-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansArabic-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedSemiBold.ttf" }, + "NotoSansArabic-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansArabic-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedThin.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedThin.ttf" }, + "NotoSansArabic-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansArabic-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraLight.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-ExtraLight.ttf" }, + "NotoSansArabic-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansArabic-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-Light.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-Light.ttf" }, + "NotoSansArabic-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansArabic-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-Medium.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-Medium.ttf" }, + "NotoSansArabic-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansArabic-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-Regular.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-Regular.ttf" }, + "NotoSansArabic-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansArabic-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiBold.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-SemiBold.ttf" }, + "NotoSansArabic-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansArabic-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensed.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensed.ttf" }, + "NotoSansArabic-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansArabic-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedBlack.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedBlack.ttf" }, + "NotoSansArabic-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansArabic-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedBold.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedBold.ttf" }, + "NotoSansArabic-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansArabic-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedExtraBold.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedExtraBold.ttf" }, + "NotoSansArabic-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansArabic-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedExtraLight.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedExtraLight.ttf" }, + "NotoSansArabic-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansArabic-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedLight.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedLight.ttf" }, + "NotoSansArabic-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansArabic-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedMedium.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedMedium.ttf" }, + "NotoSansArabic-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansArabic-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedSemiBold.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedSemiBold.ttf" }, + "NotoSansArabic-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansArabic-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedThin.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedThin.ttf" }, + "NotoSansArabic-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansArabic-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArabic/full/ttf/NotoSansArabic-Thin.ttf", "zippath": "NotoSansArabic/full/ttf/NotoSansArabic-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/arabic/releases/download/NotoSansArabic-v2.010/NotoSansArabic-v2.010.zip", + "siteurl": "https://github.com/notofonts/arabic/releases/tag/NotoSansArabic-v2.010", + "source": "Google", + "status": "current", + "version": "2.010", + "ziproot": "NotoSansArabic" +}, +"notosansarmenian": { + "defaults": { + "ttf": "NotoSansArmenian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Armenian", + "familyid": "notosansarmenian", + "files": { + "NotoSansArmenian-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansArmenian-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Black.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-Black.ttf" }, + "NotoSansArmenian-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansArmenian-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Bold.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-Bold.ttf" }, + "NotoSansArmenian-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansArmenian-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Condensed.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-Condensed.ttf" }, + "NotoSansArmenian-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansArmenian-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedBlack.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedBlack.ttf" }, + "NotoSansArmenian-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansArmenian-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedBold.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedBold.ttf" }, + "NotoSansArmenian-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansArmenian-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedExtraBold.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedExtraBold.ttf" }, + "NotoSansArmenian-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansArmenian-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedExtraLight.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedExtraLight.ttf" }, + "NotoSansArmenian-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansArmenian-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedLight.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedLight.ttf" }, + "NotoSansArmenian-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansArmenian-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedMedium.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedMedium.ttf" }, + "NotoSansArmenian-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansArmenian-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedSemiBold.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedSemiBold.ttf" }, + "NotoSansArmenian-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansArmenian-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedThin.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedThin.ttf" }, + "NotoSansArmenian-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansArmenian-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraBold.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraBold.ttf" }, + "NotoSansArmenian-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansArmenian-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensed.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensed.ttf" }, + "NotoSansArmenian-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansArmenian-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedBlack.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedBlack.ttf" }, + "NotoSansArmenian-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansArmenian-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedBold.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedBold.ttf" }, + "NotoSansArmenian-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansArmenian-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedExtraBold.ttf" }, + "NotoSansArmenian-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansArmenian-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedExtraLight.ttf" }, + "NotoSansArmenian-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansArmenian-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedLight.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedLight.ttf" }, + "NotoSansArmenian-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansArmenian-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedMedium.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedMedium.ttf" }, + "NotoSansArmenian-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansArmenian-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedSemiBold.ttf" }, + "NotoSansArmenian-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansArmenian-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedThin.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedThin.ttf" }, + "NotoSansArmenian-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansArmenian-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraLight.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraLight.ttf" }, + "NotoSansArmenian-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansArmenian-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Light.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-Light.ttf" }, + "NotoSansArmenian-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansArmenian-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Medium.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-Medium.ttf" }, + "NotoSansArmenian-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansArmenian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Regular.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-Regular.ttf" }, + "NotoSansArmenian-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansArmenian-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiBold.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-SemiBold.ttf" }, + "NotoSansArmenian-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansArmenian-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensed.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensed.ttf" }, + "NotoSansArmenian-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansArmenian-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedBlack.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedBlack.ttf" }, + "NotoSansArmenian-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansArmenian-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedBold.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedBold.ttf" }, + "NotoSansArmenian-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansArmenian-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedExtraBold.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedExtraBold.ttf" }, + "NotoSansArmenian-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansArmenian-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedExtraLight.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedExtraLight.ttf" }, + "NotoSansArmenian-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansArmenian-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedLight.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedLight.ttf" }, + "NotoSansArmenian-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansArmenian-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedMedium.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedMedium.ttf" }, + "NotoSansArmenian-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansArmenian-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedSemiBold.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedSemiBold.ttf" }, + "NotoSansArmenian-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansArmenian-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedThin.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedThin.ttf" }, + "NotoSansArmenian-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansArmenian-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Thin.ttf", "zippath": "NotoSansArmenian/full/ttf/NotoSansArmenian-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/armenian/releases/download/NotoSansArmenian-v2.007/NotoSansArmenian-v2.007.zip", + "siteurl": "https://github.com/notofonts/armenian/releases/tag/NotoSansArmenian-v2.007", + "source": "Google", + "status": "current", + "version": "2.007", + "ziproot": "NotoSansArmenian" +}, +"notosansavestan": { + "defaults": { + "ttf": "NotoSansAvestan-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Avestan", + "familyid": "notosansavestan", + "files": { + "NotoSansAvestan-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansAvestan-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansAvestan/full/ttf/NotoSansAvestan-Regular.ttf", "zippath": "NotoSansAvestan/full/ttf/NotoSansAvestan-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/avestan/releases/download/NotoSansAvestan-v2.003/NotoSansAvestan-v2.003.zip", + "siteurl": "https://github.com/notofonts/avestan/releases/tag/NotoSansAvestan-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansAvestan" +}, +"notosansbalinese": { + "defaults": { + "ttf": "NotoSansBalinese-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Balinese", + "familyid": "notosansbalinese", + "files": { + "NotoSansBalinese-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansBalinese-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBalinese/full/ttf/NotoSansBalinese-Bold.ttf", "zippath": "NotoSansBalinese/full/ttf/NotoSansBalinese-Bold.ttf" }, + "NotoSansBalinese-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansBalinese-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBalinese/full/ttf/NotoSansBalinese-Medium.ttf", "zippath": "NotoSansBalinese/full/ttf/NotoSansBalinese-Medium.ttf" }, + "NotoSansBalinese-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBalinese-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBalinese/full/ttf/NotoSansBalinese-Regular.ttf", "zippath": "NotoSansBalinese/full/ttf/NotoSansBalinese-Regular.ttf" }, + "NotoSansBalinese-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansBalinese-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBalinese/full/ttf/NotoSansBalinese-SemiBold.ttf", "zippath": "NotoSansBalinese/full/ttf/NotoSansBalinese-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/balinese/releases/download/NotoSansBalinese-v2.004/NotoSansBalinese-v2.004.zip", + "siteurl": "https://github.com/notofonts/balinese/releases/tag/NotoSansBalinese-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansBalinese" +}, +"notosansbamum": { + "defaults": { + "ttf": "NotoSansBamum-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Bamum", + "familyid": "notosansbamum", + "files": { + "NotoSansBamum-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansBamum-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBamum/full/ttf/NotoSansBamum-Bold.ttf", "zippath": "NotoSansBamum/full/ttf/NotoSansBamum-Bold.ttf" }, + "NotoSansBamum-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansBamum-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBamum/full/ttf/NotoSansBamum-Medium.ttf", "zippath": "NotoSansBamum/full/ttf/NotoSansBamum-Medium.ttf" }, + "NotoSansBamum-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBamum-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBamum/full/ttf/NotoSansBamum-Regular.ttf", "zippath": "NotoSansBamum/full/ttf/NotoSansBamum-Regular.ttf" }, + "NotoSansBamum-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansBamum-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBamum/full/ttf/NotoSansBamum-SemiBold.ttf", "zippath": "NotoSansBamum/full/ttf/NotoSansBamum-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/bamum/releases/download/NotoSansBamum-v2.002/NotoSansBamum-v2.002.zip", + "siteurl": "https://github.com/notofonts/bamum/releases/tag/NotoSansBamum-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansBamum" +}, +"notosansbassavah": { + "defaults": { + "ttf": "NotoSansBassaVah-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Bassa Vah", + "familyid": "notosansbassavah", + "files": { + "NotoSansBassaVah-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansBassaVah-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBassaVah/full/ttf/NotoSansBassaVah-Bold.ttf", "zippath": "NotoSansBassaVah/full/ttf/NotoSansBassaVah-Bold.ttf" }, + "NotoSansBassaVah-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansBassaVah-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBassaVah/full/ttf/NotoSansBassaVah-Medium.ttf", "zippath": "NotoSansBassaVah/full/ttf/NotoSansBassaVah-Medium.ttf" }, + "NotoSansBassaVah-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBassaVah-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBassaVah/full/ttf/NotoSansBassaVah-Regular.ttf", "zippath": "NotoSansBassaVah/full/ttf/NotoSansBassaVah-Regular.ttf" }, + "NotoSansBassaVah-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansBassaVah-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBassaVah/full/ttf/NotoSansBassaVah-SemiBold.ttf", "zippath": "NotoSansBassaVah/full/ttf/NotoSansBassaVah-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/bassa-vah/releases/download/NotoSansBassaVah-v2.002/NotoSansBassaVah-v2.002.zip", + "siteurl": "https://github.com/notofonts/bassa-vah/releases/tag/NotoSansBassaVah-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansBassaVah" +}, +"notosansbatak": { + "defaults": { + "ttf": "NotoSansBatak-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Batak", + "familyid": "notosansbatak", + "files": { + "NotoSansBatak-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBatak-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBatak/full/ttf/NotoSansBatak-Regular.ttf", "zippath": "NotoSansBatak/full/ttf/NotoSansBatak-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/batak/releases/download/NotoSansBatak-v2.002/NotoSansBatak-v2.002.zip", + "siteurl": "https://github.com/notofonts/batak/releases/tag/NotoSansBatak-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansBatak" +}, +"notosansbengali": { + "defaults": { + "ttf": "NotoSansBengaliUI-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Bengali", + "familyid": "notosansbengali", + "files": { + "NotoSansBengali-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansBengali-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengali-Black.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengali-Black.ttf" }, + "NotoSansBengali-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansBengali-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengali-Bold.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengali-Bold.ttf" }, + "NotoSansBengali-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBengali-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengali-Condensed.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengali-Condensed.ttf" }, + "NotoSansBengali-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansBengali-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengali-ExtraBold.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengali-ExtraBold.ttf" }, + "NotoSansBengali-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBengali-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengali-ExtraCondensed.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengali-ExtraCondensed.ttf" }, + "NotoSansBengali-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansBengali-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengali-ExtraLight.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengali-ExtraLight.ttf" }, + "NotoSansBengali-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansBengali-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengali-Light.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengali-Light.ttf" }, + "NotoSansBengali-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansBengali-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengali-Medium.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengali-Medium.ttf" }, + "NotoSansBengali-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBengali-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengali-Regular.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengali-Regular.ttf" }, + "NotoSansBengali-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansBengali-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengali-SemiBold.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengali-SemiBold.ttf" }, + "NotoSansBengali-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBengali-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengali-SemiCondensed.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengali-SemiCondensed.ttf" }, + "NotoSansBengali-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansBengali-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengali-Thin.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengali-Thin.ttf" }, + "NotoSansBengaliUI-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansBengaliUI-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengaliUI-Black.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengaliUI-Black.ttf" }, + "NotoSansBengaliUI-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansBengaliUI-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengaliUI-Bold.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengaliUI-Bold.ttf" }, + "NotoSansBengaliUI-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBengaliUI-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengaliUI-Condensed.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengaliUI-Condensed.ttf" }, + "NotoSansBengaliUI-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansBengaliUI-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengaliUI-ExtraBold.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengaliUI-ExtraBold.ttf" }, + "NotoSansBengaliUI-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBengaliUI-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengaliUI-ExtraCondensed.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengaliUI-ExtraCondensed.ttf" }, + "NotoSansBengaliUI-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansBengaliUI-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengaliUI-ExtraLight.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengaliUI-ExtraLight.ttf" }, + "NotoSansBengaliUI-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansBengaliUI-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengaliUI-Light.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengaliUI-Light.ttf" }, + "NotoSansBengaliUI-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansBengaliUI-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengaliUI-Medium.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengaliUI-Medium.ttf" }, + "NotoSansBengaliUI-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBengaliUI-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengaliUI-Regular.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengaliUI-Regular.ttf" }, + "NotoSansBengaliUI-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansBengaliUI-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengaliUI-SemiBold.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengaliUI-SemiBold.ttf" }, + "NotoSansBengaliUI-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBengaliUI-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengaliUI-SemiCondensed.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengaliUI-SemiCondensed.ttf" }, + "NotoSansBengaliUI-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansBengaliUI-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBengali/full/ttf/NotoSansBengaliUI-Thin.ttf", "zippath": "NotoSansBengali/full/ttf/NotoSansBengaliUI-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/bengali/releases/download/NotoSansBengali-v2.003/NotoSansBengali-v2.003.zip", + "siteurl": "https://github.com/notofonts/bengali/releases/tag/NotoSansBengali-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansBengali" +}, +"notosansbhaiksuki": { + "defaults": { + "ttf": "NotoSansBhaiksuki-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Bhaiksuki", + "familyid": "notosansbhaiksuki", + "files": { + "NotoSansBhaiksuki-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBhaiksuki-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBhaiksuki/full/ttf/NotoSansBhaiksuki-Regular.ttf", "zippath": "NotoSansBhaiksuki/full/ttf/NotoSansBhaiksuki-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/bhaiksuki/releases/download/NotoSansBhaiksuki-v2.002/NotoSansBhaiksuki-v2.002.zip", + "siteurl": "https://github.com/notofonts/bhaiksuki/releases/tag/NotoSansBhaiksuki-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansBhaiksuki" +}, +"notosansbrahmi": { + "defaults": { + "ttf": "NotoSansBrahmi-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Brahmi", + "familyid": "notosansbrahmi", + "files": { + "NotoSansBrahmi-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBrahmi-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBrahmi/full/ttf/NotoSansBrahmi-Regular.ttf", "zippath": "NotoSansBrahmi/full/ttf/NotoSansBrahmi-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/brahmi/releases/download/NotoSansBrahmi-v2.003/NotoSansBrahmi-v2.003.zip", + "siteurl": "https://github.com/notofonts/brahmi/releases/tag/NotoSansBrahmi-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansBrahmi" +}, +"notosansbuginese": { + "defaults": { + "ttf": "NotoSansBuginese-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Buginese", + "familyid": "notosansbuginese", + "files": { + "NotoSansBuginese-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBuginese-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBuginese/full/ttf/NotoSansBuginese-Regular.ttf", "zippath": "NotoSansBuginese/full/ttf/NotoSansBuginese-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/buginese/releases/download/NotoSansBuginese-v2.002/NotoSansBuginese-v2.002.zip", + "siteurl": "https://github.com/notofonts/buginese/releases/tag/NotoSansBuginese-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansBuginese" +}, +"notosansbuhid": { + "defaults": { + "ttf": "NotoSansBuhid-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Buhid", + "familyid": "notosansbuhid", + "files": { + "NotoSansBuhid-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansBuhid-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansBuhid/full/ttf/NotoSansBuhid-Regular.ttf", "zippath": "NotoSansBuhid/full/ttf/NotoSansBuhid-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/buhid/releases/download/NotoSansBuhid-v2.001/NotoSansBuhid-v2.001.zip", + "siteurl": "https://github.com/notofonts/buhid/releases/tag/NotoSansBuhid-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansBuhid" +}, +"notosanscanadianaboriginal": { + "defaults": { + "ttf": "NotoSansCanadianAboriginal-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Canadian Aboriginal", + "familyid": "notosanscanadianaboriginal", + "files": { + "NotoSansCanadianAboriginal-Black.ttf": { "axes": { "wght": 900.0 }, "packagepath": "full/ttf/NotoSansCanadianAboriginal-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Black.ttf", "zippath": "NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Black.ttf" }, + "NotoSansCanadianAboriginal-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansCanadianAboriginal-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Bold.ttf", "zippath": "NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Bold.ttf" }, + "NotoSansCanadianAboriginal-ExtraBold.ttf": { "axes": { "wght": 800.0 }, "packagepath": "full/ttf/NotoSansCanadianAboriginal-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-ExtraBold.ttf", "zippath": "NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-ExtraBold.ttf" }, + "NotoSansCanadianAboriginal-ExtraLight.ttf": { "axes": { "wght": 200.0 }, "packagepath": "full/ttf/NotoSansCanadianAboriginal-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-ExtraLight.ttf", "zippath": "NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-ExtraLight.ttf" }, + "NotoSansCanadianAboriginal-Light.ttf": { "axes": { "wght": 300.0 }, "packagepath": "full/ttf/NotoSansCanadianAboriginal-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Light.ttf", "zippath": "NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Light.ttf" }, + "NotoSansCanadianAboriginal-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansCanadianAboriginal-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Medium.ttf", "zippath": "NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Medium.ttf" }, + "NotoSansCanadianAboriginal-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansCanadianAboriginal-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Regular.ttf", "zippath": "NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Regular.ttf" }, + "NotoSansCanadianAboriginal-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansCanadianAboriginal-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-SemiBold.ttf", "zippath": "NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-SemiBold.ttf" }, + "NotoSansCanadianAboriginal-Thin.ttf": { "axes": { "wght": 100.0 }, "packagepath": "full/ttf/NotoSansCanadianAboriginal-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Thin.ttf", "zippath": "NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/canadian-aboriginal/releases/download/NotoSansCanadianAboriginal-v2.003/NotoSansCanadianAboriginal-v2.003.zip", + "siteurl": "https://github.com/notofonts/canadian-aboriginal/releases/tag/NotoSansCanadianAboriginal-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansCanadianAboriginal" +}, +"notosanscarian": { + "defaults": { + "ttf": "NotoSansCarian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Carian", + "familyid": "notosanscarian", + "files": { + "NotoSansCarian-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansCarian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCarian/full/ttf/NotoSansCarian-Regular.ttf", "zippath": "NotoSansCarian/full/ttf/NotoSansCarian-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/carian/releases/download/NotoSansCarian-v2.002/NotoSansCarian-v2.002.zip", + "siteurl": "https://github.com/notofonts/carian/releases/tag/NotoSansCarian-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansCarian" +}, +"notosanscaucasianalbanian": { + "defaults": { + "ttf": "NotoSansCaucasianAlbanian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Caucasian Albanian", + "familyid": "notosanscaucasianalbanian", + "files": { + "NotoSansCaucasianAlbanian-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansCaucasianAlbanian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCaucasianAlbanian/full/ttf/NotoSansCaucasianAlbanian-Regular.ttf", "zippath": "NotoSansCaucasianAlbanian/full/ttf/NotoSansCaucasianAlbanian-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/caucasian-albanian/releases/download/NotoSansCaucasianAlbanian-v2.004/NotoSansCaucasianAlbanian-v2.004.zip", + "siteurl": "https://github.com/notofonts/caucasian-albanian/releases/tag/NotoSansCaucasianAlbanian-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansCaucasianAlbanian" +}, +"notosanschakma": { + "defaults": { + "ttf": "NotoSansChakma-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Chakma", + "familyid": "notosanschakma", + "files": { + "NotoSansChakma-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansChakma-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansChakma/full/ttf/NotoSansChakma-Regular.ttf", "zippath": "NotoSansChakma/full/ttf/NotoSansChakma-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/chakma/releases/download/NotoSansChakma-v2.003/NotoSansChakma-v2.003.zip", + "siteurl": "https://github.com/notofonts/chakma/releases/tag/NotoSansChakma-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansChakma" +}, +"notosanscham": { + "defaults": { + "ttf": "NotoSansCham-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Cham", + "familyid": "notosanscham", + "files": { + "NotoSansCham-Black.ttf": { "axes": { "wght": 900.0 }, "packagepath": "full/ttf/NotoSansCham-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCham/full/ttf/NotoSansCham-Black.ttf", "zippath": "NotoSansCham/full/ttf/NotoSansCham-Black.ttf" }, + "NotoSansCham-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansCham-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCham/full/ttf/NotoSansCham-Bold.ttf", "zippath": "NotoSansCham/full/ttf/NotoSansCham-Bold.ttf" }, + "NotoSansCham-ExtraBold.ttf": { "axes": { "wght": 800.0 }, "packagepath": "full/ttf/NotoSansCham-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCham/full/ttf/NotoSansCham-ExtraBold.ttf", "zippath": "NotoSansCham/full/ttf/NotoSansCham-ExtraBold.ttf" }, + "NotoSansCham-ExtraLight.ttf": { "axes": { "wght": 200.0 }, "packagepath": "full/ttf/NotoSansCham-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCham/full/ttf/NotoSansCham-ExtraLight.ttf", "zippath": "NotoSansCham/full/ttf/NotoSansCham-ExtraLight.ttf" }, + "NotoSansCham-Light.ttf": { "axes": { "wght": 300.0 }, "packagepath": "full/ttf/NotoSansCham-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCham/full/ttf/NotoSansCham-Light.ttf", "zippath": "NotoSansCham/full/ttf/NotoSansCham-Light.ttf" }, + "NotoSansCham-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansCham-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCham/full/ttf/NotoSansCham-Medium.ttf", "zippath": "NotoSansCham/full/ttf/NotoSansCham-Medium.ttf" }, + "NotoSansCham-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansCham-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCham/full/ttf/NotoSansCham-Regular.ttf", "zippath": "NotoSansCham/full/ttf/NotoSansCham-Regular.ttf" }, + "NotoSansCham-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansCham-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCham/full/ttf/NotoSansCham-SemiBold.ttf", "zippath": "NotoSansCham/full/ttf/NotoSansCham-SemiBold.ttf" }, + "NotoSansCham-Thin.ttf": { "axes": { "wght": 100.0 }, "packagepath": "full/ttf/NotoSansCham-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCham/full/ttf/NotoSansCham-Thin.ttf", "zippath": "NotoSansCham/full/ttf/NotoSansCham-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/cham/releases/download/NotoSansCham-v2.003/NotoSansCham-v2.003.zip", + "siteurl": "https://github.com/notofonts/cham/releases/tag/NotoSansCham-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansCham" +}, +"notosanscherokee": { + "defaults": { + "ttf": "NotoSansCherokee-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Cherokee", + "familyid": "notosanscherokee", + "files": { + "NotoSansCherokee-Black.ttf": { "axes": { "wght": 900.0 }, "packagepath": "full/ttf/NotoSansCherokee-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-Black.ttf", "zippath": "NotoSansCherokee/full/ttf/NotoSansCherokee-Black.ttf" }, + "NotoSansCherokee-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansCherokee-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-Bold.ttf", "zippath": "NotoSansCherokee/full/ttf/NotoSansCherokee-Bold.ttf" }, + "NotoSansCherokee-ExtraBold.ttf": { "axes": { "wght": 800.0 }, "packagepath": "full/ttf/NotoSansCherokee-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-ExtraBold.ttf", "zippath": "NotoSansCherokee/full/ttf/NotoSansCherokee-ExtraBold.ttf" }, + "NotoSansCherokee-ExtraLight.ttf": { "axes": { "wght": 200.0 }, "packagepath": "full/ttf/NotoSansCherokee-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-ExtraLight.ttf", "zippath": "NotoSansCherokee/full/ttf/NotoSansCherokee-ExtraLight.ttf" }, + "NotoSansCherokee-Light.ttf": { "axes": { "wght": 300.0 }, "packagepath": "full/ttf/NotoSansCherokee-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-Light.ttf", "zippath": "NotoSansCherokee/full/ttf/NotoSansCherokee-Light.ttf" }, + "NotoSansCherokee-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansCherokee-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-Medium.ttf", "zippath": "NotoSansCherokee/full/ttf/NotoSansCherokee-Medium.ttf" }, + "NotoSansCherokee-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansCherokee-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-Regular.ttf", "zippath": "NotoSansCherokee/full/ttf/NotoSansCherokee-Regular.ttf" }, + "NotoSansCherokee-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansCherokee-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-SemiBold.ttf", "zippath": "NotoSansCherokee/full/ttf/NotoSansCherokee-SemiBold.ttf" }, + "NotoSansCherokee-Thin.ttf": { "axes": { "wght": 100.0 }, "packagepath": "full/ttf/NotoSansCherokee-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-Thin.ttf", "zippath": "NotoSansCherokee/full/ttf/NotoSansCherokee-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/cherokee/releases/download/NotoSansCherokee-v2.001/NotoSansCherokee-v2.001.zip", + "siteurl": "https://github.com/notofonts/cherokee/releases/tag/NotoSansCherokee-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansCherokee" +}, +"notosanschorasmian": { + "defaults": { + "ttf": "NotoSansChorasmian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Chorasmian", + "familyid": "notosanschorasmian", + "files": { + "NotoSansChorasmian-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansChorasmian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansChorasmian/full/ttf/NotoSansChorasmian-Regular.ttf", "zippath": "NotoSansChorasmian/full/ttf/NotoSansChorasmian-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/chorasmian/releases/download/NotoSansChorasmian-v1.002/NotoSansChorasmian-v1.002.zip", + "siteurl": "https://github.com/notofonts/chorasmian/releases/tag/NotoSansChorasmian-v1.002", + "source": "Google", + "status": "current", + "version": "1.002", + "ziproot": "NotoSansChorasmian" +}, +"notosanscoptic": { + "defaults": { + "ttf": "NotoSansCoptic-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Coptic", + "familyid": "notosanscoptic", + "files": { + "NotoSansCoptic-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansCoptic-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCoptic/full/ttf/NotoSansCoptic-Regular.ttf", "zippath": "NotoSansCoptic/full/ttf/NotoSansCoptic-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/coptic/releases/download/NotoSansCoptic-v2.003/NotoSansCoptic-v2.003.zip", + "siteurl": "https://github.com/notofonts/coptic/releases/tag/NotoSansCoptic-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansCoptic" +}, +"notosanscuneiform": { + "defaults": { + "ttf": "NotoSansCuneiform-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Cuneiform", + "familyid": "notosanscuneiform", + "files": { + "NotoSansCuneiform-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansCuneiform-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCuneiform/full/ttf/NotoSansCuneiform-Regular.ttf", "zippath": "NotoSansCuneiform/full/ttf/NotoSansCuneiform-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/cuneiform/releases/download/NotoSansCuneiform-v2.001/NotoSansCuneiform-v2.001.zip", + "siteurl": "https://github.com/notofonts/cuneiform/releases/tag/NotoSansCuneiform-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansCuneiform" +}, +"notosanscypriot": { + "defaults": { + "ttf": "NotoSansCypriot-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Cypriot", + "familyid": "notosanscypriot", + "files": { + "NotoSansCypriot-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansCypriot-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCypriot/full/ttf/NotoSansCypriot-Regular.ttf", "zippath": "NotoSansCypriot/full/ttf/NotoSansCypriot-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/cypriot/releases/download/NotoSansCypriot-v2.002/NotoSansCypriot-v2.002.zip", + "siteurl": "https://github.com/notofonts/cypriot/releases/tag/NotoSansCypriot-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansCypriot" +}, +"notosanscyprominoan": { + "defaults": { + "ttf": "NotoSansCyproMinoan-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Cypro Minoan", + "familyid": "notosanscyprominoan", + "files": { + "NotoSansCyproMinoan-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansCyproMinoan-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansCyproMinoan/full/ttf/NotoSansCyproMinoan-Regular.ttf", "zippath": "NotoSansCyproMinoan/full/ttf/NotoSansCyproMinoan-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/cypro-minoan/releases/download/NotoSansCyproMinoan-v1.503/NotoSansCyproMinoan-v1.503.zip", + "siteurl": "https://github.com/notofonts/cypro-minoan/releases/tag/NotoSansCyproMinoan-v1.503", + "source": "Google", + "status": "current", + "version": "1.503", + "ziproot": "NotoSansCyproMinoan" +}, +"notosansdeseret": { + "defaults": { + "ttf": "NotoSansDeseret-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Deseret", + "familyid": "notosansdeseret", + "files": { + "NotoSansDeseret-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansDeseret-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDeseret/full/ttf/NotoSansDeseret-Regular.ttf", "zippath": "NotoSansDeseret/full/ttf/NotoSansDeseret-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/deseret/releases/download/NotoSansDeseret-v2.001/NotoSansDeseret-v2.001.zip", + "siteurl": "https://github.com/notofonts/deseret/releases/tag/NotoSansDeseret-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansDeseret" +}, +"notosansdevanagari": { + "defaults": { + "ttf": "NotoSansDevanagari-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Devanagari", + "familyid": "notosansdevanagari", + "files": { + "NotoSansDevanagari-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansDevanagari-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-Black.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-Black.ttf" }, + "NotoSansDevanagari-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansDevanagari-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-Bold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-Bold.ttf" }, + "NotoSansDevanagari-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansDevanagari-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-Condensed.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-Condensed.ttf" }, + "NotoSansDevanagari-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansDevanagari-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedBlack.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedBlack.ttf" }, + "NotoSansDevanagari-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansDevanagari-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedBold.ttf" }, + "NotoSansDevanagari-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansDevanagari-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedExtraBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedExtraBold.ttf" }, + "NotoSansDevanagari-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansDevanagari-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedExtraLight.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedExtraLight.ttf" }, + "NotoSansDevanagari-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansDevanagari-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedLight.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedLight.ttf" }, + "NotoSansDevanagari-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansDevanagari-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedMedium.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedMedium.ttf" }, + "NotoSansDevanagari-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansDevanagari-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedSemiBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedSemiBold.ttf" }, + "NotoSansDevanagari-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansDevanagari-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedThin.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedThin.ttf" }, + "NotoSansDevanagari-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansDevanagari-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraBold.ttf" }, + "NotoSansDevanagari-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansDevanagari-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensed.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensed.ttf" }, + "NotoSansDevanagari-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansDevanagari-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedBlack.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedBlack.ttf" }, + "NotoSansDevanagari-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansDevanagari-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedBold.ttf" }, + "NotoSansDevanagari-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansDevanagari-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedExtraBold.ttf" }, + "NotoSansDevanagari-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansDevanagari-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedExtraLight.ttf" }, + "NotoSansDevanagari-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansDevanagari-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedLight.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedLight.ttf" }, + "NotoSansDevanagari-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansDevanagari-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedMedium.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedMedium.ttf" }, + "NotoSansDevanagari-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansDevanagari-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedSemiBold.ttf" }, + "NotoSansDevanagari-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansDevanagari-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedThin.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedThin.ttf" }, + "NotoSansDevanagari-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansDevanagari-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraLight.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraLight.ttf" }, + "NotoSansDevanagari-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansDevanagari-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-Light.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-Light.ttf" }, + "NotoSansDevanagari-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansDevanagari-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-Medium.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-Medium.ttf" }, + "NotoSansDevanagari-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansDevanagari-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-Regular.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-Regular.ttf" }, + "NotoSansDevanagari-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansDevanagari-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiBold.ttf" }, + "NotoSansDevanagari-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansDevanagari-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensed.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensed.ttf" }, + "NotoSansDevanagari-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansDevanagari-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedBlack.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedBlack.ttf" }, + "NotoSansDevanagari-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansDevanagari-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedBold.ttf" }, + "NotoSansDevanagari-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansDevanagari-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedExtraBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedExtraBold.ttf" }, + "NotoSansDevanagari-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansDevanagari-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedExtraLight.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedExtraLight.ttf" }, + "NotoSansDevanagari-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansDevanagari-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedLight.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedLight.ttf" }, + "NotoSansDevanagari-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansDevanagari-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedMedium.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedMedium.ttf" }, + "NotoSansDevanagari-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansDevanagari-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedSemiBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedSemiBold.ttf" }, + "NotoSansDevanagari-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansDevanagari-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedThin.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedThin.ttf" }, + "NotoSansDevanagari-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansDevanagari-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-Thin.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagari-Thin.ttf" }, + "NotoSansDevanagariUI-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-Black.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-Black.ttf" }, + "NotoSansDevanagariUI-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-Bold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-Bold.ttf" }, + "NotoSansDevanagariUI-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-Condensed.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-Condensed.ttf" }, + "NotoSansDevanagariUI-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedBlack.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedBlack.ttf" }, + "NotoSansDevanagariUI-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedBold.ttf" }, + "NotoSansDevanagariUI-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedExtraBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedExtraBold.ttf" }, + "NotoSansDevanagariUI-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedExtraLight.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedExtraLight.ttf" }, + "NotoSansDevanagariUI-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedLight.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedLight.ttf" }, + "NotoSansDevanagariUI-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedMedium.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedMedium.ttf" }, + "NotoSansDevanagariUI-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedSemiBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedSemiBold.ttf" }, + "NotoSansDevanagariUI-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedThin.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-CondensedThin.ttf" }, + "NotoSansDevanagariUI-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraBold.ttf" }, + "NotoSansDevanagariUI-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensed.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensed.ttf" }, + "NotoSansDevanagariUI-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedBlack.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedBlack.ttf" }, + "NotoSansDevanagariUI-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedBold.ttf" }, + "NotoSansDevanagariUI-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedExtraBold.ttf" }, + "NotoSansDevanagariUI-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedExtraLight.ttf" }, + "NotoSansDevanagariUI-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedLight.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedLight.ttf" }, + "NotoSansDevanagariUI-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedMedium.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedMedium.ttf" }, + "NotoSansDevanagariUI-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedSemiBold.ttf" }, + "NotoSansDevanagariUI-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedThin.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraCondensedThin.ttf" }, + "NotoSansDevanagariUI-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraLight.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-ExtraLight.ttf" }, + "NotoSansDevanagariUI-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-Light.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-Light.ttf" }, + "NotoSansDevanagariUI-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-Medium.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-Medium.ttf" }, + "NotoSansDevanagariUI-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-Regular.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-Regular.ttf" }, + "NotoSansDevanagariUI-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiBold.ttf" }, + "NotoSansDevanagariUI-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensed.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensed.ttf" }, + "NotoSansDevanagariUI-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedBlack.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedBlack.ttf" }, + "NotoSansDevanagariUI-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedBold.ttf" }, + "NotoSansDevanagariUI-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedExtraBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedExtraBold.ttf" }, + "NotoSansDevanagariUI-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedExtraLight.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedExtraLight.ttf" }, + "NotoSansDevanagariUI-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedLight.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedLight.ttf" }, + "NotoSansDevanagariUI-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedMedium.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedMedium.ttf" }, + "NotoSansDevanagariUI-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedSemiBold.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedSemiBold.ttf" }, + "NotoSansDevanagariUI-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedThin.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-SemiCondensedThin.ttf" }, + "NotoSansDevanagariUI-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansDevanagariUI-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-Thin.ttf", "zippath": "NotoSansDevanagari/full/ttf/NotoSansDevanagariUI-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/devanagari/releases/download/NotoSansDevanagari-v2.004/NotoSansDevanagari-v2.004.zip", + "siteurl": "https://github.com/notofonts/devanagari/releases/tag/NotoSansDevanagari-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansDevanagari" +}, +"notosansduployan": { + "distributable": true, + "family": "Noto Sans Duployan", + "familyid": "notosansduployan", + "license": "OFL", + "packageurl": "https://github.com/notofonts/duployan/releases/download/NotoSansDuployan-v3.001/NotoSansDuployan-v3.001.zip", + "siteurl": "https://github.com/notofonts/duployan/releases/tag/NotoSansDuployan-v3.001", + "source": "Google", + "status": "current", + "version": "3.001" +}, +"notosansegyptianhieroglyphs": { + "defaults": { + "ttf": "NotoSansEgyptianHieroglyphs-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Egyptian Hieroglyphs", + "familyid": "notosansegyptianhieroglyphs", + "files": { + "NotoSansEgyptianHieroglyphs-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansEgyptianHieroglyphs-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEgyptianHieroglyphs/full/ttf/NotoSansEgyptianHieroglyphs-Regular.ttf", "zippath": "NotoSansEgyptianHieroglyphs/full/ttf/NotoSansEgyptianHieroglyphs-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/egyptian-hieroglyphs/releases/download/NotoSansEgyptianHieroglyphs-v2.001/NotoSansEgyptianHieroglyphs-v2.001.zip", + "siteurl": "https://github.com/notofonts/egyptian-hieroglyphs/releases/tag/NotoSansEgyptianHieroglyphs-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansEgyptianHieroglyphs" +}, +"notosanselbasan": { + "defaults": { + "ttf": "NotoSansElbasan-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Elbasan", + "familyid": "notosanselbasan", + "files": { + "NotoSansElbasan-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansElbasan-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansElbasan/full/ttf/NotoSansElbasan-Regular.ttf", "zippath": "NotoSansElbasan/full/ttf/NotoSansElbasan-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/elbasan/releases/download/NotoSansElbasan-v2.004/NotoSansElbasan-v2.004.zip", + "siteurl": "https://github.com/notofonts/elbasan/releases/tag/NotoSansElbasan-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansElbasan" +}, +"notosanselymaic": { + "defaults": { + "ttf": "NotoSansElymaic-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Elymaic", + "familyid": "notosanselymaic", + "files": { + "NotoSansElymaic-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansElymaic-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansElymaic/full/ttf/NotoSansElymaic-Regular.ttf", "zippath": "NotoSansElymaic/full/ttf/NotoSansElymaic-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/elymaic/releases/download/NotoSansElymaic-v1.001/NotoSansElymaic-v1.001.zip", + "siteurl": "https://github.com/notofonts/elymaic/releases/tag/NotoSansElymaic-v1.001", + "source": "Google", + "status": "current", + "version": "1.001", + "ziproot": "NotoSansElymaic" +}, +"notosansethiopic": { + "defaults": { + "ttf": "NotoSansEthiopic-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Ethiopic", + "familyid": "notosansethiopic", + "files": { + "NotoSansEthiopic-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansEthiopic-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-Black.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-Black.ttf" }, + "NotoSansEthiopic-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansEthiopic-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-Bold.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-Bold.ttf" }, + "NotoSansEthiopic-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansEthiopic-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-Condensed.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-Condensed.ttf" }, + "NotoSansEthiopic-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansEthiopic-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedBlack.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedBlack.ttf" }, + "NotoSansEthiopic-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansEthiopic-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedBold.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedBold.ttf" }, + "NotoSansEthiopic-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansEthiopic-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedExtraBold.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedExtraBold.ttf" }, + "NotoSansEthiopic-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansEthiopic-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedExtraLight.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedExtraLight.ttf" }, + "NotoSansEthiopic-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansEthiopic-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedLight.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedLight.ttf" }, + "NotoSansEthiopic-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansEthiopic-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedMedium.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedMedium.ttf" }, + "NotoSansEthiopic-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansEthiopic-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedSemiBold.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedSemiBold.ttf" }, + "NotoSansEthiopic-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansEthiopic-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedThin.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedThin.ttf" }, + "NotoSansEthiopic-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansEthiopic-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraBold.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraBold.ttf" }, + "NotoSansEthiopic-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansEthiopic-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensed.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensed.ttf" }, + "NotoSansEthiopic-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansEthiopic-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedBlack.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedBlack.ttf" }, + "NotoSansEthiopic-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansEthiopic-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedBold.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedBold.ttf" }, + "NotoSansEthiopic-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansEthiopic-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedExtraBold.ttf" }, + "NotoSansEthiopic-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansEthiopic-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedExtraLight.ttf" }, + "NotoSansEthiopic-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansEthiopic-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedLight.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedLight.ttf" }, + "NotoSansEthiopic-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansEthiopic-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedMedium.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedMedium.ttf" }, + "NotoSansEthiopic-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansEthiopic-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedSemiBold.ttf" }, + "NotoSansEthiopic-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansEthiopic-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedThin.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedThin.ttf" }, + "NotoSansEthiopic-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansEthiopic-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraLight.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraLight.ttf" }, + "NotoSansEthiopic-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansEthiopic-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-Light.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-Light.ttf" }, + "NotoSansEthiopic-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansEthiopic-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-Medium.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-Medium.ttf" }, + "NotoSansEthiopic-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansEthiopic-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-Regular.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-Regular.ttf" }, + "NotoSansEthiopic-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansEthiopic-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiBold.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiBold.ttf" }, + "NotoSansEthiopic-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansEthiopic-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensed.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensed.ttf" }, + "NotoSansEthiopic-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansEthiopic-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedBlack.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedBlack.ttf" }, + "NotoSansEthiopic-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansEthiopic-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedBold.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedBold.ttf" }, + "NotoSansEthiopic-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansEthiopic-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedExtraBold.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedExtraBold.ttf" }, + "NotoSansEthiopic-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansEthiopic-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedExtraLight.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedExtraLight.ttf" }, + "NotoSansEthiopic-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansEthiopic-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedLight.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedLight.ttf" }, + "NotoSansEthiopic-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansEthiopic-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedMedium.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedMedium.ttf" }, + "NotoSansEthiopic-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansEthiopic-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedSemiBold.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedSemiBold.ttf" }, + "NotoSansEthiopic-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansEthiopic-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedThin.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedThin.ttf" }, + "NotoSansEthiopic-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansEthiopic-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-Thin.ttf", "zippath": "NotoSansEthiopic/full/ttf/NotoSansEthiopic-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/ethiopic/releases/download/NotoSansEthiopic-v2.102/NotoSansEthiopic-v2.102.zip", + "siteurl": "https://github.com/notofonts/ethiopic/releases/tag/NotoSansEthiopic-v2.102", + "source": "Google", + "status": "current", + "version": "2.102", + "ziproot": "NotoSansEthiopic" +}, +"notosansgeorgian": { + "defaults": { + "ttf": "NotoSansGeorgian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Georgian", + "familyid": "notosansgeorgian", + "files": { + "NotoSansGeorgian-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGeorgian-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-Black.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-Black.ttf" }, + "NotoSansGeorgian-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGeorgian-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-Bold.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-Bold.ttf" }, + "NotoSansGeorgian-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGeorgian-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-Condensed.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-Condensed.ttf" }, + "NotoSansGeorgian-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGeorgian-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedBlack.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedBlack.ttf" }, + "NotoSansGeorgian-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGeorgian-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedBold.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedBold.ttf" }, + "NotoSansGeorgian-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGeorgian-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedExtraBold.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedExtraBold.ttf" }, + "NotoSansGeorgian-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGeorgian-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedExtraLight.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedExtraLight.ttf" }, + "NotoSansGeorgian-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGeorgian-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedLight.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedLight.ttf" }, + "NotoSansGeorgian-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGeorgian-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedMedium.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedMedium.ttf" }, + "NotoSansGeorgian-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGeorgian-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedSemiBold.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedSemiBold.ttf" }, + "NotoSansGeorgian-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGeorgian-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedThin.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedThin.ttf" }, + "NotoSansGeorgian-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGeorgian-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraBold.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraBold.ttf" }, + "NotoSansGeorgian-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGeorgian-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensed.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensed.ttf" }, + "NotoSansGeorgian-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGeorgian-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedBlack.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedBlack.ttf" }, + "NotoSansGeorgian-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGeorgian-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedBold.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedBold.ttf" }, + "NotoSansGeorgian-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGeorgian-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedExtraBold.ttf" }, + "NotoSansGeorgian-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGeorgian-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedExtraLight.ttf" }, + "NotoSansGeorgian-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGeorgian-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedLight.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedLight.ttf" }, + "NotoSansGeorgian-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGeorgian-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedMedium.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedMedium.ttf" }, + "NotoSansGeorgian-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGeorgian-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedSemiBold.ttf" }, + "NotoSansGeorgian-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGeorgian-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedThin.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedThin.ttf" }, + "NotoSansGeorgian-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGeorgian-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraLight.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraLight.ttf" }, + "NotoSansGeorgian-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGeorgian-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-Light.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-Light.ttf" }, + "NotoSansGeorgian-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGeorgian-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-Medium.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-Medium.ttf" }, + "NotoSansGeorgian-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGeorgian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-Regular.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-Regular.ttf" }, + "NotoSansGeorgian-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGeorgian-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiBold.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiBold.ttf" }, + "NotoSansGeorgian-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGeorgian-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensed.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensed.ttf" }, + "NotoSansGeorgian-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGeorgian-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedBlack.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedBlack.ttf" }, + "NotoSansGeorgian-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGeorgian-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedBold.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedBold.ttf" }, + "NotoSansGeorgian-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGeorgian-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedExtraBold.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedExtraBold.ttf" }, + "NotoSansGeorgian-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGeorgian-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedExtraLight.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedExtraLight.ttf" }, + "NotoSansGeorgian-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGeorgian-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedLight.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedLight.ttf" }, + "NotoSansGeorgian-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGeorgian-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedMedium.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedMedium.ttf" }, + "NotoSansGeorgian-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGeorgian-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedSemiBold.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedSemiBold.ttf" }, + "NotoSansGeorgian-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGeorgian-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedThin.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedThin.ttf" }, + "NotoSansGeorgian-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGeorgian-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-Thin.ttf", "zippath": "NotoSansGeorgian/full/ttf/NotoSansGeorgian-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/georgian/releases/download/NotoSansGeorgian-v2.002/NotoSansGeorgian-v2.002.zip", + "siteurl": "https://github.com/notofonts/georgian/releases/tag/NotoSansGeorgian-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansGeorgian" +}, +"notosansglagolitic": { + "defaults": { + "ttf": "NotoSansGlagolitic-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Glagolitic", + "familyid": "notosansglagolitic", + "files": { + "NotoSansGlagolitic-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGlagolitic-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGlagolitic/full/ttf/NotoSansGlagolitic-Regular.ttf", "zippath": "NotoSansGlagolitic/full/ttf/NotoSansGlagolitic-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/glagolitic/releases/download/NotoSansGlagolitic-v2.002/NotoSansGlagolitic-v2.002.zip", + "siteurl": "https://github.com/notofonts/glagolitic/releases/tag/NotoSansGlagolitic-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansGlagolitic" +}, +"notosansgothic": { + "defaults": { + "ttf": "NotoSansGothic-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Gothic", + "familyid": "notosansgothic", + "files": { + "NotoSansGothic-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGothic-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGothic/full/ttf/NotoSansGothic-Regular.ttf", "zippath": "NotoSansGothic/full/ttf/NotoSansGothic-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/gothic/releases/download/NotoSansGothic-v2.001/NotoSansGothic-v2.001.zip", + "siteurl": "https://github.com/notofonts/gothic/releases/tag/NotoSansGothic-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansGothic" +}, +"notosansgrantha": { + "defaults": { + "ttf": "NotoSansGrantha-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Grantha", + "familyid": "notosansgrantha", + "files": { + "NotoSansGrantha-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGrantha-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGrantha/full/ttf/NotoSansGrantha-Regular.ttf", "zippath": "NotoSansGrantha/full/ttf/NotoSansGrantha-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/grantha/releases/download/NotoSansGrantha-v2.003/NotoSansGrantha-v2.003.zip", + "siteurl": "https://github.com/notofonts/grantha/releases/tag/NotoSansGrantha-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansGrantha" +}, +"notosansgujarati": { + "defaults": { + "ttf": "NotoSansGujarati-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Gujarati", + "familyid": "notosansgujarati", + "files": { + "NotoSansGujarati-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGujarati-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-Black.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-Black.ttf" }, + "NotoSansGujarati-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGujarati-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-Bold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-Bold.ttf" }, + "NotoSansGujarati-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGujarati-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-Condensed.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-Condensed.ttf" }, + "NotoSansGujarati-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGujarati-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedBlack.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedBlack.ttf" }, + "NotoSansGujarati-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGujarati-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedBold.ttf" }, + "NotoSansGujarati-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGujarati-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedExtraBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedExtraBold.ttf" }, + "NotoSansGujarati-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGujarati-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedExtraLight.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedExtraLight.ttf" }, + "NotoSansGujarati-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGujarati-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedLight.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedLight.ttf" }, + "NotoSansGujarati-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGujarati-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedMedium.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedMedium.ttf" }, + "NotoSansGujarati-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGujarati-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedSemiBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedSemiBold.ttf" }, + "NotoSansGujarati-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGujarati-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedThin.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedThin.ttf" }, + "NotoSansGujarati-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGujarati-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraBold.ttf" }, + "NotoSansGujarati-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGujarati-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensed.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensed.ttf" }, + "NotoSansGujarati-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGujarati-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedBlack.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedBlack.ttf" }, + "NotoSansGujarati-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGujarati-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedBold.ttf" }, + "NotoSansGujarati-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGujarati-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedExtraBold.ttf" }, + "NotoSansGujarati-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGujarati-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedExtraLight.ttf" }, + "NotoSansGujarati-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGujarati-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedLight.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedLight.ttf" }, + "NotoSansGujarati-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGujarati-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedMedium.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedMedium.ttf" }, + "NotoSansGujarati-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGujarati-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedSemiBold.ttf" }, + "NotoSansGujarati-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGujarati-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedThin.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedThin.ttf" }, + "NotoSansGujarati-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGujarati-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraLight.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraLight.ttf" }, + "NotoSansGujarati-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGujarati-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-Light.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-Light.ttf" }, + "NotoSansGujarati-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGujarati-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-Medium.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-Medium.ttf" }, + "NotoSansGujarati-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGujarati-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-Regular.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-Regular.ttf" }, + "NotoSansGujarati-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGujarati-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-SemiBold.ttf" }, + "NotoSansGujarati-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGujarati-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensed.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensed.ttf" }, + "NotoSansGujarati-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGujarati-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedBlack.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedBlack.ttf" }, + "NotoSansGujarati-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGujarati-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedBold.ttf" }, + "NotoSansGujarati-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGujarati-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedExtraBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedExtraBold.ttf" }, + "NotoSansGujarati-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGujarati-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedExtraLight.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedExtraLight.ttf" }, + "NotoSansGujarati-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGujarati-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedLight.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedLight.ttf" }, + "NotoSansGujarati-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGujarati-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedMedium.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedMedium.ttf" }, + "NotoSansGujarati-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGujarati-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedSemiBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedSemiBold.ttf" }, + "NotoSansGujarati-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGujarati-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedThin.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedThin.ttf" }, + "NotoSansGujarati-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGujarati-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-Thin.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujarati-Thin.ttf" }, + "NotoSansGujaratiUI-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Black.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Black.ttf" }, + "NotoSansGujaratiUI-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Bold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Bold.ttf" }, + "NotoSansGujaratiUI-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Condensed.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Condensed.ttf" }, + "NotoSansGujaratiUI-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedBlack.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedBlack.ttf" }, + "NotoSansGujaratiUI-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedBold.ttf" }, + "NotoSansGujaratiUI-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedExtraBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedExtraBold.ttf" }, + "NotoSansGujaratiUI-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedExtraLight.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedExtraLight.ttf" }, + "NotoSansGujaratiUI-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedLight.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedLight.ttf" }, + "NotoSansGujaratiUI-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedMedium.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedMedium.ttf" }, + "NotoSansGujaratiUI-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedSemiBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedSemiBold.ttf" }, + "NotoSansGujaratiUI-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedThin.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedThin.ttf" }, + "NotoSansGujaratiUI-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraBold.ttf" }, + "NotoSansGujaratiUI-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensed.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensed.ttf" }, + "NotoSansGujaratiUI-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedBlack.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedBlack.ttf" }, + "NotoSansGujaratiUI-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedBold.ttf" }, + "NotoSansGujaratiUI-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedExtraBold.ttf" }, + "NotoSansGujaratiUI-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedExtraLight.ttf" }, + "NotoSansGujaratiUI-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedLight.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedLight.ttf" }, + "NotoSansGujaratiUI-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedMedium.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedMedium.ttf" }, + "NotoSansGujaratiUI-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedSemiBold.ttf" }, + "NotoSansGujaratiUI-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedThin.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedThin.ttf" }, + "NotoSansGujaratiUI-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraLight.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraLight.ttf" }, + "NotoSansGujaratiUI-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Light.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Light.ttf" }, + "NotoSansGujaratiUI-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Medium.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Medium.ttf" }, + "NotoSansGujaratiUI-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Regular.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Regular.ttf" }, + "NotoSansGujaratiUI-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiBold.ttf" }, + "NotoSansGujaratiUI-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensed.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensed.ttf" }, + "NotoSansGujaratiUI-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedBlack.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedBlack.ttf" }, + "NotoSansGujaratiUI-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedBold.ttf" }, + "NotoSansGujaratiUI-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedExtraBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedExtraBold.ttf" }, + "NotoSansGujaratiUI-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedExtraLight.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedExtraLight.ttf" }, + "NotoSansGujaratiUI-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedLight.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedLight.ttf" }, + "NotoSansGujaratiUI-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedMedium.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedMedium.ttf" }, + "NotoSansGujaratiUI-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedSemiBold.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedSemiBold.ttf" }, + "NotoSansGujaratiUI-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedThin.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedThin.ttf" }, + "NotoSansGujaratiUI-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGujaratiUI-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Thin.ttf", "zippath": "NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/gujarati/releases/download/NotoSansGujarati-v2.104/NotoSansGujarati-v2.104.zip", + "siteurl": "https://github.com/notofonts/gujarati/releases/tag/NotoSansGujarati-v2.104", + "source": "Google", + "status": "current", + "version": "2.104", + "ziproot": "NotoSansGujarati" +}, +"notosansgurmukhi": { + "defaults": { + "ttf": "NotoSansGurmukhiUI-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Gurmukhi", + "familyid": "notosansgurmukhi", + "files": { + "NotoSansGurmukhi-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Black.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Black.ttf" }, + "NotoSansGurmukhi-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Bold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Bold.ttf" }, + "NotoSansGurmukhi-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Condensed.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Condensed.ttf" }, + "NotoSansGurmukhi-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedBlack.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedBlack.ttf" }, + "NotoSansGurmukhi-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedBold.ttf" }, + "NotoSansGurmukhi-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedExtraBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedExtraBold.ttf" }, + "NotoSansGurmukhi-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedExtraLight.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedExtraLight.ttf" }, + "NotoSansGurmukhi-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedLight.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedLight.ttf" }, + "NotoSansGurmukhi-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedMedium.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedMedium.ttf" }, + "NotoSansGurmukhi-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedSemiBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedSemiBold.ttf" }, + "NotoSansGurmukhi-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedThin.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedThin.ttf" }, + "NotoSansGurmukhi-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraBold.ttf" }, + "NotoSansGurmukhi-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensed.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensed.ttf" }, + "NotoSansGurmukhi-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedBlack.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedBlack.ttf" }, + "NotoSansGurmukhi-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedBold.ttf" }, + "NotoSansGurmukhi-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedExtraBold.ttf" }, + "NotoSansGurmukhi-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedExtraLight.ttf" }, + "NotoSansGurmukhi-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedLight.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedLight.ttf" }, + "NotoSansGurmukhi-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedMedium.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedMedium.ttf" }, + "NotoSansGurmukhi-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedSemiBold.ttf" }, + "NotoSansGurmukhi-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedThin.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedThin.ttf" }, + "NotoSansGurmukhi-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraLight.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraLight.ttf" }, + "NotoSansGurmukhi-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Light.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Light.ttf" }, + "NotoSansGurmukhi-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Medium.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Medium.ttf" }, + "NotoSansGurmukhi-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Regular.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Regular.ttf" }, + "NotoSansGurmukhi-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiBold.ttf" }, + "NotoSansGurmukhi-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensed.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensed.ttf" }, + "NotoSansGurmukhi-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedBlack.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedBlack.ttf" }, + "NotoSansGurmukhi-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedBold.ttf" }, + "NotoSansGurmukhi-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedExtraBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedExtraBold.ttf" }, + "NotoSansGurmukhi-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedExtraLight.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedExtraLight.ttf" }, + "NotoSansGurmukhi-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedLight.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedLight.ttf" }, + "NotoSansGurmukhi-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedMedium.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedMedium.ttf" }, + "NotoSansGurmukhi-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedSemiBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedSemiBold.ttf" }, + "NotoSansGurmukhi-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedThin.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedThin.ttf" }, + "NotoSansGurmukhi-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGurmukhi-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Thin.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Thin.ttf" }, + "NotoSansGurmukhiUI-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Black.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Black.ttf" }, + "NotoSansGurmukhiUI-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Bold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Bold.ttf" }, + "NotoSansGurmukhiUI-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Condensed.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Condensed.ttf" }, + "NotoSansGurmukhiUI-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedBlack.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedBlack.ttf" }, + "NotoSansGurmukhiUI-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedBold.ttf" }, + "NotoSansGurmukhiUI-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedExtraBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedExtraBold.ttf" }, + "NotoSansGurmukhiUI-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedExtraLight.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedExtraLight.ttf" }, + "NotoSansGurmukhiUI-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedLight.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedLight.ttf" }, + "NotoSansGurmukhiUI-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedMedium.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedMedium.ttf" }, + "NotoSansGurmukhiUI-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedSemiBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedSemiBold.ttf" }, + "NotoSansGurmukhiUI-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedThin.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedThin.ttf" }, + "NotoSansGurmukhiUI-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraBold.ttf" }, + "NotoSansGurmukhiUI-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensed.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensed.ttf" }, + "NotoSansGurmukhiUI-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedBlack.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedBlack.ttf" }, + "NotoSansGurmukhiUI-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedBold.ttf" }, + "NotoSansGurmukhiUI-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedExtraBold.ttf" }, + "NotoSansGurmukhiUI-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedExtraLight.ttf" }, + "NotoSansGurmukhiUI-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedLight.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedLight.ttf" }, + "NotoSansGurmukhiUI-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedMedium.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedMedium.ttf" }, + "NotoSansGurmukhiUI-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedSemiBold.ttf" }, + "NotoSansGurmukhiUI-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedThin.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedThin.ttf" }, + "NotoSansGurmukhiUI-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraLight.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraLight.ttf" }, + "NotoSansGurmukhiUI-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Light.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Light.ttf" }, + "NotoSansGurmukhiUI-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Medium.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Medium.ttf" }, + "NotoSansGurmukhiUI-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Regular.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Regular.ttf" }, + "NotoSansGurmukhiUI-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiBold.ttf" }, + "NotoSansGurmukhiUI-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensed.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensed.ttf" }, + "NotoSansGurmukhiUI-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedBlack.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedBlack.ttf" }, + "NotoSansGurmukhiUI-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedBold.ttf" }, + "NotoSansGurmukhiUI-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedExtraBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedExtraBold.ttf" }, + "NotoSansGurmukhiUI-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedExtraLight.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedExtraLight.ttf" }, + "NotoSansGurmukhiUI-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedLight.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedLight.ttf" }, + "NotoSansGurmukhiUI-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedMedium.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedMedium.ttf" }, + "NotoSansGurmukhiUI-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedSemiBold.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedSemiBold.ttf" }, + "NotoSansGurmukhiUI-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedThin.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedThin.ttf" }, + "NotoSansGurmukhiUI-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansGurmukhiUI-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Thin.ttf", "zippath": "NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/gurmukhi/releases/download/NotoSansGurmukhi-v2.004/NotoSansGurmukhi-v2.004.zip", + "siteurl": "https://github.com/notofonts/gurmukhi/releases/tag/NotoSansGurmukhi-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansGurmukhi" +}, +"notosanshanifirohingya": { + "defaults": { + "ttf": "NotoSansHanifiRohingya-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Hanifi Rohingya", + "familyid": "notosanshanifirohingya", + "files": { + "NotoSansHanifiRohingya-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansHanifiRohingya-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHanifiRohingya/full/ttf/NotoSansHanifiRohingya-Bold.ttf", "zippath": "NotoSansHanifiRohingya/full/ttf/NotoSansHanifiRohingya-Bold.ttf" }, + "NotoSansHanifiRohingya-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansHanifiRohingya-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHanifiRohingya/full/ttf/NotoSansHanifiRohingya-Medium.ttf", "zippath": "NotoSansHanifiRohingya/full/ttf/NotoSansHanifiRohingya-Medium.ttf" }, + "NotoSansHanifiRohingya-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansHanifiRohingya-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHanifiRohingya/full/ttf/NotoSansHanifiRohingya-Regular.ttf", "zippath": "NotoSansHanifiRohingya/full/ttf/NotoSansHanifiRohingya-Regular.ttf" }, + "NotoSansHanifiRohingya-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansHanifiRohingya-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHanifiRohingya/full/ttf/NotoSansHanifiRohingya-SemiBold.ttf", "zippath": "NotoSansHanifiRohingya/full/ttf/NotoSansHanifiRohingya-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/hanifi-rohingya/releases/download/NotoSansHanifiRohingya-v2.102/NotoSansHanifiRohingya-v2.102.zip", + "siteurl": "https://github.com/notofonts/hanifi-rohingya/releases/tag/NotoSansHanifiRohingya-v2.102", + "source": "Google", + "status": "current", + "version": "2.102", + "ziproot": "NotoSansHanifiRohingya" +}, +"notosanshanunoo": { + "defaults": { + "ttf": "NotoSansHanunoo-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Hanunoo", + "familyid": "notosanshanunoo", + "files": { + "NotoSansHanunoo-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansHanunoo-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHanunoo/full/ttf/NotoSansHanunoo-Regular.ttf", "zippath": "NotoSansHanunoo/full/ttf/NotoSansHanunoo-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/hanunoo/releases/download/NotoSansHanunoo-v2.004/NotoSansHanunoo-v2.004.zip", + "siteurl": "https://github.com/notofonts/hanunoo/releases/tag/NotoSansHanunoo-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansHanunoo" +}, +"notosanshatran": { + "defaults": { + "ttf": "NotoSansHatran-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Hatran", + "familyid": "notosanshatran", + "files": { + "NotoSansHatran-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansHatran-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHatran/full/ttf/NotoSansHatran-Regular.ttf", "zippath": "NotoSansHatran/full/ttf/NotoSansHatran-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/hatran/releases/download/NotoSansHatran-v2.001/NotoSansHatran-v2.001.zip", + "siteurl": "https://github.com/notofonts/hatran/releases/tag/NotoSansHatran-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansHatran" +}, +"notosanshebrew": { + "defaults": { + "ttf": "NotoSansHebrew-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Hebrew", + "familyid": "notosanshebrew", + "files": { + "NotoSansHebrew-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansHebrew-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-Black.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-Black.ttf" }, + "NotoSansHebrew-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansHebrew-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-Bold.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-Bold.ttf" }, + "NotoSansHebrew-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansHebrew-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-Condensed.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-Condensed.ttf" }, + "NotoSansHebrew-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansHebrew-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedBlack.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedBlack.ttf" }, + "NotoSansHebrew-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansHebrew-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedBold.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedBold.ttf" }, + "NotoSansHebrew-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansHebrew-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedExtraBold.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedExtraBold.ttf" }, + "NotoSansHebrew-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansHebrew-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedExtraLight.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedExtraLight.ttf" }, + "NotoSansHebrew-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansHebrew-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedLight.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedLight.ttf" }, + "NotoSansHebrew-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansHebrew-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedMedium.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedMedium.ttf" }, + "NotoSansHebrew-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansHebrew-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedSemiBold.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedSemiBold.ttf" }, + "NotoSansHebrew-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansHebrew-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedThin.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedThin.ttf" }, + "NotoSansHebrew-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansHebrew-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraBold.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraBold.ttf" }, + "NotoSansHebrew-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansHebrew-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensed.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensed.ttf" }, + "NotoSansHebrew-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansHebrew-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedBlack.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedBlack.ttf" }, + "NotoSansHebrew-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansHebrew-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedBold.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedBold.ttf" }, + "NotoSansHebrew-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansHebrew-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedExtraBold.ttf" }, + "NotoSansHebrew-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansHebrew-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedExtraLight.ttf" }, + "NotoSansHebrew-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansHebrew-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedLight.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedLight.ttf" }, + "NotoSansHebrew-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansHebrew-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedMedium.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedMedium.ttf" }, + "NotoSansHebrew-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansHebrew-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedSemiBold.ttf" }, + "NotoSansHebrew-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansHebrew-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedThin.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedThin.ttf" }, + "NotoSansHebrew-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansHebrew-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraLight.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraLight.ttf" }, + "NotoSansHebrew-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansHebrew-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-Light.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-Light.ttf" }, + "NotoSansHebrew-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansHebrew-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-Medium.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-Medium.ttf" }, + "NotoSansHebrew-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansHebrew-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-Regular.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-Regular.ttf" }, + "NotoSansHebrew-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansHebrew-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiBold.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-SemiBold.ttf" }, + "NotoSansHebrew-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansHebrew-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensed.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensed.ttf" }, + "NotoSansHebrew-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansHebrew-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedBlack.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedBlack.ttf" }, + "NotoSansHebrew-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansHebrew-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedBold.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedBold.ttf" }, + "NotoSansHebrew-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansHebrew-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedExtraBold.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedExtraBold.ttf" }, + "NotoSansHebrew-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansHebrew-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedExtraLight.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedExtraLight.ttf" }, + "NotoSansHebrew-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansHebrew-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedLight.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedLight.ttf" }, + "NotoSansHebrew-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansHebrew-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedMedium.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedMedium.ttf" }, + "NotoSansHebrew-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansHebrew-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedSemiBold.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedSemiBold.ttf" }, + "NotoSansHebrew-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansHebrew-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedThin.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedThin.ttf" }, + "NotoSansHebrew-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansHebrew-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-Thin.ttf", "zippath": "NotoSansHebrew/full/ttf/NotoSansHebrew-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/hebrew/releases/download/NotoSansHebrew-v2.003/NotoSansHebrew-v2.003.zip", + "siteurl": "https://github.com/notofonts/hebrew/releases/tag/NotoSansHebrew-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansHebrew" +}, +"notosansimperialaramaic": { + "defaults": { + "ttf": "NotoSansImperialAramaic-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Imperial Aramaic", + "familyid": "notosansimperialaramaic", + "files": { + "NotoSansImperialAramaic-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansImperialAramaic-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansImperialAramaic/full/ttf/NotoSansImperialAramaic-Regular.ttf", "zippath": "NotoSansImperialAramaic/full/ttf/NotoSansImperialAramaic-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/imperial-aramaic/releases/download/NotoSansImperialAramaic-v2.001/NotoSansImperialAramaic-v2.001.zip", + "siteurl": "https://github.com/notofonts/imperial-aramaic/releases/tag/NotoSansImperialAramaic-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansImperialAramaic" +}, +"notosansinscriptionalpahlavi": { + "defaults": { + "ttf": "NotoSansInscriptionalPahlavi-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Inscriptional Pahlavi", + "familyid": "notosansinscriptionalpahlavi", + "files": { + "NotoSansInscriptionalPahlavi-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansInscriptionalPahlavi-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansInscriptionalPahlavi/full/ttf/NotoSansInscriptionalPahlavi-Regular.ttf", "zippath": "NotoSansInscriptionalPahlavi/full/ttf/NotoSansInscriptionalPahlavi-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/inscriptional-pahlavi/releases/download/NotoSansInscriptionalPahlavi-v2.003/NotoSansInscriptionalPahlavi-v2.003.zip", + "siteurl": "https://github.com/notofonts/inscriptional-pahlavi/releases/tag/NotoSansInscriptionalPahlavi-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansInscriptionalPahlavi" +}, +"notosansinscriptionalparthian": { + "defaults": { + "ttf": "NotoSansInscriptionalParthian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Inscriptional Parthian", + "familyid": "notosansinscriptionalparthian", + "files": { + "NotoSansInscriptionalParthian-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansInscriptionalParthian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansInscriptionalParthian/full/ttf/NotoSansInscriptionalParthian-Regular.ttf", "zippath": "NotoSansInscriptionalParthian/full/ttf/NotoSansInscriptionalParthian-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/inscriptional-parthian/releases/download/NotoSansInscriptionalParthian-v2.003/NotoSansInscriptionalParthian-v2.003.zip", + "siteurl": "https://github.com/notofonts/inscriptional-parthian/releases/tag/NotoSansInscriptionalParthian-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansInscriptionalParthian" +}, +"notosansjavanese": { + "defaults": { + "ttf": "NotoSansJavanese-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Javanese", + "familyid": "notosansjavanese", + "files": { + "NotoSansJavanese-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansJavanese-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansJavanese/full/ttf/NotoSansJavanese-Bold.ttf", "zippath": "NotoSansJavanese/full/ttf/NotoSansJavanese-Bold.ttf" }, + "NotoSansJavanese-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansJavanese-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansJavanese/full/ttf/NotoSansJavanese-Regular.ttf", "zippath": "NotoSansJavanese/full/ttf/NotoSansJavanese-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/javanese/releases/download/NotoSansJavanese-v2.005/NotoSansJavanese-v2.005.zip", + "siteurl": "https://github.com/notofonts/javanese/releases/tag/NotoSansJavanese-v2.005", + "source": "Google", + "status": "current", + "version": "2.005", + "ziproot": "NotoSansJavanese" +}, +"notosansjp": { + "distributable": true, + "family": "Noto Sans JP", + "familyid": "notosansjp", + "license": "OFL", + "source": "Google", + "status": "current" +}, +"notosanskaithi": { + "defaults": { + "ttf": "NotoSansKaithi-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Kaithi", + "familyid": "notosanskaithi", + "files": { + "NotoSansKaithi-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKaithi-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKaithi/full/ttf/NotoSansKaithi-Regular.ttf", "zippath": "NotoSansKaithi/full/ttf/NotoSansKaithi-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/kaithi/releases/download/NotoSansKaithi-v2.004/NotoSansKaithi-v2.004.zip", + "siteurl": "https://github.com/notofonts/kaithi/releases/tag/NotoSansKaithi-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansKaithi" +}, +"notosanskannada": { + "defaults": { + "ttf": "NotoSansKannada-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Kannada", + "familyid": "notosanskannada", + "files": { + "NotoSansKannada-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansKannada-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-Black.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-Black.ttf" }, + "NotoSansKannada-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansKannada-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-Bold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-Bold.ttf" }, + "NotoSansKannada-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKannada-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-Condensed.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-Condensed.ttf" }, + "NotoSansKannada-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansKannada-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedBlack.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-CondensedBlack.ttf" }, + "NotoSansKannada-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansKannada-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-CondensedBold.ttf" }, + "NotoSansKannada-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansKannada-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedExtraBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-CondensedExtraBold.ttf" }, + "NotoSansKannada-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansKannada-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedExtraLight.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-CondensedExtraLight.ttf" }, + "NotoSansKannada-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansKannada-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedLight.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-CondensedLight.ttf" }, + "NotoSansKannada-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansKannada-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedMedium.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-CondensedMedium.ttf" }, + "NotoSansKannada-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansKannada-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedSemiBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-CondensedSemiBold.ttf" }, + "NotoSansKannada-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansKannada-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedThin.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-CondensedThin.ttf" }, + "NotoSansKannada-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansKannada-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-ExtraBold.ttf" }, + "NotoSansKannada-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKannada-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensed.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensed.ttf" }, + "NotoSansKannada-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansKannada-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedBlack.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedBlack.ttf" }, + "NotoSansKannada-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansKannada-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedBold.ttf" }, + "NotoSansKannada-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansKannada-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedExtraBold.ttf" }, + "NotoSansKannada-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansKannada-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedExtraLight.ttf" }, + "NotoSansKannada-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansKannada-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedLight.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedLight.ttf" }, + "NotoSansKannada-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansKannada-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedMedium.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedMedium.ttf" }, + "NotoSansKannada-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansKannada-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedSemiBold.ttf" }, + "NotoSansKannada-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansKannada-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedThin.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedThin.ttf" }, + "NotoSansKannada-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansKannada-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraLight.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-ExtraLight.ttf" }, + "NotoSansKannada-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansKannada-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-Light.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-Light.ttf" }, + "NotoSansKannada-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansKannada-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-Medium.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-Medium.ttf" }, + "NotoSansKannada-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKannada-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-Regular.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-Regular.ttf" }, + "NotoSansKannada-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansKannada-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-SemiBold.ttf" }, + "NotoSansKannada-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKannada-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensed.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensed.ttf" }, + "NotoSansKannada-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansKannada-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedBlack.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedBlack.ttf" }, + "NotoSansKannada-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansKannada-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedBold.ttf" }, + "NotoSansKannada-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansKannada-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedExtraBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedExtraBold.ttf" }, + "NotoSansKannada-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansKannada-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedExtraLight.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedExtraLight.ttf" }, + "NotoSansKannada-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansKannada-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedLight.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedLight.ttf" }, + "NotoSansKannada-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansKannada-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedMedium.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedMedium.ttf" }, + "NotoSansKannada-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansKannada-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedSemiBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedSemiBold.ttf" }, + "NotoSansKannada-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansKannada-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedThin.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedThin.ttf" }, + "NotoSansKannada-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansKannada-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannada-Thin.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannada-Thin.ttf" }, + "NotoSansKannadaUI-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-Black.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-Black.ttf" }, + "NotoSansKannadaUI-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-Bold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-Bold.ttf" }, + "NotoSansKannadaUI-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-Condensed.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-Condensed.ttf" }, + "NotoSansKannadaUI-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedBlack.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedBlack.ttf" }, + "NotoSansKannadaUI-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedBold.ttf" }, + "NotoSansKannadaUI-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedExtraBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedExtraBold.ttf" }, + "NotoSansKannadaUI-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedExtraLight.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedExtraLight.ttf" }, + "NotoSansKannadaUI-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedLight.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedLight.ttf" }, + "NotoSansKannadaUI-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedMedium.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedMedium.ttf" }, + "NotoSansKannadaUI-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedSemiBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedSemiBold.ttf" }, + "NotoSansKannadaUI-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedThin.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedThin.ttf" }, + "NotoSansKannadaUI-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraBold.ttf" }, + "NotoSansKannadaUI-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensed.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensed.ttf" }, + "NotoSansKannadaUI-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedBlack.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedBlack.ttf" }, + "NotoSansKannadaUI-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedBold.ttf" }, + "NotoSansKannadaUI-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedExtraBold.ttf" }, + "NotoSansKannadaUI-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedExtraLight.ttf" }, + "NotoSansKannadaUI-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedLight.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedLight.ttf" }, + "NotoSansKannadaUI-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedMedium.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedMedium.ttf" }, + "NotoSansKannadaUI-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedSemiBold.ttf" }, + "NotoSansKannadaUI-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedThin.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedThin.ttf" }, + "NotoSansKannadaUI-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraLight.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraLight.ttf" }, + "NotoSansKannadaUI-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-Light.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-Light.ttf" }, + "NotoSansKannadaUI-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-Medium.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-Medium.ttf" }, + "NotoSansKannadaUI-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-Regular.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-Regular.ttf" }, + "NotoSansKannadaUI-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiBold.ttf" }, + "NotoSansKannadaUI-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensed.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensed.ttf" }, + "NotoSansKannadaUI-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedBlack.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedBlack.ttf" }, + "NotoSansKannadaUI-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedBold.ttf" }, + "NotoSansKannadaUI-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedExtraBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedExtraBold.ttf" }, + "NotoSansKannadaUI-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedExtraLight.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedExtraLight.ttf" }, + "NotoSansKannadaUI-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedLight.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedLight.ttf" }, + "NotoSansKannadaUI-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedMedium.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedMedium.ttf" }, + "NotoSansKannadaUI-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedSemiBold.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedSemiBold.ttf" }, + "NotoSansKannadaUI-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedThin.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedThin.ttf" }, + "NotoSansKannadaUI-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansKannadaUI-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-Thin.ttf", "zippath": "NotoSansKannada/full/ttf/NotoSansKannadaUI-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/kannada/releases/download/NotoSansKannada-v2.004/NotoSansKannada-v2.004.zip", + "siteurl": "https://github.com/notofonts/kannada/releases/tag/NotoSansKannada-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansKannada" +}, +"notosanskayahli": { + "defaults": { + "ttf": "NotoSansKayahLi-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Kayah Li", + "familyid": "notosanskayahli", + "files": { + "NotoSansKayahLi-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansKayahLi-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKayahLi/full/ttf/NotoSansKayahLi-Bold.ttf", "zippath": "NotoSansKayahLi/full/ttf/NotoSansKayahLi-Bold.ttf" }, + "NotoSansKayahLi-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansKayahLi-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKayahLi/full/ttf/NotoSansKayahLi-Medium.ttf", "zippath": "NotoSansKayahLi/full/ttf/NotoSansKayahLi-Medium.ttf" }, + "NotoSansKayahLi-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKayahLi-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKayahLi/full/ttf/NotoSansKayahLi-Regular.ttf", "zippath": "NotoSansKayahLi/full/ttf/NotoSansKayahLi-Regular.ttf" }, + "NotoSansKayahLi-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansKayahLi-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKayahLi/full/ttf/NotoSansKayahLi-SemiBold.ttf", "zippath": "NotoSansKayahLi/full/ttf/NotoSansKayahLi-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/kayah-li/releases/download/NotoSansKayahLi-v2.002/NotoSansKayahLi-v2.002.zip", + "siteurl": "https://github.com/notofonts/kayah-li/releases/tag/NotoSansKayahLi-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansKayahLi" +}, +"notosanskharoshthi": { + "defaults": { + "ttf": "NotoSansKharoshthi-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Kharoshthi", + "familyid": "notosanskharoshthi", + "files": { + "NotoSansKharoshthi-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKharoshthi-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKharoshthi/full/ttf/NotoSansKharoshthi-Regular.ttf", "zippath": "NotoSansKharoshthi/full/ttf/NotoSansKharoshthi-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/kharoshthi/releases/download/NotoSansKharoshthi-v2.004/NotoSansKharoshthi-v2.004.zip", + "siteurl": "https://github.com/notofonts/kharoshthi/releases/tag/NotoSansKharoshthi-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansKharoshthi" +}, +"notosanskhmer": { + "defaults": { + "ttf": "NotoSansKhmer-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Khmer", + "familyid": "notosanskhmer", + "files": { + "NotoSansKhmer-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansKhmer-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-Black.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-Black.ttf" }, + "NotoSansKhmer-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansKhmer-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-Bold.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-Bold.ttf" }, + "NotoSansKhmer-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKhmer-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-Condensed.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-Condensed.ttf" }, + "NotoSansKhmer-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansKhmer-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedBlack.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedBlack.ttf" }, + "NotoSansKhmer-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansKhmer-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedBold.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedBold.ttf" }, + "NotoSansKhmer-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansKhmer-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedExtraBold.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedExtraBold.ttf" }, + "NotoSansKhmer-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansKhmer-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedExtraLight.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedExtraLight.ttf" }, + "NotoSansKhmer-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansKhmer-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedLight.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedLight.ttf" }, + "NotoSansKhmer-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansKhmer-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedMedium.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedMedium.ttf" }, + "NotoSansKhmer-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansKhmer-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedSemiBold.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedSemiBold.ttf" }, + "NotoSansKhmer-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansKhmer-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedThin.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedThin.ttf" }, + "NotoSansKhmer-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansKhmer-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraBold.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraBold.ttf" }, + "NotoSansKhmer-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKhmer-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensed.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensed.ttf" }, + "NotoSansKhmer-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansKhmer-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedBlack.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedBlack.ttf" }, + "NotoSansKhmer-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansKhmer-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedBold.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedBold.ttf" }, + "NotoSansKhmer-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansKhmer-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedExtraBold.ttf" }, + "NotoSansKhmer-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansKhmer-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedExtraLight.ttf" }, + "NotoSansKhmer-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansKhmer-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedLight.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedLight.ttf" }, + "NotoSansKhmer-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansKhmer-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedMedium.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedMedium.ttf" }, + "NotoSansKhmer-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansKhmer-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedSemiBold.ttf" }, + "NotoSansKhmer-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansKhmer-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedThin.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedThin.ttf" }, + "NotoSansKhmer-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansKhmer-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraLight.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraLight.ttf" }, + "NotoSansKhmer-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansKhmer-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-Light.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-Light.ttf" }, + "NotoSansKhmer-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansKhmer-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-Medium.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-Medium.ttf" }, + "NotoSansKhmer-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKhmer-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-Regular.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-Regular.ttf" }, + "NotoSansKhmer-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansKhmer-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiBold.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-SemiBold.ttf" }, + "NotoSansKhmer-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKhmer-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensed.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensed.ttf" }, + "NotoSansKhmer-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansKhmer-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedBlack.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedBlack.ttf" }, + "NotoSansKhmer-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansKhmer-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedBold.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedBold.ttf" }, + "NotoSansKhmer-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansKhmer-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedExtraBold.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedExtraBold.ttf" }, + "NotoSansKhmer-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansKhmer-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedExtraLight.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedExtraLight.ttf" }, + "NotoSansKhmer-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansKhmer-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedLight.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedLight.ttf" }, + "NotoSansKhmer-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansKhmer-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedMedium.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedMedium.ttf" }, + "NotoSansKhmer-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansKhmer-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedSemiBold.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedSemiBold.ttf" }, + "NotoSansKhmer-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansKhmer-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedThin.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedThin.ttf" }, + "NotoSansKhmer-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansKhmer-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-Thin.ttf", "zippath": "NotoSansKhmer/full/ttf/NotoSansKhmer-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/khmer/releases/download/NotoSansKhmer-v2.003/NotoSansKhmer-v2.003.zip", + "siteurl": "https://github.com/notofonts/khmer/releases/tag/NotoSansKhmer-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansKhmer" +}, +"notosanskhojki": { + "defaults": { + "ttf": "NotoSansKhojki-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Khojki", + "familyid": "notosanskhojki", + "files": { + "NotoSansKhojki-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKhojki-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhojki/full/ttf/NotoSansKhojki-Regular.ttf", "zippath": "NotoSansKhojki/full/ttf/NotoSansKhojki-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/khojki/releases/download/NotoSansKhojki-v2.004/NotoSansKhojki-v2.004.zip", + "siteurl": "https://github.com/notofonts/khojki/releases/tag/NotoSansKhojki-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansKhojki" +}, +"notosanskhudawadi": { + "defaults": { + "ttf": "NotoSansKhudawadi-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Khudawadi", + "familyid": "notosanskhudawadi", + "files": { + "NotoSansKhudawadi-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansKhudawadi-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansKhudawadi/full/ttf/NotoSansKhudawadi-Regular.ttf", "zippath": "NotoSansKhudawadi/full/ttf/NotoSansKhudawadi-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/khudawadi/releases/download/NotoSansKhudawadi-v2.003/NotoSansKhudawadi-v2.003.zip", + "siteurl": "https://github.com/notofonts/khudawadi/releases/tag/NotoSansKhudawadi-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansKhudawadi" +}, +"notosanskr": { + "distributable": true, + "family": "Noto Sans KR", + "familyid": "notosanskr", + "license": "OFL", + "source": "Google", + "status": "current" +}, +"notosanslao": { + "defaults": { + "ttf": "NotoSansLao-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Lao", + "familyid": "notosanslao", + "files": { + "NotoSansLao-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansLao-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-Black.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-Black.ttf" }, + "NotoSansLao-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansLao-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-Bold.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-Bold.ttf" }, + "NotoSansLao-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansLao-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-Condensed.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-Condensed.ttf" }, + "NotoSansLao-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansLao-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedBlack.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-CondensedBlack.ttf" }, + "NotoSansLao-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansLao-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedBold.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-CondensedBold.ttf" }, + "NotoSansLao-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansLao-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedExtraBold.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-CondensedExtraBold.ttf" }, + "NotoSansLao-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansLao-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedExtraLight.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-CondensedExtraLight.ttf" }, + "NotoSansLao-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansLao-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedLight.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-CondensedLight.ttf" }, + "NotoSansLao-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansLao-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedMedium.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-CondensedMedium.ttf" }, + "NotoSansLao-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansLao-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedSemiBold.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-CondensedSemiBold.ttf" }, + "NotoSansLao-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansLao-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedThin.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-CondensedThin.ttf" }, + "NotoSansLao-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansLao-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraBold.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-ExtraBold.ttf" }, + "NotoSansLao-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansLao-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensed.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-ExtraCondensed.ttf" }, + "NotoSansLao-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansLao-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedBlack.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedBlack.ttf" }, + "NotoSansLao-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansLao-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedBold.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedBold.ttf" }, + "NotoSansLao-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansLao-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedExtraBold.ttf" }, + "NotoSansLao-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansLao-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedExtraLight.ttf" }, + "NotoSansLao-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansLao-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedLight.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedLight.ttf" }, + "NotoSansLao-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansLao-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedMedium.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedMedium.ttf" }, + "NotoSansLao-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansLao-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedSemiBold.ttf" }, + "NotoSansLao-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansLao-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedThin.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedThin.ttf" }, + "NotoSansLao-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansLao-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraLight.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-ExtraLight.ttf" }, + "NotoSansLao-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansLao-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-Light.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-Light.ttf" }, + "NotoSansLao-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansLao-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-Medium.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-Medium.ttf" }, + "NotoSansLao-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansLao-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-Regular.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-Regular.ttf" }, + "NotoSansLao-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansLao-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-SemiBold.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-SemiBold.ttf" }, + "NotoSansLao-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansLao-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensed.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-SemiCondensed.ttf" }, + "NotoSansLao-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansLao-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedBlack.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-SemiCondensedBlack.ttf" }, + "NotoSansLao-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansLao-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedBold.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-SemiCondensedBold.ttf" }, + "NotoSansLao-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansLao-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedExtraBold.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-SemiCondensedExtraBold.ttf" }, + "NotoSansLao-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansLao-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedExtraLight.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-SemiCondensedExtraLight.ttf" }, + "NotoSansLao-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansLao-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedLight.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-SemiCondensedLight.ttf" }, + "NotoSansLao-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansLao-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedMedium.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-SemiCondensedMedium.ttf" }, + "NotoSansLao-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansLao-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedSemiBold.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-SemiCondensedSemiBold.ttf" }, + "NotoSansLao-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansLao-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedThin.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-SemiCondensedThin.ttf" }, + "NotoSansLao-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansLao-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLao/full/ttf/NotoSansLao-Thin.ttf", "zippath": "NotoSansLao/full/ttf/NotoSansLao-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/lao/releases/download/NotoSansLao-v2.003/NotoSansLao-v2.003.zip", + "siteurl": "https://github.com/notofonts/lao/releases/tag/NotoSansLao-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansLao" +}, +"notosanslepcha": { + "defaults": { + "ttf": "NotoSansLepcha-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Lepcha", + "familyid": "notosanslepcha", + "files": { + "NotoSansLepcha-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansLepcha-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLepcha/full/ttf/NotoSansLepcha-Regular.ttf", "zippath": "NotoSansLepcha/full/ttf/NotoSansLepcha-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/lepcha/releases/download/NotoSansLepcha-v2.006/NotoSansLepcha-v2.006.zip", + "siteurl": "https://github.com/notofonts/lepcha/releases/tag/NotoSansLepcha-v2.006", + "source": "Google", + "status": "current", + "version": "2.006", + "ziproot": "NotoSansLepcha" +}, +"notosanslimbu": { + "defaults": { + "ttf": "NotoSansLimbu-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Limbu", + "familyid": "notosanslimbu", + "files": { + "NotoSansLimbu-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansLimbu-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLimbu/full/ttf/NotoSansLimbu-Regular.ttf", "zippath": "NotoSansLimbu/full/ttf/NotoSansLimbu-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/limbu/releases/download/NotoSansLimbu-v2.004/NotoSansLimbu-v2.004.zip", + "siteurl": "https://github.com/notofonts/limbu/releases/tag/NotoSansLimbu-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansLimbu" +}, +"notosanslineara": { + "defaults": { + "ttf": "NotoSansLinearA-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Linear A", + "familyid": "notosanslineara", + "files": { + "NotoSansLinearA-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansLinearA-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLinearA/full/ttf/NotoSansLinearA-Regular.ttf", "zippath": "NotoSansLinearA/full/ttf/NotoSansLinearA-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/linear-a/releases/download/NotoSansLinearA-v2.002/NotoSansLinearA-v2.002.zip", + "siteurl": "https://github.com/notofonts/linear-a/releases/tag/NotoSansLinearA-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansLinearA" +}, +"notosanslinearb": { + "defaults": { + "ttf": "NotoSansLinearB-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Linear B", + "familyid": "notosanslinearb", + "files": { + "NotoSansLinearB-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansLinearB-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLinearB/full/ttf/NotoSansLinearB-Regular.ttf", "zippath": "NotoSansLinearB/full/ttf/NotoSansLinearB-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/linear-b/releases/download/NotoSansLinearB-v2.002/NotoSansLinearB-v2.002.zip", + "siteurl": "https://github.com/notofonts/linear-b/releases/tag/NotoSansLinearB-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansLinearB" +}, +"notosanslisu": { + "defaults": { + "ttf": "NotoSansLisu-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Lisu", + "familyid": "notosanslisu", + "files": { + "NotoSansLisu-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansLisu-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLisu/full/ttf/NotoSansLisu-Bold.ttf", "zippath": "NotoSansLisu/full/ttf/NotoSansLisu-Bold.ttf" }, + "NotoSansLisu-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansLisu-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLisu/full/ttf/NotoSansLisu-Medium.ttf", "zippath": "NotoSansLisu/full/ttf/NotoSansLisu-Medium.ttf" }, + "NotoSansLisu-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansLisu-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLisu/full/ttf/NotoSansLisu-Regular.ttf", "zippath": "NotoSansLisu/full/ttf/NotoSansLisu-Regular.ttf" }, + "NotoSansLisu-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansLisu-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLisu/full/ttf/NotoSansLisu-SemiBold.ttf", "zippath": "NotoSansLisu/full/ttf/NotoSansLisu-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/lisu/releases/download/NotoSansLisu-v2.102/NotoSansLisu-v2.102.zip", + "siteurl": "https://github.com/notofonts/lisu/releases/tag/NotoSansLisu-v2.102", + "source": "Google", + "status": "current", + "version": "2.102", + "ziproot": "NotoSansLisu" +}, +"notosanslycian": { + "defaults": { + "ttf": "NotoSansLycian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Lycian", + "familyid": "notosanslycian", + "files": { + "NotoSansLycian-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansLycian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLycian/full/ttf/NotoSansLycian-Regular.ttf", "zippath": "NotoSansLycian/full/ttf/NotoSansLycian-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/lycian/releases/download/NotoSansLycian-v2.002/NotoSansLycian-v2.002.zip", + "siteurl": "https://github.com/notofonts/lycian/releases/tag/NotoSansLycian-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansLycian" +}, +"notosanslydian": { + "defaults": { + "ttf": "NotoSansLydian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Lydian", + "familyid": "notosanslydian", + "files": { + "NotoSansLydian-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansLydian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansLydian/full/ttf/NotoSansLydian-Regular.ttf", "zippath": "NotoSansLydian/full/ttf/NotoSansLydian-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/lydian/releases/download/NotoSansLydian-v2.001/NotoSansLydian-v2.001.zip", + "siteurl": "https://github.com/notofonts/lydian/releases/tag/NotoSansLydian-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansLydian" +}, +"notosansmahajani": { + "defaults": { + "ttf": "NotoSansMahajani-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Mahajani", + "familyid": "notosansmahajani", + "files": { + "NotoSansMahajani-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMahajani-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMahajani/full/ttf/NotoSansMahajani-Regular.ttf", "zippath": "NotoSansMahajani/full/ttf/NotoSansMahajani-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/mahajani/releases/download/NotoSansMahajani-v2.003/NotoSansMahajani-v2.003.zip", + "siteurl": "https://github.com/notofonts/mahajani/releases/tag/NotoSansMahajani-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansMahajani" +}, +"notosansmalayalam": { + "defaults": { + "ttf": "NotoSansMalayalam-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Malayalam", + "familyid": "notosansmalayalam", + "files": { + "NotoSansMalayalam-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansMalayalam-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-Black.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-Black.ttf" }, + "NotoSansMalayalam-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansMalayalam-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-Bold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-Bold.ttf" }, + "NotoSansMalayalam-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMalayalam-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-Condensed.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-Condensed.ttf" }, + "NotoSansMalayalam-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansMalayalam-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedBlack.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedBlack.ttf" }, + "NotoSansMalayalam-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansMalayalam-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedBold.ttf" }, + "NotoSansMalayalam-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansMalayalam-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedExtraBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedExtraBold.ttf" }, + "NotoSansMalayalam-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansMalayalam-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedExtraLight.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedExtraLight.ttf" }, + "NotoSansMalayalam-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansMalayalam-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedLight.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedLight.ttf" }, + "NotoSansMalayalam-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansMalayalam-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedMedium.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedMedium.ttf" }, + "NotoSansMalayalam-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansMalayalam-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedSemiBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedSemiBold.ttf" }, + "NotoSansMalayalam-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansMalayalam-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedThin.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedThin.ttf" }, + "NotoSansMalayalam-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansMalayalam-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraBold.ttf" }, + "NotoSansMalayalam-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMalayalam-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensed.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensed.ttf" }, + "NotoSansMalayalam-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansMalayalam-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedBlack.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedBlack.ttf" }, + "NotoSansMalayalam-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansMalayalam-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedBold.ttf" }, + "NotoSansMalayalam-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansMalayalam-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedExtraBold.ttf" }, + "NotoSansMalayalam-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansMalayalam-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedExtraLight.ttf" }, + "NotoSansMalayalam-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansMalayalam-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedLight.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedLight.ttf" }, + "NotoSansMalayalam-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansMalayalam-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedMedium.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedMedium.ttf" }, + "NotoSansMalayalam-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansMalayalam-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedSemiBold.ttf" }, + "NotoSansMalayalam-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansMalayalam-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedThin.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedThin.ttf" }, + "NotoSansMalayalam-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansMalayalam-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraLight.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraLight.ttf" }, + "NotoSansMalayalam-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansMalayalam-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-Light.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-Light.ttf" }, + "NotoSansMalayalam-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansMalayalam-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-Medium.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-Medium.ttf" }, + "NotoSansMalayalam-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMalayalam-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-Regular.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-Regular.ttf" }, + "NotoSansMalayalam-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansMalayalam-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiBold.ttf" }, + "NotoSansMalayalam-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMalayalam-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensed.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensed.ttf" }, + "NotoSansMalayalam-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansMalayalam-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedBlack.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedBlack.ttf" }, + "NotoSansMalayalam-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansMalayalam-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedBold.ttf" }, + "NotoSansMalayalam-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansMalayalam-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedExtraBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedExtraBold.ttf" }, + "NotoSansMalayalam-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansMalayalam-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedExtraLight.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedExtraLight.ttf" }, + "NotoSansMalayalam-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansMalayalam-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedLight.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedLight.ttf" }, + "NotoSansMalayalam-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansMalayalam-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedMedium.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedMedium.ttf" }, + "NotoSansMalayalam-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansMalayalam-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedSemiBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedSemiBold.ttf" }, + "NotoSansMalayalam-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansMalayalam-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedThin.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedThin.ttf" }, + "NotoSansMalayalam-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansMalayalam-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-Thin.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalam-Thin.ttf" }, + "NotoSansMalayalamUI-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Black.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Black.ttf" }, + "NotoSansMalayalamUI-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Bold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Bold.ttf" }, + "NotoSansMalayalamUI-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Condensed.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Condensed.ttf" }, + "NotoSansMalayalamUI-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedBlack.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedBlack.ttf" }, + "NotoSansMalayalamUI-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedBold.ttf" }, + "NotoSansMalayalamUI-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedExtraBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedExtraBold.ttf" }, + "NotoSansMalayalamUI-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedExtraLight.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedExtraLight.ttf" }, + "NotoSansMalayalamUI-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedLight.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedLight.ttf" }, + "NotoSansMalayalamUI-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedMedium.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedMedium.ttf" }, + "NotoSansMalayalamUI-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedSemiBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedSemiBold.ttf" }, + "NotoSansMalayalamUI-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedThin.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedThin.ttf" }, + "NotoSansMalayalamUI-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraBold.ttf" }, + "NotoSansMalayalamUI-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensed.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensed.ttf" }, + "NotoSansMalayalamUI-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedBlack.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedBlack.ttf" }, + "NotoSansMalayalamUI-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedBold.ttf" }, + "NotoSansMalayalamUI-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedExtraBold.ttf" }, + "NotoSansMalayalamUI-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedExtraLight.ttf" }, + "NotoSansMalayalamUI-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedLight.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedLight.ttf" }, + "NotoSansMalayalamUI-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedMedium.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedMedium.ttf" }, + "NotoSansMalayalamUI-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedSemiBold.ttf" }, + "NotoSansMalayalamUI-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedThin.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedThin.ttf" }, + "NotoSansMalayalamUI-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraLight.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraLight.ttf" }, + "NotoSansMalayalamUI-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Light.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Light.ttf" }, + "NotoSansMalayalamUI-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Medium.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Medium.ttf" }, + "NotoSansMalayalamUI-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Regular.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Regular.ttf" }, + "NotoSansMalayalamUI-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiBold.ttf" }, + "NotoSansMalayalamUI-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensed.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensed.ttf" }, + "NotoSansMalayalamUI-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedBlack.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedBlack.ttf" }, + "NotoSansMalayalamUI-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedBold.ttf" }, + "NotoSansMalayalamUI-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedExtraBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedExtraBold.ttf" }, + "NotoSansMalayalamUI-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedExtraLight.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedExtraLight.ttf" }, + "NotoSansMalayalamUI-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedLight.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedLight.ttf" }, + "NotoSansMalayalamUI-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedMedium.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedMedium.ttf" }, + "NotoSansMalayalamUI-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedSemiBold.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedSemiBold.ttf" }, + "NotoSansMalayalamUI-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedThin.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedThin.ttf" }, + "NotoSansMalayalamUI-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansMalayalamUI-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Thin.ttf", "zippath": "NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/malayalam/releases/download/NotoSansMalayalam-v2.104/NotoSansMalayalam-v2.104.zip", + "siteurl": "https://github.com/notofonts/malayalam/releases/tag/NotoSansMalayalam-v2.104", + "source": "Google", + "status": "current", + "version": "2.104", + "ziproot": "NotoSansMalayalam" +}, +"notosansmandaic": { + "defaults": { + "ttf": "NotoSansMandaic-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Mandaic", + "familyid": "notosansmandaic", + "files": { + "NotoSansMandaic-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMandaic-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMandaic/full/ttf/NotoSansMandaic-Regular.ttf", "zippath": "NotoSansMandaic/full/ttf/NotoSansMandaic-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/mandaic/releases/download/NotoSansMandaic-v2.002/NotoSansMandaic-v2.002.zip", + "siteurl": "https://github.com/notofonts/mandaic/releases/tag/NotoSansMandaic-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansMandaic" +}, +"notosansmanichaean": { + "defaults": { + "ttf": "NotoSansManichaean-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Manichaean", + "familyid": "notosansmanichaean", + "files": { + "NotoSansManichaean-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansManichaean-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansManichaean/full/ttf/NotoSansManichaean-Regular.ttf", "zippath": "NotoSansManichaean/full/ttf/NotoSansManichaean-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/manichaean/releases/download/NotoSansManichaean-v2.004/NotoSansManichaean-v2.004.zip", + "siteurl": "https://github.com/notofonts/manichaean/releases/tag/NotoSansManichaean-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansManichaean" +}, +"notosansmarchen": { + "defaults": { + "ttf": "NotoSansMarchen-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Marchen", + "familyid": "notosansmarchen", + "files": { + "NotoSansMarchen-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMarchen-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMarchen/full/ttf/NotoSansMarchen-Regular.ttf", "zippath": "NotoSansMarchen/full/ttf/NotoSansMarchen-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/marchen/releases/download/NotoSansMarchen-v2.003/NotoSansMarchen-v2.003.zip", + "siteurl": "https://github.com/notofonts/marchen/releases/tag/NotoSansMarchen-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansMarchen" +}, +"notosansmasaramgondi": { + "defaults": { + "ttf": "NotoSansMasaramGondi-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Masaram Gondi", + "familyid": "notosansmasaramgondi", + "files": { + "NotoSansMasaramGondi-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMasaramGondi-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMasaramGondi/full/ttf/NotoSansMasaramGondi-Regular.ttf", "zippath": "NotoSansMasaramGondi/full/ttf/NotoSansMasaramGondi-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/masaram-gondi/releases/download/NotoSansMasaramGondi-v1.004/NotoSansMasaramGondi-v1.004.zip", + "siteurl": "https://github.com/notofonts/masaram-gondi/releases/tag/NotoSansMasaramGondi-v1.004", + "source": "Google", + "status": "current", + "version": "1.004", + "ziproot": "NotoSansMasaramGondi" +}, +"notosansmedefaidrin": { + "defaults": { + "ttf": "NotoSansMedefaidrin-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Medefaidrin", + "familyid": "notosansmedefaidrin", + "files": { + "NotoSansMedefaidrin-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansMedefaidrin-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMedefaidrin/full/ttf/NotoSansMedefaidrin-Bold.ttf", "zippath": "NotoSansMedefaidrin/full/ttf/NotoSansMedefaidrin-Bold.ttf" }, + "NotoSansMedefaidrin-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansMedefaidrin-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMedefaidrin/full/ttf/NotoSansMedefaidrin-Medium.ttf", "zippath": "NotoSansMedefaidrin/full/ttf/NotoSansMedefaidrin-Medium.ttf" }, + "NotoSansMedefaidrin-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMedefaidrin-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMedefaidrin/full/ttf/NotoSansMedefaidrin-Regular.ttf", "zippath": "NotoSansMedefaidrin/full/ttf/NotoSansMedefaidrin-Regular.ttf" }, + "NotoSansMedefaidrin-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansMedefaidrin-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMedefaidrin/full/ttf/NotoSansMedefaidrin-SemiBold.ttf", "zippath": "NotoSansMedefaidrin/full/ttf/NotoSansMedefaidrin-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/medefaidrin/releases/download/NotoSansMedefaidrin-v1.002/NotoSansMedefaidrin-v1.002.zip", + "siteurl": "https://github.com/notofonts/medefaidrin/releases/tag/NotoSansMedefaidrin-v1.002", + "source": "Google", + "status": "current", + "version": "1.002", + "ziproot": "NotoSansMedefaidrin" +}, +"notosansmeeteimayek": { + "defaults": { + "ttf": "NotoSansMeeteiMayek-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Meetei Mayek", + "familyid": "notosansmeeteimayek", + "files": { + "NotoSansMeeteiMayek-Black.ttf": { "axes": { "wght": 900.0 }, "packagepath": "full/ttf/NotoSansMeeteiMayek-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Black.ttf", "zippath": "NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Black.ttf" }, + "NotoSansMeeteiMayek-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansMeeteiMayek-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Bold.ttf", "zippath": "NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Bold.ttf" }, + "NotoSansMeeteiMayek-ExtraBold.ttf": { "axes": { "wght": 800.0 }, "packagepath": "full/ttf/NotoSansMeeteiMayek-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-ExtraBold.ttf", "zippath": "NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-ExtraBold.ttf" }, + "NotoSansMeeteiMayek-ExtraLight.ttf": { "axes": { "wght": 200.0 }, "packagepath": "full/ttf/NotoSansMeeteiMayek-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-ExtraLight.ttf", "zippath": "NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-ExtraLight.ttf" }, + "NotoSansMeeteiMayek-Light.ttf": { "axes": { "wght": 300.0 }, "packagepath": "full/ttf/NotoSansMeeteiMayek-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Light.ttf", "zippath": "NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Light.ttf" }, + "NotoSansMeeteiMayek-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansMeeteiMayek-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Medium.ttf", "zippath": "NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Medium.ttf" }, + "NotoSansMeeteiMayek-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMeeteiMayek-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Regular.ttf", "zippath": "NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Regular.ttf" }, + "NotoSansMeeteiMayek-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansMeeteiMayek-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-SemiBold.ttf", "zippath": "NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-SemiBold.ttf" }, + "NotoSansMeeteiMayek-Thin.ttf": { "axes": { "wght": 100.0 }, "packagepath": "full/ttf/NotoSansMeeteiMayek-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Thin.ttf", "zippath": "NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/meetei-mayek/releases/download/NotoSansMeeteiMayek-v2.002/NotoSansMeeteiMayek-v2.002.zip", + "siteurl": "https://github.com/notofonts/meetei-mayek/releases/tag/NotoSansMeeteiMayek-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansMeeteiMayek" +}, +"notosansmendekikakui": { + "defaults": { + "ttf": "NotoSansMendeKikakui-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Mende Kikakui", + "familyid": "notosansmendekikakui", + "files": { + "NotoSansMendeKikakui-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMendeKikakui-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMendeKikakui/full/ttf/NotoSansMendeKikakui-Regular.ttf", "zippath": "NotoSansMendeKikakui/full/ttf/NotoSansMendeKikakui-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/mende-kikakui/releases/download/NotoSansMendeKikakui-v2.003/NotoSansMendeKikakui-v2.003.zip", + "siteurl": "https://github.com/notofonts/mende-kikakui/releases/tag/NotoSansMendeKikakui-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansMendeKikakui" +}, +"notosansmeroitic": { + "defaults": { + "ttf": "NotoSansMeroitic-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Meroitic", + "familyid": "notosansmeroitic", + "files": { + "NotoSansMeroitic-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMeroitic-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMeroitic/full/ttf/NotoSansMeroitic-Regular.ttf", "zippath": "NotoSansMeroitic/full/ttf/NotoSansMeroitic-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/meroitic/releases/download/NotoSansMeroitic-v2.001/NotoSansMeroitic-v2.001.zip", + "siteurl": "https://github.com/notofonts/meroitic/releases/tag/NotoSansMeroitic-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansMeroitic" +}, +"notosansmeroiticcursive": { + "distributable": true, + "fallback": "notosansmeroitic", + "family": "Noto Sans Meroitic Cursive", + "familyid": "notosansmeroiticcursive", + "license": "OFL", + "source": "Google", + "status": "deprecated" +}, +"notosansmiao": { + "defaults": { + "ttf": "NotoSansMiao-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Miao", + "familyid": "notosansmiao", + "files": { + "NotoSansMiao-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMiao-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMiao/full/ttf/NotoSansMiao-Regular.ttf", "zippath": "NotoSansMiao/full/ttf/NotoSansMiao-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/miao/releases/download/NotoSansMiao-v2.003/NotoSansMiao-v2.003.zip", + "siteurl": "https://github.com/notofonts/miao/releases/tag/NotoSansMiao-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansMiao" +}, +"notosansmodi": { + "defaults": { + "ttf": "NotoSansModi-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Modi", + "familyid": "notosansmodi", + "files": { + "NotoSansModi-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansModi-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansModi/full/ttf/NotoSansModi-Regular.ttf", "zippath": "NotoSansModi/full/ttf/NotoSansModi-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/modi/releases/download/NotoSansModi-v2.004/NotoSansModi-v2.004.zip", + "siteurl": "https://github.com/notofonts/modi/releases/tag/NotoSansModi-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansModi" +}, +"notosansmongolian": { + "defaults": { + "ttf": "NotoSansMongolian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Mongolian", + "familyid": "notosansmongolian", + "files": { + "NotoSansMongolian-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMongolian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMongolian/full/ttf/NotoSansMongolian-Regular.ttf", "zippath": "NotoSansMongolian/full/ttf/NotoSansMongolian-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/mongolian/releases/download/NotoSansMongolian-v2.003/NotoSansMongolian-v2.003.zip", + "siteurl": "https://github.com/notofonts/mongolian/releases/tag/NotoSansMongolian-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansMongolian" +}, +"notosansmro": { + "defaults": { + "ttf": "NotoSansMro-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Mro", + "familyid": "notosansmro", + "files": { + "NotoSansMro-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMro-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMro/full/ttf/NotoSansMro-Regular.ttf", "zippath": "NotoSansMro/full/ttf/NotoSansMro-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/mro/releases/download/NotoSansMro-v2.001/NotoSansMro-v2.001.zip", + "siteurl": "https://github.com/notofonts/mro/releases/tag/NotoSansMro-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansMro" +}, +"notosansmultani": { + "defaults": { + "ttf": "NotoSansMultani-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Multani", + "familyid": "notosansmultani", + "files": { + "NotoSansMultani-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMultani-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMultani/full/ttf/NotoSansMultani-Regular.ttf", "zippath": "NotoSansMultani/full/ttf/NotoSansMultani-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/multani/releases/download/NotoSansMultani-v2.002/NotoSansMultani-v2.002.zip", + "siteurl": "https://github.com/notofonts/multani/releases/tag/NotoSansMultani-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansMultani" +}, +"notosansmyanmar": { + "defaults": { + "ttf": "NotoSansMyanmar-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Myanmar", + "familyid": "notosansmyanmar", + "files": { + "NotoSansMyanmar-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansMyanmar-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-Black.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-Black.ttf" }, + "NotoSansMyanmar-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansMyanmar-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-Bold.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-Bold.ttf" }, + "NotoSansMyanmar-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMyanmar-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-Condensed.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-Condensed.ttf" }, + "NotoSansMyanmar-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansMyanmar-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedBlack.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedBlack.ttf" }, + "NotoSansMyanmar-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansMyanmar-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedBold.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedBold.ttf" }, + "NotoSansMyanmar-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansMyanmar-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedExtraBold.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedExtraBold.ttf" }, + "NotoSansMyanmar-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansMyanmar-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedExtraLight.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedExtraLight.ttf" }, + "NotoSansMyanmar-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansMyanmar-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedLight.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedLight.ttf" }, + "NotoSansMyanmar-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansMyanmar-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedMedium.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedMedium.ttf" }, + "NotoSansMyanmar-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansMyanmar-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedSemiBold.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedSemiBold.ttf" }, + "NotoSansMyanmar-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansMyanmar-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedThin.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedThin.ttf" }, + "NotoSansMyanmar-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansMyanmar-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraBold.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraBold.ttf" }, + "NotoSansMyanmar-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMyanmar-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensed.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensed.ttf" }, + "NotoSansMyanmar-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansMyanmar-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedBlack.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedBlack.ttf" }, + "NotoSansMyanmar-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansMyanmar-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedBold.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedBold.ttf" }, + "NotoSansMyanmar-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansMyanmar-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedExtraBold.ttf" }, + "NotoSansMyanmar-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansMyanmar-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedExtraLight.ttf" }, + "NotoSansMyanmar-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansMyanmar-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedLight.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedLight.ttf" }, + "NotoSansMyanmar-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansMyanmar-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedMedium.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedMedium.ttf" }, + "NotoSansMyanmar-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansMyanmar-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedSemiBold.ttf" }, + "NotoSansMyanmar-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansMyanmar-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedThin.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedThin.ttf" }, + "NotoSansMyanmar-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansMyanmar-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraLight.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraLight.ttf" }, + "NotoSansMyanmar-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansMyanmar-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-Light.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-Light.ttf" }, + "NotoSansMyanmar-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansMyanmar-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-Medium.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-Medium.ttf" }, + "NotoSansMyanmar-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMyanmar-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-Regular.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-Regular.ttf" }, + "NotoSansMyanmar-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansMyanmar-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiBold.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiBold.ttf" }, + "NotoSansMyanmar-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansMyanmar-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensed.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensed.ttf" }, + "NotoSansMyanmar-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansMyanmar-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedBlack.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedBlack.ttf" }, + "NotoSansMyanmar-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansMyanmar-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedBold.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedBold.ttf" }, + "NotoSansMyanmar-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansMyanmar-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedExtraBold.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedExtraBold.ttf" }, + "NotoSansMyanmar-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansMyanmar-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedExtraLight.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedExtraLight.ttf" }, + "NotoSansMyanmar-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansMyanmar-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedLight.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedLight.ttf" }, + "NotoSansMyanmar-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansMyanmar-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedMedium.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedMedium.ttf" }, + "NotoSansMyanmar-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansMyanmar-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedSemiBold.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedSemiBold.ttf" }, + "NotoSansMyanmar-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansMyanmar-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedThin.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedThin.ttf" }, + "NotoSansMyanmar-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansMyanmar-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-Thin.ttf", "zippath": "NotoSansMyanmar/full/ttf/NotoSansMyanmar-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/myanmar/releases/download/NotoSansMyanmar-v2.107/NotoSansMyanmar-v2.107.zip", + "siteurl": "https://github.com/notofonts/myanmar/releases/tag/NotoSansMyanmar-v2.107", + "source": "Google", + "status": "current", + "version": "2.107", + "ziproot": "NotoSansMyanmar" +}, +"notosansnabataean": { + "defaults": { + "ttf": "NotoSansNabataean-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Nabataean", + "familyid": "notosansnabataean", + "files": { + "NotoSansNabataean-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansNabataean-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansNabataean/full/ttf/NotoSansNabataean-Regular.ttf", "zippath": "NotoSansNabataean/full/ttf/NotoSansNabataean-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/nabataean/releases/download/NotoSansNabataean-v2.001/NotoSansNabataean-v2.001.zip", + "siteurl": "https://github.com/notofonts/nabataean/releases/tag/NotoSansNabataean-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansNabataean" +}, +"notosansnagmundari": { + "defaults": { + "ttf": "NotoSansNagMundari-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Nag Mundari", + "familyid": "notosansnagmundari", + "files": { + "NotoSansNagMundari-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansNagMundari-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansNagMundari/full/ttf/NotoSansNagMundari-Bold.ttf", "zippath": "NotoSansNagMundari/full/ttf/NotoSansNagMundari-Bold.ttf" }, + "NotoSansNagMundari-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansNagMundari-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansNagMundari/full/ttf/NotoSansNagMundari-Regular.ttf", "zippath": "NotoSansNagMundari/full/ttf/NotoSansNagMundari-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/nag-mundari/releases/download/NotoSansNagMundari-v1.000/NotoSansNagMundari-v1.000.zip", + "siteurl": "https://github.com/notofonts/nag-mundari/releases/tag/NotoSansNagMundari-v1.000", + "source": "Google", + "status": "current", + "version": "1.000", + "ziproot": "NotoSansNagMundari" +}, +"notosansnandinagari": { + "defaults": { + "ttf": "NotoSansNandinagari-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Nandinagari", + "familyid": "notosansnandinagari", + "files": { + "NotoSansNandinagari-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansNandinagari-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansNandinagari/full/ttf/NotoSansNandinagari-Regular.ttf", "zippath": "NotoSansNandinagari/full/ttf/NotoSansNandinagari-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/nandinagari/releases/download/NotoSansNandinagari-v1.001/NotoSansNandinagari-v1.001.zip", + "siteurl": "https://github.com/notofonts/nandinagari/releases/tag/NotoSansNandinagari-v1.001", + "source": "Google", + "status": "current", + "version": "1.001", + "ziproot": "NotoSansNandinagari" +}, +"notosansnewa": { + "defaults": { + "ttf": "NotoSansNewa-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Newa", + "familyid": "notosansnewa", + "files": { + "NotoSansNewa-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansNewa-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansNewa/full/ttf/NotoSansNewa-Regular.ttf", "zippath": "NotoSansNewa/full/ttf/NotoSansNewa-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/newa/releases/download/NotoSansNewa-v2.007/NotoSansNewa-v2.007.zip", + "siteurl": "https://github.com/notofonts/newa/releases/tag/NotoSansNewa-v2.007", + "source": "Google", + "status": "current", + "version": "2.007", + "ziproot": "NotoSansNewa" +}, +"notosansnewtailue": { + "defaults": { + "ttf": "NotoSansNewTaiLue-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans New Tai Lue", + "familyid": "notosansnewtailue", + "files": { + "NotoSansNewTaiLue-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansNewTaiLue-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansNewTaiLue/full/ttf/NotoSansNewTaiLue-Bold.ttf", "zippath": "NotoSansNewTaiLue/full/ttf/NotoSansNewTaiLue-Bold.ttf" }, + "NotoSansNewTaiLue-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansNewTaiLue-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansNewTaiLue/full/ttf/NotoSansNewTaiLue-Medium.ttf", "zippath": "NotoSansNewTaiLue/full/ttf/NotoSansNewTaiLue-Medium.ttf" }, + "NotoSansNewTaiLue-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansNewTaiLue-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansNewTaiLue/full/ttf/NotoSansNewTaiLue-Regular.ttf", "zippath": "NotoSansNewTaiLue/full/ttf/NotoSansNewTaiLue-Regular.ttf" }, + "NotoSansNewTaiLue-Semibold.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansNewTaiLue-Semibold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansNewTaiLue/full/ttf/NotoSansNewTaiLue-Semibold.ttf", "zippath": "NotoSansNewTaiLue/full/ttf/NotoSansNewTaiLue-Semibold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/new-tai-lue/releases/download/NotoSansNewTaiLue-v2.003/NotoSansNewTaiLue-v2.003.zip", + "siteurl": "https://github.com/notofonts/new-tai-lue/releases/tag/NotoSansNewTaiLue-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansNewTaiLue" +}, +"notosansnko": { + "defaults": { + "ttf": "NotoSansNKo-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans NKo", + "familyid": "notosansnko", + "files": { + "NotoSansNKo-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansNKo-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansNKo/full/ttf/NotoSansNKo-Regular.ttf", "zippath": "NotoSansNKo/full/ttf/NotoSansNKo-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/nko/releases/download/NotoSansNKo-v2.004/NotoSansNKo-v2.004.zip", + "siteurl": "https://github.com/notofonts/nko/releases/tag/NotoSansNKo-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansNKo" +}, +"notosansogham": { + "defaults": { + "ttf": "NotoSansOgham-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Ogham", + "familyid": "notosansogham", + "files": { + "NotoSansOgham-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansOgham-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOgham/full/ttf/NotoSansOgham-Regular.ttf", "zippath": "NotoSansOgham/full/ttf/NotoSansOgham-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/ogham/releases/download/NotoSansOgham-v2.001/NotoSansOgham-v2.001.zip", + "siteurl": "https://github.com/notofonts/ogham/releases/tag/NotoSansOgham-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansOgham" +}, +"notosansolchiki": { + "defaults": { + "ttf": "NotoSansOlChiki-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Ol Chiki", + "familyid": "notosansolchiki", + "files": { + "NotoSansOlChiki-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansOlChiki-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOlChiki/full/ttf/NotoSansOlChiki-Bold.ttf", "zippath": "NotoSansOlChiki/full/ttf/NotoSansOlChiki-Bold.ttf" }, + "NotoSansOlChiki-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansOlChiki-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOlChiki/full/ttf/NotoSansOlChiki-Medium.ttf", "zippath": "NotoSansOlChiki/full/ttf/NotoSansOlChiki-Medium.ttf" }, + "NotoSansOlChiki-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansOlChiki-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOlChiki/full/ttf/NotoSansOlChiki-Regular.ttf", "zippath": "NotoSansOlChiki/full/ttf/NotoSansOlChiki-Regular.ttf" }, + "NotoSansOlChiki-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansOlChiki-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOlChiki/full/ttf/NotoSansOlChiki-SemiBold.ttf", "zippath": "NotoSansOlChiki/full/ttf/NotoSansOlChiki-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/ol-chiki/releases/download/NotoSansOlChiki-v2.003/NotoSansOlChiki-v2.003.zip", + "siteurl": "https://github.com/notofonts/ol-chiki/releases/tag/NotoSansOlChiki-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansOlChiki" +}, +"notosansoldhungarian": { + "defaults": { + "ttf": "NotoSansOldHungarian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Old Hungarian", + "familyid": "notosansoldhungarian", + "files": { + "NotoSansOldHungarian-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansOldHungarian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOldHungarian/full/ttf/NotoSansOldHungarian-Regular.ttf", "zippath": "NotoSansOldHungarian/full/ttf/NotoSansOldHungarian-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/old-hungarian/releases/download/NotoSansOldHungarian-v2.005/NotoSansOldHungarian-v2.005.zip", + "siteurl": "https://github.com/notofonts/old-hungarian/releases/tag/NotoSansOldHungarian-v2.005", + "source": "Google", + "status": "current", + "version": "2.005", + "ziproot": "NotoSansOldHungarian" +}, +"notosansolditalic": { + "defaults": { + "ttf": "NotoSansOldItalic-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Old Italic", + "familyid": "notosansolditalic", + "files": { + "NotoSansOldItalic-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansOldItalic-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOldItalic/full/ttf/NotoSansOldItalic-Regular.ttf", "zippath": "NotoSansOldItalic/full/ttf/NotoSansOldItalic-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/old-italic/releases/download/NotoSansOldItalic-v2.003/NotoSansOldItalic-v2.003.zip", + "siteurl": "https://github.com/notofonts/old-italic/releases/tag/NotoSansOldItalic-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansOldItalic" +}, +"notosansoldnortharabian": { + "defaults": { + "ttf": "NotoSansOldNorthArabian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Old North Arabian", + "familyid": "notosansoldnortharabian", + "files": { + "NotoSansOldNorthArabian-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansOldNorthArabian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOldNorthArabian/full/ttf/NotoSansOldNorthArabian-Regular.ttf", "zippath": "NotoSansOldNorthArabian/full/ttf/NotoSansOldNorthArabian-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/old-north-arabian/releases/download/NotoSansOldNorthArabian-v2.001/NotoSansOldNorthArabian-v2.001.zip", + "siteurl": "https://github.com/notofonts/old-north-arabian/releases/tag/NotoSansOldNorthArabian-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansOldNorthArabian" +}, +"notosansoldpermic": { + "defaults": { + "ttf": "NotoSansOldPermic-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Old Permic", + "familyid": "notosansoldpermic", + "files": { + "NotoSansOldPermic-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansOldPermic-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOldPermic/full/ttf/NotoSansOldPermic-Regular.ttf", "zippath": "NotoSansOldPermic/full/ttf/NotoSansOldPermic-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/old-permic/releases/download/NotoSansOldPermic-v2.001/NotoSansOldPermic-v2.001.zip", + "siteurl": "https://github.com/notofonts/old-permic/releases/tag/NotoSansOldPermic-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansOldPermic" +}, +"notosansoldpersian": { + "defaults": { + "ttf": "NotoSansOldPersian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Old Persian", + "familyid": "notosansoldpersian", + "files": { + "NotoSansOldPersian-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansOldPersian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOldPersian/full/ttf/NotoSansOldPersian-Regular.ttf", "zippath": "NotoSansOldPersian/full/ttf/NotoSansOldPersian-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/old-persian/releases/download/NotoSansOldPersian-v2.001/NotoSansOldPersian-v2.001.zip", + "siteurl": "https://github.com/notofonts/old-persian/releases/tag/NotoSansOldPersian-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansOldPersian" +}, +"notosansoldsogdian": { + "defaults": { + "ttf": "NotoSansOldSogdian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Old Sogdian", + "familyid": "notosansoldsogdian", + "files": { + "NotoSansOldSogdian-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansOldSogdian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOldSogdian/full/ttf/NotoSansOldSogdian-Regular.ttf", "zippath": "NotoSansOldSogdian/full/ttf/NotoSansOldSogdian-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/old-sogdian/releases/download/NotoSansOldSogdian-v2.002/NotoSansOldSogdian-v2.002.zip", + "siteurl": "https://github.com/notofonts/old-sogdian/releases/tag/NotoSansOldSogdian-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansOldSogdian" +}, +"notosansoldsoutharabian": { + "defaults": { + "ttf": "NotoSansOldSouthArabian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Old South Arabian", + "familyid": "notosansoldsoutharabian", + "files": { + "NotoSansOldSouthArabian-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansOldSouthArabian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOldSouthArabian/full/ttf/NotoSansOldSouthArabian-Regular.ttf", "zippath": "NotoSansOldSouthArabian/full/ttf/NotoSansOldSouthArabian-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/old-south-arabian/releases/download/NotoSansOldSouthArabian-v2.001/NotoSansOldSouthArabian-v2.001.zip", + "siteurl": "https://github.com/notofonts/old-south-arabian/releases/tag/NotoSansOldSouthArabian-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansOldSouthArabian" +}, +"notosansoldturkic": { + "defaults": { + "ttf": "NotoSansOldTurkic-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Old Turkic", + "familyid": "notosansoldturkic", + "files": { + "NotoSansOldTurkic-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansOldTurkic-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOldTurkic/full/ttf/NotoSansOldTurkic-Regular.ttf", "zippath": "NotoSansOldTurkic/full/ttf/NotoSansOldTurkic-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/old-turkic/releases/download/NotoSansOldTurkic-v2.003/NotoSansOldTurkic-v2.003.zip", + "siteurl": "https://github.com/notofonts/old-turkic/releases/tag/NotoSansOldTurkic-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansOldTurkic" +}, +"notosansoriya": { + "defaults": { + "ttf": "NotoSansOriya-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Oriya", + "familyid": "notosansoriya", + "files": { + "NotoSansOriya-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansOriya-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOriya/full/ttf/NotoSansOriya-Black.ttf", "zippath": "NotoSansOriya/full/ttf/NotoSansOriya-Black.ttf" }, + "NotoSansOriya-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansOriya-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOriya/full/ttf/NotoSansOriya-Bold.ttf", "zippath": "NotoSansOriya/full/ttf/NotoSansOriya-Bold.ttf" }, + "NotoSansOriya-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansOriya-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOriya/full/ttf/NotoSansOriya-Condensed.ttf", "zippath": "NotoSansOriya/full/ttf/NotoSansOriya-Condensed.ttf" }, + "NotoSansOriya-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansOriya-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOriya/full/ttf/NotoSansOriya-CondensedBlack.ttf", "zippath": "NotoSansOriya/full/ttf/NotoSansOriya-CondensedBlack.ttf" }, + "NotoSansOriya-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansOriya-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOriya/full/ttf/NotoSansOriya-CondensedBold.ttf", "zippath": "NotoSansOriya/full/ttf/NotoSansOriya-CondensedBold.ttf" }, + "NotoSansOriya-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansOriya-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOriya/full/ttf/NotoSansOriya-CondensedThin.ttf", "zippath": "NotoSansOriya/full/ttf/NotoSansOriya-CondensedThin.ttf" }, + "NotoSansOriya-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansOriya-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOriya/full/ttf/NotoSansOriya-ExtraCondensed.ttf", "zippath": "NotoSansOriya/full/ttf/NotoSansOriya-ExtraCondensed.ttf" }, + "NotoSansOriya-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansOriya-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOriya/full/ttf/NotoSansOriya-ExtraCondensedBlack.ttf", "zippath": "NotoSansOriya/full/ttf/NotoSansOriya-ExtraCondensedBlack.ttf" }, + "NotoSansOriya-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansOriya-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOriya/full/ttf/NotoSansOriya-ExtraCondensedBold.ttf", "zippath": "NotoSansOriya/full/ttf/NotoSansOriya-ExtraCondensedBold.ttf" }, + "NotoSansOriya-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansOriya-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOriya/full/ttf/NotoSansOriya-ExtraCondensedThin.ttf", "zippath": "NotoSansOriya/full/ttf/NotoSansOriya-ExtraCondensedThin.ttf" }, + "NotoSansOriya-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansOriya-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOriya/full/ttf/NotoSansOriya-Regular.ttf", "zippath": "NotoSansOriya/full/ttf/NotoSansOriya-Regular.ttf" }, + "NotoSansOriya-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansOriya-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOriya/full/ttf/NotoSansOriya-Thin.ttf", "zippath": "NotoSansOriya/full/ttf/NotoSansOriya-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/oriya/releases/download/NotoSansOriya-v2.005/NotoSansOriya-v2.005.zip", + "siteurl": "https://github.com/notofonts/oriya/releases/tag/NotoSansOriya-v2.005", + "source": "Google", + "status": "current", + "version": "2.005", + "ziproot": "NotoSansOriya" +}, +"notosansosage": { + "defaults": { + "ttf": "NotoSansOsage-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Osage", + "familyid": "notosansosage", + "files": { + "NotoSansOsage-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansOsage-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOsage/full/ttf/NotoSansOsage-Regular.ttf", "zippath": "NotoSansOsage/full/ttf/NotoSansOsage-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/osage/releases/download/NotoSansOsage-v2.002/NotoSansOsage-v2.002.zip", + "siteurl": "https://github.com/notofonts/osage/releases/tag/NotoSansOsage-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansOsage" +}, +"notosansosmanya": { + "defaults": { + "ttf": "NotoSansOsmanya-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Osmanya", + "familyid": "notosansosmanya", + "files": { + "NotoSansOsmanya-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansOsmanya-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansOsmanya/full/ttf/NotoSansOsmanya-Regular.ttf", "zippath": "NotoSansOsmanya/full/ttf/NotoSansOsmanya-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/osmanya/releases/download/NotoSansOsmanya-v2.001/NotoSansOsmanya-v2.001.zip", + "siteurl": "https://github.com/notofonts/osmanya/releases/tag/NotoSansOsmanya-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansOsmanya" +}, +"notosanspahawhhmong": { + "defaults": { + "ttf": "NotoSansPahawhHmong-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Pahawh Hmong", + "familyid": "notosanspahawhhmong", + "files": { + "NotoSansPahawhHmong-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansPahawhHmong-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansPahawhHmong/full/ttf/NotoSansPahawhHmong-Regular.ttf", "zippath": "NotoSansPahawhHmong/full/ttf/NotoSansPahawhHmong-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/pahawh-hmong/releases/download/NotoSansPahawhHmong-v2.001/NotoSansPahawhHmong-v2.001.zip", + "siteurl": "https://github.com/notofonts/pahawh-hmong/releases/tag/NotoSansPahawhHmong-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansPahawhHmong" +}, +"notosanspalmyrene": { + "defaults": { + "ttf": "NotoSansPalmyrene-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Palmyrene", + "familyid": "notosanspalmyrene", + "files": { + "NotoSansPalmyrene-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansPalmyrene-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansPalmyrene/full/ttf/NotoSansPalmyrene-Regular.ttf", "zippath": "NotoSansPalmyrene/full/ttf/NotoSansPalmyrene-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/palmyrene/releases/download/NotoSansPalmyrene-v2.001/NotoSansPalmyrene-v2.001.zip", + "siteurl": "https://github.com/notofonts/palmyrene/releases/tag/NotoSansPalmyrene-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansPalmyrene" +}, +"notosanspaucinhau": { + "defaults": { + "ttf": "NotoSansPauCinHau-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Pau Cin Hau", + "familyid": "notosanspaucinhau", + "files": { + "NotoSansPauCinHau-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansPauCinHau-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansPauCinHau/full/ttf/NotoSansPauCinHau-Regular.ttf", "zippath": "NotoSansPauCinHau/full/ttf/NotoSansPauCinHau-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/pau-cin-hau/releases/download/NotoSansPauCinHau-v2.002/NotoSansPauCinHau-v2.002.zip", + "siteurl": "https://github.com/notofonts/pau-cin-hau/releases/tag/NotoSansPauCinHau-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansPauCinHau" +}, +"notosansphagspa": { + "defaults": { + "ttf": "NotoSansPhags-Pa-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Phags Pa", + "familyid": "notosansphagspa", + "files": { + "NotoSansPhags-Pa-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansPhags-Pa-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansPhagsPa/full/ttf/NotoSansPhags-Pa-Regular.ttf", "zippath": "NotoSansPhagsPa/full/ttf/NotoSansPhags-Pa-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/phags-pa/releases/download/NotoSansPhagsPa-v2.003/NotoSansPhagsPa-v2.003.zip", + "siteurl": "https://github.com/notofonts/phags-pa/releases/tag/NotoSansPhagsPa-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansPhagsPa" +}, +"notosansphoenician": { + "defaults": { + "ttf": "NotoSansPhoenician-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Phoenician", + "familyid": "notosansphoenician", + "files": { + "NotoSansPhoenician-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansPhoenician-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansPhoenician/full/ttf/NotoSansPhoenician-Regular.ttf", "zippath": "NotoSansPhoenician/full/ttf/NotoSansPhoenician-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/phoenician/releases/download/NotoSansPhoenician-v2.001/NotoSansPhoenician-v2.001.zip", + "siteurl": "https://github.com/notofonts/phoenician/releases/tag/NotoSansPhoenician-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansPhoenician" +}, +"notosanspsalterpahlavi": { + "defaults": { + "ttf": "NotoSansPsalterPahlavi-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Psalter Pahlavi", + "familyid": "notosanspsalterpahlavi", + "files": { + "NotoSansPsalterPahlavi-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansPsalterPahlavi-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansPsalterPahlavi/full/ttf/NotoSansPsalterPahlavi-Regular.ttf", "zippath": "NotoSansPsalterPahlavi/full/ttf/NotoSansPsalterPahlavi-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/psalter-pahlavi/releases/download/NotoSansPsalterPahlavi-v2.002/NotoSansPsalterPahlavi-v2.002.zip", + "siteurl": "https://github.com/notofonts/psalter-pahlavi/releases/tag/NotoSansPsalterPahlavi-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansPsalterPahlavi" +}, +"notosansrejang": { + "defaults": { + "ttf": "NotoSansRejang-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Rejang", + "familyid": "notosansrejang", + "files": { + "NotoSansRejang-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansRejang-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansRejang/full/ttf/NotoSansRejang-Regular.ttf", "zippath": "NotoSansRejang/full/ttf/NotoSansRejang-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/rejang/releases/download/NotoSansRejang-v2.002/NotoSansRejang-v2.002.zip", + "siteurl": "https://github.com/notofonts/rejang/releases/tag/NotoSansRejang-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansRejang" +}, +"notosansrunic": { + "defaults": { + "ttf": "NotoSansRunic-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Runic", + "familyid": "notosansrunic", + "files": { + "NotoSansRunic-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansRunic-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansRunic/full/ttf/NotoSansRunic-Regular.ttf", "zippath": "NotoSansRunic/full/ttf/NotoSansRunic-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/runic/releases/download/NotoSansRunic-v2.002/NotoSansRunic-v2.002.zip", + "siteurl": "https://github.com/notofonts/runic/releases/tag/NotoSansRunic-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansRunic" +}, +"notosanssamaritan": { + "defaults": { + "ttf": "NotoSansSamaritan-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Samaritan", + "familyid": "notosanssamaritan", + "files": { + "NotoSansSamaritan-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSamaritan-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSamaritan/full/ttf/NotoSansSamaritan-Regular.ttf", "zippath": "NotoSansSamaritan/full/ttf/NotoSansSamaritan-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/samaritan/releases/download/NotoSansSamaritan-v2.001/NotoSansSamaritan-v2.001.zip", + "siteurl": "https://github.com/notofonts/samaritan/releases/tag/NotoSansSamaritan-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansSamaritan" +}, +"notosanssaurashtra": { + "defaults": { + "ttf": "NotoSansSaurashtra-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Saurashtra", + "familyid": "notosanssaurashtra", + "files": { + "NotoSansSaurashtra-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSaurashtra-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSaurashtra/full/ttf/NotoSansSaurashtra-Regular.ttf", "zippath": "NotoSansSaurashtra/full/ttf/NotoSansSaurashtra-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/saurashtra/releases/download/NotoSansSaurashtra-v2.002/NotoSansSaurashtra-v2.002.zip", + "siteurl": "https://github.com/notofonts/saurashtra/releases/tag/NotoSansSaurashtra-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansSaurashtra" +}, +"notosanssc": { + "distributable": true, + "family": "Noto Sans SC", + "familyid": "notosanssc", + "license": "OFL", + "source": "Google", + "status": "current" +}, +"notosanssharada": { + "defaults": { + "ttf": "NotoSansSharada-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Sharada", + "familyid": "notosanssharada", + "files": { + "NotoSansSharada-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSharada-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSharada/full/ttf/NotoSansSharada-Regular.ttf", "zippath": "NotoSansSharada/full/ttf/NotoSansSharada-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/sharada/releases/download/NotoSansSharada-v2.006/NotoSansSharada-v2.006.zip", + "siteurl": "https://github.com/notofonts/sharada/releases/tag/NotoSansSharada-v2.006", + "source": "Google", + "status": "current", + "version": "2.006", + "ziproot": "NotoSansSharada" +}, +"notosansshavian": { + "defaults": { + "ttf": "NotoSansShavian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Shavian", + "familyid": "notosansshavian", + "files": { + "NotoSansShavian-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansShavian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansShavian/full/ttf/NotoSansShavian-Regular.ttf", "zippath": "NotoSansShavian/full/ttf/NotoSansShavian-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/shavian/releases/download/NotoSansShavian-v2.001/NotoSansShavian-v2.001.zip", + "siteurl": "https://github.com/notofonts/shavian/releases/tag/NotoSansShavian-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansShavian" +}, +"notosanssiddham": { + "defaults": { + "ttf": "NotoSansSiddham-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Siddham", + "familyid": "notosanssiddham", + "files": { + "NotoSansSiddham-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSiddham-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSiddham/full/ttf/NotoSansSiddham-Regular.ttf", "zippath": "NotoSansSiddham/full/ttf/NotoSansSiddham-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/siddham/releases/download/NotoSansSiddham-v2.005/NotoSansSiddham-v2.005.zip", + "siteurl": "https://github.com/notofonts/siddham/releases/tag/NotoSansSiddham-v2.005", + "source": "Google", + "status": "current", + "version": "2.005", + "ziproot": "NotoSansSiddham" +}, +"notosanssignwriting": { + "distributable": true, + "family": "Noto Sans SignWriting", + "familyid": "notosanssignwriting", + "license": "OFL", + "source": "Google", + "status": "current" +}, +"notosanssinhala": { + "defaults": { + "ttf": "NotoSansSinhala-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Sinhala", + "familyid": "notosanssinhala", + "files": { + "NotoSansSinhala-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansSinhala-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-Black.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-Black.ttf" }, + "NotoSansSinhala-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansSinhala-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-Bold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-Bold.ttf" }, + "NotoSansSinhala-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSinhala-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-Condensed.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-Condensed.ttf" }, + "NotoSansSinhala-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansSinhala-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedBlack.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedBlack.ttf" }, + "NotoSansSinhala-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansSinhala-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedBold.ttf" }, + "NotoSansSinhala-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansSinhala-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedExtraBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedExtraBold.ttf" }, + "NotoSansSinhala-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansSinhala-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedExtraLight.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedExtraLight.ttf" }, + "NotoSansSinhala-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansSinhala-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedLight.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedLight.ttf" }, + "NotoSansSinhala-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansSinhala-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedMedium.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedMedium.ttf" }, + "NotoSansSinhala-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansSinhala-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedSemiBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedSemiBold.ttf" }, + "NotoSansSinhala-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansSinhala-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedThin.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-CondensedThin.ttf" }, + "NotoSansSinhala-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansSinhala-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraBold.ttf" }, + "NotoSansSinhala-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSinhala-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensed.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensed.ttf" }, + "NotoSansSinhala-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansSinhala-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedBlack.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedBlack.ttf" }, + "NotoSansSinhala-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansSinhala-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedBold.ttf" }, + "NotoSansSinhala-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansSinhala-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedExtraBold.ttf" }, + "NotoSansSinhala-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansSinhala-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedExtraLight.ttf" }, + "NotoSansSinhala-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansSinhala-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedLight.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedLight.ttf" }, + "NotoSansSinhala-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansSinhala-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedMedium.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedMedium.ttf" }, + "NotoSansSinhala-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansSinhala-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedSemiBold.ttf" }, + "NotoSansSinhala-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansSinhala-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedThin.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraCondensedThin.ttf" }, + "NotoSansSinhala-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansSinhala-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraLight.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraLight.ttf" }, + "NotoSansSinhala-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansSinhala-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-Light.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-Light.ttf" }, + "NotoSansSinhala-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansSinhala-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-Medium.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-Medium.ttf" }, + "NotoSansSinhala-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSinhala-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-Regular.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-Regular.ttf" }, + "NotoSansSinhala-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansSinhala-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-SemiBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-SemiBold.ttf" }, + "NotoSansSinhala-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSinhala-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensed.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensed.ttf" }, + "NotoSansSinhala-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansSinhala-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedBlack.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedBlack.ttf" }, + "NotoSansSinhala-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansSinhala-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedBold.ttf" }, + "NotoSansSinhala-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansSinhala-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedExtraBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedExtraBold.ttf" }, + "NotoSansSinhala-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansSinhala-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedExtraLight.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedExtraLight.ttf" }, + "NotoSansSinhala-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansSinhala-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedLight.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedLight.ttf" }, + "NotoSansSinhala-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansSinhala-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedMedium.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedMedium.ttf" }, + "NotoSansSinhala-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansSinhala-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedSemiBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedSemiBold.ttf" }, + "NotoSansSinhala-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansSinhala-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedThin.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-SemiCondensedThin.ttf" }, + "NotoSansSinhala-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansSinhala-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-Thin.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhala-Thin.ttf" }, + "NotoSansSinhalaUI-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-Black.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-Black.ttf" }, + "NotoSansSinhalaUI-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-Bold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-Bold.ttf" }, + "NotoSansSinhalaUI-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-Condensed.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-Condensed.ttf" }, + "NotoSansSinhalaUI-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedBlack.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedBlack.ttf" }, + "NotoSansSinhalaUI-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedBold.ttf" }, + "NotoSansSinhalaUI-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedExtraBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedExtraBold.ttf" }, + "NotoSansSinhalaUI-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedExtraLight.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedExtraLight.ttf" }, + "NotoSansSinhalaUI-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedLight.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedLight.ttf" }, + "NotoSansSinhalaUI-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedMedium.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedMedium.ttf" }, + "NotoSansSinhalaUI-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedSemiBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedSemiBold.ttf" }, + "NotoSansSinhalaUI-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedThin.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-CondensedThin.ttf" }, + "NotoSansSinhalaUI-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraBold.ttf" }, + "NotoSansSinhalaUI-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensed.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensed.ttf" }, + "NotoSansSinhalaUI-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedBlack.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedBlack.ttf" }, + "NotoSansSinhalaUI-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedBold.ttf" }, + "NotoSansSinhalaUI-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedExtraBold.ttf" }, + "NotoSansSinhalaUI-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedExtraLight.ttf" }, + "NotoSansSinhalaUI-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedLight.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedLight.ttf" }, + "NotoSansSinhalaUI-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedMedium.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedMedium.ttf" }, + "NotoSansSinhalaUI-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedSemiBold.ttf" }, + "NotoSansSinhalaUI-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedThin.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraCondensedThin.ttf" }, + "NotoSansSinhalaUI-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraLight.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-ExtraLight.ttf" }, + "NotoSansSinhalaUI-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-Light.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-Light.ttf" }, + "NotoSansSinhalaUI-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-Medium.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-Medium.ttf" }, + "NotoSansSinhalaUI-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-Regular.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-Regular.ttf" }, + "NotoSansSinhalaUI-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiBold.ttf" }, + "NotoSansSinhalaUI-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensed.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensed.ttf" }, + "NotoSansSinhalaUI-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedBlack.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedBlack.ttf" }, + "NotoSansSinhalaUI-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedBold.ttf" }, + "NotoSansSinhalaUI-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedExtraBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedExtraBold.ttf" }, + "NotoSansSinhalaUI-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedExtraLight.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedExtraLight.ttf" }, + "NotoSansSinhalaUI-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedLight.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedLight.ttf" }, + "NotoSansSinhalaUI-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedMedium.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedMedium.ttf" }, + "NotoSansSinhalaUI-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedSemiBold.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedSemiBold.ttf" }, + "NotoSansSinhalaUI-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedThin.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-SemiCondensedThin.ttf" }, + "NotoSansSinhalaUI-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansSinhalaUI-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSinhala/full/ttf/NotoSansSinhalaUI-Thin.ttf", "zippath": "NotoSansSinhala/full/ttf/NotoSansSinhalaUI-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/sinhala/releases/download/NotoSansSinhala-v2.006/NotoSansSinhala-v2.006.zip", + "siteurl": "https://github.com/notofonts/sinhala/releases/tag/NotoSansSinhala-v2.006", + "source": "Google", + "status": "current", + "version": "2.006", + "ziproot": "NotoSansSinhala" +}, +"notosanssogdian": { + "defaults": { + "ttf": "NotoSansSogdian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Sogdian", + "familyid": "notosanssogdian", + "files": { + "NotoSansSogdian-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSogdian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSogdian/full/ttf/NotoSansSogdian-Regular.ttf", "zippath": "NotoSansSogdian/full/ttf/NotoSansSogdian-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/sogdian/releases/download/NotoSansSogdian-v2.002/NotoSansSogdian-v2.002.zip", + "siteurl": "https://github.com/notofonts/sogdian/releases/tag/NotoSansSogdian-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansSogdian" +}, +"notosanssorasompeng": { + "defaults": { + "ttf": "NotoSansSoraSompeng-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Sora Sompeng", + "familyid": "notosanssorasompeng", + "files": { + "NotoSansSoraSompeng-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansSoraSompeng-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSoraSompeng/full/ttf/NotoSansSoraSompeng-Bold.ttf", "zippath": "NotoSansSoraSompeng/full/ttf/NotoSansSoraSompeng-Bold.ttf" }, + "NotoSansSoraSompeng-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansSoraSompeng-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSoraSompeng/full/ttf/NotoSansSoraSompeng-Medium.ttf", "zippath": "NotoSansSoraSompeng/full/ttf/NotoSansSoraSompeng-Medium.ttf" }, + "NotoSansSoraSompeng-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSoraSompeng-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSoraSompeng/full/ttf/NotoSansSoraSompeng-Regular.ttf", "zippath": "NotoSansSoraSompeng/full/ttf/NotoSansSoraSompeng-Regular.ttf" }, + "NotoSansSoraSompeng-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansSoraSompeng-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSoraSompeng/full/ttf/NotoSansSoraSompeng-SemiBold.ttf", "zippath": "NotoSansSoraSompeng/full/ttf/NotoSansSoraSompeng-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/sora-sompeng/releases/download/NotoSansSoraSompeng-v2.101/NotoSansSoraSompeng-v2.101.zip", + "siteurl": "https://github.com/notofonts/sora-sompeng/releases/tag/NotoSansSoraSompeng-v2.101", + "source": "Google", + "status": "current", + "version": "2.101", + "ziproot": "NotoSansSoraSompeng" +}, +"notosanssoyombo": { + "defaults": { + "ttf": "NotoSansSoyombo-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Soyombo", + "familyid": "notosanssoyombo", + "files": { + "NotoSansSoyombo-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSoyombo-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSoyombo/full/ttf/NotoSansSoyombo-Regular.ttf", "zippath": "NotoSansSoyombo/full/ttf/NotoSansSoyombo-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/soyombo/releases/download/NotoSansSoyombo-v2.001/NotoSansSoyombo-v2.001.zip", + "siteurl": "https://github.com/notofonts/soyombo/releases/tag/NotoSansSoyombo-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansSoyombo" +}, +"notosanssundanese": { + "defaults": { + "ttf": "NotoSansSundanese-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Sundanese", + "familyid": "notosanssundanese", + "files": { + "NotoSansSundanese-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansSundanese-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSundanese/full/ttf/NotoSansSundanese-Bold.ttf", "zippath": "NotoSansSundanese/full/ttf/NotoSansSundanese-Bold.ttf" }, + "NotoSansSundanese-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansSundanese-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSundanese/full/ttf/NotoSansSundanese-Medium.ttf", "zippath": "NotoSansSundanese/full/ttf/NotoSansSundanese-Medium.ttf" }, + "NotoSansSundanese-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSundanese-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSundanese/full/ttf/NotoSansSundanese-Regular.ttf", "zippath": "NotoSansSundanese/full/ttf/NotoSansSundanese-Regular.ttf" }, + "NotoSansSundanese-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansSundanese-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSundanese/full/ttf/NotoSansSundanese-SemiBold.ttf", "zippath": "NotoSansSundanese/full/ttf/NotoSansSundanese-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/sundanese/releases/download/NotoSansSundanese-v2.004/NotoSansSundanese-v2.004.zip", + "siteurl": "https://github.com/notofonts/sundanese/releases/tag/NotoSansSundanese-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansSundanese" +}, +"notosanssylotinagri": { + "defaults": { + "ttf": "NotoSansSylotiNagri-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Syloti Nagri", + "familyid": "notosanssylotinagri", + "files": { + "NotoSansSylotiNagri-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSylotiNagri-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSylotiNagri/full/ttf/NotoSansSylotiNagri-Regular.ttf", "zippath": "NotoSansSylotiNagri/full/ttf/NotoSansSylotiNagri-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/syloti-nagri/releases/download/NotoSansSylotiNagri-v2.004/NotoSansSylotiNagri-v2.004.zip", + "siteurl": "https://github.com/notofonts/syloti-nagri/releases/tag/NotoSansSylotiNagri-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansSylotiNagri" +}, +"notosanssyriac": { + "defaults": { + "ttf": "NotoSansSyriac-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Syriac", + "familyid": "notosanssyriac", + "files": { + "NotoSansSyriac-Black.ttf": { "axes": { "wght": 900.0 }, "packagepath": "full/ttf/NotoSansSyriac-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSyriac/full/ttf/NotoSansSyriac-Black.ttf", "zippath": "NotoSansSyriac/full/ttf/NotoSansSyriac-Black.ttf" }, + "NotoSansSyriac-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSyriac-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSyriac/full/ttf/NotoSansSyriac-Regular.ttf", "zippath": "NotoSansSyriac/full/ttf/NotoSansSyriac-Regular.ttf" }, + "NotoSansSyriac-Thin.ttf": { "axes": { "wght": 100.0 }, "packagepath": "full/ttf/NotoSansSyriac-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSyriac/full/ttf/NotoSansSyriac-Thin.ttf", "zippath": "NotoSansSyriac/full/ttf/NotoSansSyriac-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/syriac/releases/download/NotoSansSyriac-v3.000/NotoSansSyriac-v3.000.zip", + "siteurl": "https://github.com/notofonts/syriac/releases/tag/NotoSansSyriac-v3.000", + "source": "Google", + "status": "current", + "version": "3.000", + "ziproot": "NotoSansSyriac" +}, +"notosanssyriaceastern": { + "defaults": { + "ttf": "NotoSansSyriacEastern-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Syriac Eastern", + "familyid": "notosanssyriaceastern", + "files": { + "NotoSansSyriacEastern-Black.ttf": { "axes": { "wght": 900.0 }, "packagepath": "full/ttf/NotoSansSyriacEastern-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSyriacEastern/full/ttf/NotoSansSyriacEastern-Black.ttf", "zippath": "NotoSansSyriacEastern/full/ttf/NotoSansSyriacEastern-Black.ttf" }, + "NotoSansSyriacEastern-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansSyriacEastern-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSyriacEastern/full/ttf/NotoSansSyriacEastern-Regular.ttf", "zippath": "NotoSansSyriacEastern/full/ttf/NotoSansSyriacEastern-Regular.ttf" }, + "NotoSansSyriacEastern-Thin.ttf": { "axes": { "wght": 100.0 }, "packagepath": "full/ttf/NotoSansSyriacEastern-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansSyriacEastern/full/ttf/NotoSansSyriacEastern-Thin.ttf", "zippath": "NotoSansSyriacEastern/full/ttf/NotoSansSyriacEastern-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/syriac/releases/download/NotoSansSyriacEastern-v3.001/NotoSansSyriacEastern-v3.001.zip", + "siteurl": "https://github.com/notofonts/syriac/releases/tag/NotoSansSyriacEastern-v3.001", + "source": "Google", + "status": "current", + "version": "3.001", + "ziproot": "NotoSansSyriacEastern" +}, +"notosanstagalog": { + "defaults": { + "ttf": "NotoSansTagalog-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Tagalog", + "familyid": "notosanstagalog", + "files": { + "NotoSansTagalog-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTagalog-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTagalog/full/ttf/NotoSansTagalog-Regular.ttf", "zippath": "NotoSansTagalog/full/ttf/NotoSansTagalog-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/tagalog/releases/download/NotoSansTagalog-v2.002/NotoSansTagalog-v2.002.zip", + "siteurl": "https://github.com/notofonts/tagalog/releases/tag/NotoSansTagalog-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansTagalog" +}, +"notosanstagbanwa": { + "defaults": { + "ttf": "NotoSansTagbanwa-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Tagbanwa", + "familyid": "notosanstagbanwa", + "files": { + "NotoSansTagbanwa-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTagbanwa-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTagbanwa/full/ttf/NotoSansTagbanwa-Regular.ttf", "zippath": "NotoSansTagbanwa/full/ttf/NotoSansTagbanwa-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/tagbanwa/releases/download/NotoSansTagbanwa-v2.001/NotoSansTagbanwa-v2.001.zip", + "siteurl": "https://github.com/notofonts/tagbanwa/releases/tag/NotoSansTagbanwa-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansTagbanwa" +}, +"notosanstaile": { + "defaults": { + "ttf": "NotoSansTaiLe-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Tai Le", + "familyid": "notosanstaile", + "files": { + "NotoSansTaiLe-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTaiLe-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTaiLe/full/ttf/NotoSansTaiLe-Regular.ttf", "zippath": "NotoSansTaiLe/full/ttf/NotoSansTaiLe-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/tai-le/releases/download/NotoSansTaiLe-v2.002/NotoSansTaiLe-v2.002.zip", + "siteurl": "https://github.com/notofonts/tai-le/releases/tag/NotoSansTaiLe-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansTaiLe" +}, +"notosanstaitham": { + "defaults": { + "ttf": "NotoSansTaiTham-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Tai Tham", + "familyid": "notosanstaitham", + "files": { + "NotoSansTaiTham-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTaiTham-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTaiTham/full/ttf/NotoSansTaiTham-Bold.ttf", "zippath": "NotoSansTaiTham/full/ttf/NotoSansTaiTham-Bold.ttf" }, + "NotoSansTaiTham-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTaiTham-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTaiTham/full/ttf/NotoSansTaiTham-Medium.ttf", "zippath": "NotoSansTaiTham/full/ttf/NotoSansTaiTham-Medium.ttf" }, + "NotoSansTaiTham-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTaiTham-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTaiTham/full/ttf/NotoSansTaiTham-Regular.ttf", "zippath": "NotoSansTaiTham/full/ttf/NotoSansTaiTham-Regular.ttf" }, + "NotoSansTaiTham-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTaiTham-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTaiTham/full/ttf/NotoSansTaiTham-SemiBold.ttf", "zippath": "NotoSansTaiTham/full/ttf/NotoSansTaiTham-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/tai-tham/releases/download/NotoSansTaiTham-v2.002/NotoSansTaiTham-v2.002.zip", + "siteurl": "https://github.com/notofonts/tai-tham/releases/tag/NotoSansTaiTham-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansTaiTham" +}, +"notosanstaiviet": { + "defaults": { + "ttf": "NotoSansTaiViet-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Tai Viet", + "familyid": "notosanstaiviet", + "files": { + "NotoSansTaiViet-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTaiViet-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTaiViet/full/ttf/NotoSansTaiViet-Regular.ttf", "zippath": "NotoSansTaiViet/full/ttf/NotoSansTaiViet-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/tai-viet/releases/download/NotoSansTaiViet-v2.004/NotoSansTaiViet-v2.004.zip", + "siteurl": "https://github.com/notofonts/tai-viet/releases/tag/NotoSansTaiViet-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansTaiViet" +}, +"notosanstakri": { + "defaults": { + "ttf": "NotoSansTakri-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Takri", + "familyid": "notosanstakri", + "files": { + "NotoSansTakri-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTakri-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTakri/full/ttf/NotoSansTakri-Regular.ttf", "zippath": "NotoSansTakri/full/ttf/NotoSansTakri-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/takri/releases/download/NotoSansTakri-v2.004/NotoSansTakri-v2.004.zip", + "siteurl": "https://github.com/notofonts/takri/releases/tag/NotoSansTakri-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansTakri" +}, +"notosanstamil": { + "defaults": { + "ttf": "NotoSansTamilUI-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Tamil", + "familyid": "notosanstamil", + "files": { + "NotoSansTamil-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTamil-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-Black.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-Black.ttf" }, + "NotoSansTamil-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTamil-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-Bold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-Bold.ttf" }, + "NotoSansTamil-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTamil-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-Condensed.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-Condensed.ttf" }, + "NotoSansTamil-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTamil-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedBlack.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-CondensedBlack.ttf" }, + "NotoSansTamil-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTamil-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-CondensedBold.ttf" }, + "NotoSansTamil-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTamil-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedExtraBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-CondensedExtraBold.ttf" }, + "NotoSansTamil-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTamil-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedExtraLight.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-CondensedExtraLight.ttf" }, + "NotoSansTamil-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTamil-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedLight.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-CondensedLight.ttf" }, + "NotoSansTamil-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTamil-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedMedium.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-CondensedMedium.ttf" }, + "NotoSansTamil-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTamil-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedSemiBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-CondensedSemiBold.ttf" }, + "NotoSansTamil-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTamil-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedThin.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-CondensedThin.ttf" }, + "NotoSansTamil-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTamil-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-ExtraBold.ttf" }, + "NotoSansTamil-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTamil-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensed.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensed.ttf" }, + "NotoSansTamil-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTamil-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedBlack.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedBlack.ttf" }, + "NotoSansTamil-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTamil-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedBold.ttf" }, + "NotoSansTamil-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTamil-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedExtraBold.ttf" }, + "NotoSansTamil-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTamil-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedExtraLight.ttf" }, + "NotoSansTamil-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTamil-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedLight.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedLight.ttf" }, + "NotoSansTamil-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTamil-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedMedium.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedMedium.ttf" }, + "NotoSansTamil-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTamil-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedSemiBold.ttf" }, + "NotoSansTamil-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTamil-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedThin.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedThin.ttf" }, + "NotoSansTamil-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTamil-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraLight.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-ExtraLight.ttf" }, + "NotoSansTamil-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTamil-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-Light.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-Light.ttf" }, + "NotoSansTamil-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTamil-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-Medium.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-Medium.ttf" }, + "NotoSansTamil-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTamil-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-Regular.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-Regular.ttf" }, + "NotoSansTamil-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTamil-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-SemiBold.ttf" }, + "NotoSansTamil-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTamil-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensed.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensed.ttf" }, + "NotoSansTamil-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTamil-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedBlack.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedBlack.ttf" }, + "NotoSansTamil-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTamil-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedBold.ttf" }, + "NotoSansTamil-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTamil-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedExtraBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedExtraBold.ttf" }, + "NotoSansTamil-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTamil-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedExtraLight.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedExtraLight.ttf" }, + "NotoSansTamil-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTamil-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedLight.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedLight.ttf" }, + "NotoSansTamil-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTamil-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedMedium.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedMedium.ttf" }, + "NotoSansTamil-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTamil-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedSemiBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedSemiBold.ttf" }, + "NotoSansTamil-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTamil-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedThin.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedThin.ttf" }, + "NotoSansTamil-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTamil-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamil-Thin.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamil-Thin.ttf" }, + "NotoSansTamilUI-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTamilUI-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-Black.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-Black.ttf" }, + "NotoSansTamilUI-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTamilUI-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-Bold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-Bold.ttf" }, + "NotoSansTamilUI-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTamilUI-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-Condensed.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-Condensed.ttf" }, + "NotoSansTamilUI-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTamilUI-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedBlack.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedBlack.ttf" }, + "NotoSansTamilUI-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTamilUI-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedBold.ttf" }, + "NotoSansTamilUI-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTamilUI-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedExtraBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedExtraBold.ttf" }, + "NotoSansTamilUI-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTamilUI-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedExtraLight.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedExtraLight.ttf" }, + "NotoSansTamilUI-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTamilUI-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedLight.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedLight.ttf" }, + "NotoSansTamilUI-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTamilUI-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedMedium.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedMedium.ttf" }, + "NotoSansTamilUI-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTamilUI-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedSemiBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedSemiBold.ttf" }, + "NotoSansTamilUI-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTamilUI-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedThin.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedThin.ttf" }, + "NotoSansTamilUI-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTamilUI-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraBold.ttf" }, + "NotoSansTamilUI-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTamilUI-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensed.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensed.ttf" }, + "NotoSansTamilUI-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTamilUI-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedBlack.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedBlack.ttf" }, + "NotoSansTamilUI-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTamilUI-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedBold.ttf" }, + "NotoSansTamilUI-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTamilUI-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedExtraBold.ttf" }, + "NotoSansTamilUI-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTamilUI-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedExtraLight.ttf" }, + "NotoSansTamilUI-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTamilUI-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedLight.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedLight.ttf" }, + "NotoSansTamilUI-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTamilUI-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedMedium.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedMedium.ttf" }, + "NotoSansTamilUI-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTamilUI-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedSemiBold.ttf" }, + "NotoSansTamilUI-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTamilUI-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedThin.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedThin.ttf" }, + "NotoSansTamilUI-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTamilUI-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraLight.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraLight.ttf" }, + "NotoSansTamilUI-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTamilUI-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-Light.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-Light.ttf" }, + "NotoSansTamilUI-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTamilUI-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-Medium.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-Medium.ttf" }, + "NotoSansTamilUI-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTamilUI-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-Regular.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-Regular.ttf" }, + "NotoSansTamilUI-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTamilUI-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-SemiBold.ttf" }, + "NotoSansTamilUI-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTamilUI-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensed.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensed.ttf" }, + "NotoSansTamilUI-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTamilUI-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedBlack.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedBlack.ttf" }, + "NotoSansTamilUI-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTamilUI-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedBold.ttf" }, + "NotoSansTamilUI-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTamilUI-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedExtraBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedExtraBold.ttf" }, + "NotoSansTamilUI-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTamilUI-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedExtraLight.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedExtraLight.ttf" }, + "NotoSansTamilUI-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTamilUI-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedLight.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedLight.ttf" }, + "NotoSansTamilUI-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTamilUI-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedMedium.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedMedium.ttf" }, + "NotoSansTamilUI-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTamilUI-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedSemiBold.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedSemiBold.ttf" }, + "NotoSansTamilUI-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTamilUI-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedThin.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedThin.ttf" }, + "NotoSansTamilUI-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTamilUI-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-Thin.ttf", "zippath": "NotoSansTamil/full/ttf/NotoSansTamilUI-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/tamil/releases/download/NotoSansTamil-v2.004/NotoSansTamil-v2.004.zip", + "siteurl": "https://github.com/notofonts/tamil/releases/tag/NotoSansTamil-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansTamil" +}, +"notosanstangsa": { + "defaults": { + "ttf": "NotoSansTangsa-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Tangsa", + "familyid": "notosanstangsa", + "files": { + "NotoSansTangsa-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTangsa-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTangsa/full/ttf/NotoSansTangsa-Bold.ttf", "zippath": "NotoSansTangsa/full/ttf/NotoSansTangsa-Bold.ttf" }, + "NotoSansTangsa-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTangsa-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTangsa/full/ttf/NotoSansTangsa-Medium.ttf", "zippath": "NotoSansTangsa/full/ttf/NotoSansTangsa-Medium.ttf" }, + "NotoSansTangsa-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTangsa-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTangsa/full/ttf/NotoSansTangsa-Regular.ttf", "zippath": "NotoSansTangsa/full/ttf/NotoSansTangsa-Regular.ttf" }, + "NotoSansTangsa-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTangsa-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTangsa/full/ttf/NotoSansTangsa-SemiBold.ttf", "zippath": "NotoSansTangsa/full/ttf/NotoSansTangsa-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/tangsa/releases/download/NotoSansTangsa-v1.505/NotoSansTangsa-v1.505.zip", + "siteurl": "https://github.com/notofonts/tangsa/releases/tag/NotoSansTangsa-v1.505", + "source": "Google", + "status": "current", + "version": "1.505", + "ziproot": "NotoSansTangsa" +}, +"notosanstangut": { + "distributable": true, + "fallback": "notoseriftangut", + "family": "Noto Sans Tangut", + "familyid": "notosanstangut", + "license": "OFL", + "source": "Google", + "status": "deprecated" +}, +"notosanstc": { + "distributable": true, + "family": "Noto Sans TC", + "familyid": "notosanstc", + "license": "OFL", + "source": "Google", + "status": "current" +}, +"notosanstelugu": { + "defaults": { + "ttf": "NotoSansTelugu-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Telugu", + "familyid": "notosanstelugu", + "files": { + "NotoSansTelugu-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTelugu-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-Black.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-Black.ttf" }, + "NotoSansTelugu-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTelugu-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-Bold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-Bold.ttf" }, + "NotoSansTelugu-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTelugu-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-Condensed.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-Condensed.ttf" }, + "NotoSansTelugu-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTelugu-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedBlack.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedBlack.ttf" }, + "NotoSansTelugu-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTelugu-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedBold.ttf" }, + "NotoSansTelugu-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTelugu-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedExtraBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedExtraBold.ttf" }, + "NotoSansTelugu-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTelugu-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedExtraLight.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedExtraLight.ttf" }, + "NotoSansTelugu-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTelugu-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedLight.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedLight.ttf" }, + "NotoSansTelugu-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTelugu-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedMedium.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedMedium.ttf" }, + "NotoSansTelugu-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTelugu-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedSemiBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedSemiBold.ttf" }, + "NotoSansTelugu-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTelugu-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedThin.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedThin.ttf" }, + "NotoSansTelugu-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTelugu-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraBold.ttf" }, + "NotoSansTelugu-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTelugu-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensed.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensed.ttf" }, + "NotoSansTelugu-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTelugu-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedBlack.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedBlack.ttf" }, + "NotoSansTelugu-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTelugu-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedBold.ttf" }, + "NotoSansTelugu-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTelugu-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedExtraBold.ttf" }, + "NotoSansTelugu-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTelugu-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedExtraLight.ttf" }, + "NotoSansTelugu-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTelugu-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedLight.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedLight.ttf" }, + "NotoSansTelugu-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTelugu-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedMedium.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedMedium.ttf" }, + "NotoSansTelugu-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTelugu-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedSemiBold.ttf" }, + "NotoSansTelugu-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTelugu-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedThin.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedThin.ttf" }, + "NotoSansTelugu-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTelugu-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraLight.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraLight.ttf" }, + "NotoSansTelugu-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTelugu-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-Light.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-Light.ttf" }, + "NotoSansTelugu-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTelugu-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-Medium.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-Medium.ttf" }, + "NotoSansTelugu-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTelugu-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-Regular.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-Regular.ttf" }, + "NotoSansTelugu-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTelugu-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-SemiBold.ttf" }, + "NotoSansTelugu-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTelugu-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensed.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensed.ttf" }, + "NotoSansTelugu-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTelugu-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedBlack.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedBlack.ttf" }, + "NotoSansTelugu-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTelugu-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedBold.ttf" }, + "NotoSansTelugu-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTelugu-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedExtraBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedExtraBold.ttf" }, + "NotoSansTelugu-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTelugu-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedExtraLight.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedExtraLight.ttf" }, + "NotoSansTelugu-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTelugu-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedLight.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedLight.ttf" }, + "NotoSansTelugu-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTelugu-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedMedium.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedMedium.ttf" }, + "NotoSansTelugu-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTelugu-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedSemiBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedSemiBold.ttf" }, + "NotoSansTelugu-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTelugu-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedThin.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedThin.ttf" }, + "NotoSansTelugu-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTelugu-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-Thin.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTelugu-Thin.ttf" }, + "NotoSansTeluguUI-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-Black.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-Black.ttf" }, + "NotoSansTeluguUI-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-Bold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-Bold.ttf" }, + "NotoSansTeluguUI-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-Condensed.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-Condensed.ttf" }, + "NotoSansTeluguUI-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedBlack.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedBlack.ttf" }, + "NotoSansTeluguUI-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedBold.ttf" }, + "NotoSansTeluguUI-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedExtraBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedExtraBold.ttf" }, + "NotoSansTeluguUI-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedExtraLight.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedExtraLight.ttf" }, + "NotoSansTeluguUI-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedLight.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedLight.ttf" }, + "NotoSansTeluguUI-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedMedium.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedMedium.ttf" }, + "NotoSansTeluguUI-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedSemiBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedSemiBold.ttf" }, + "NotoSansTeluguUI-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedThin.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedThin.ttf" }, + "NotoSansTeluguUI-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraBold.ttf" }, + "NotoSansTeluguUI-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensed.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensed.ttf" }, + "NotoSansTeluguUI-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedBlack.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedBlack.ttf" }, + "NotoSansTeluguUI-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedBold.ttf" }, + "NotoSansTeluguUI-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedExtraBold.ttf" }, + "NotoSansTeluguUI-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedExtraLight.ttf" }, + "NotoSansTeluguUI-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedLight.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedLight.ttf" }, + "NotoSansTeluguUI-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedMedium.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedMedium.ttf" }, + "NotoSansTeluguUI-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedSemiBold.ttf" }, + "NotoSansTeluguUI-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedThin.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedThin.ttf" }, + "NotoSansTeluguUI-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraLight.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraLight.ttf" }, + "NotoSansTeluguUI-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-Light.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-Light.ttf" }, + "NotoSansTeluguUI-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-Medium.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-Medium.ttf" }, + "NotoSansTeluguUI-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-Regular.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-Regular.ttf" }, + "NotoSansTeluguUI-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiBold.ttf" }, + "NotoSansTeluguUI-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensed.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensed.ttf" }, + "NotoSansTeluguUI-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedBlack.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedBlack.ttf" }, + "NotoSansTeluguUI-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedBold.ttf" }, + "NotoSansTeluguUI-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedExtraBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedExtraBold.ttf" }, + "NotoSansTeluguUI-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedExtraLight.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedExtraLight.ttf" }, + "NotoSansTeluguUI-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedLight.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedLight.ttf" }, + "NotoSansTeluguUI-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedMedium.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedMedium.ttf" }, + "NotoSansTeluguUI-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedSemiBold.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedSemiBold.ttf" }, + "NotoSansTeluguUI-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedThin.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedThin.ttf" }, + "NotoSansTeluguUI-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansTeluguUI-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-Thin.ttf", "zippath": "NotoSansTelugu/full/ttf/NotoSansTeluguUI-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/telugu/releases/download/NotoSansTelugu-v2.004/NotoSansTelugu-v2.004.zip", + "siteurl": "https://github.com/notofonts/telugu/releases/tag/NotoSansTelugu-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSansTelugu" +}, +"notosansthaana": { + "defaults": { + "ttf": "NotoSansThaana-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Thaana", + "familyid": "notosansthaana", + "files": { + "NotoSansThaana-Black.ttf": { "axes": { "wght": 900.0 }, "packagepath": "full/ttf/NotoSansThaana-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThaana/full/ttf/NotoSansThaana-Black.ttf", "zippath": "NotoSansThaana/full/ttf/NotoSansThaana-Black.ttf" }, + "NotoSansThaana-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSansThaana-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThaana/full/ttf/NotoSansThaana-Bold.ttf", "zippath": "NotoSansThaana/full/ttf/NotoSansThaana-Bold.ttf" }, + "NotoSansThaana-ExtraBold.ttf": { "axes": { "wght": 800.0 }, "packagepath": "full/ttf/NotoSansThaana-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThaana/full/ttf/NotoSansThaana-ExtraBold.ttf", "zippath": "NotoSansThaana/full/ttf/NotoSansThaana-ExtraBold.ttf" }, + "NotoSansThaana-ExtraLight.ttf": { "axes": { "wght": 200.0 }, "packagepath": "full/ttf/NotoSansThaana-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThaana/full/ttf/NotoSansThaana-ExtraLight.ttf", "zippath": "NotoSansThaana/full/ttf/NotoSansThaana-ExtraLight.ttf" }, + "NotoSansThaana-Light.ttf": { "axes": { "wght": 300.0 }, "packagepath": "full/ttf/NotoSansThaana-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThaana/full/ttf/NotoSansThaana-Light.ttf", "zippath": "NotoSansThaana/full/ttf/NotoSansThaana-Light.ttf" }, + "NotoSansThaana-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSansThaana-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThaana/full/ttf/NotoSansThaana-Medium.ttf", "zippath": "NotoSansThaana/full/ttf/NotoSansThaana-Medium.ttf" }, + "NotoSansThaana-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansThaana-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThaana/full/ttf/NotoSansThaana-Regular.ttf", "zippath": "NotoSansThaana/full/ttf/NotoSansThaana-Regular.ttf" }, + "NotoSansThaana-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSansThaana-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThaana/full/ttf/NotoSansThaana-SemiBold.ttf", "zippath": "NotoSansThaana/full/ttf/NotoSansThaana-SemiBold.ttf" }, + "NotoSansThaana-Thin.ttf": { "axes": { "wght": 100.0 }, "packagepath": "full/ttf/NotoSansThaana-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThaana/full/ttf/NotoSansThaana-Thin.ttf", "zippath": "NotoSansThaana/full/ttf/NotoSansThaana-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/thaana/releases/download/NotoSansThaana-v2.001/NotoSansThaana-v2.001.zip", + "siteurl": "https://github.com/notofonts/thaana/releases/tag/NotoSansThaana-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansThaana" +}, +"notosansthai": { + "defaults": { + "ttf": "NotoSansThai-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Thai", + "familyid": "notosansthai", + "files": { + "NotoSansThai-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansThai-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-Black.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-Black.ttf" }, + "NotoSansThai-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansThai-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-Bold.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-Bold.ttf" }, + "NotoSansThai-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansThai-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-Condensed.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-Condensed.ttf" }, + "NotoSansThai-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansThai-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedBlack.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-CondensedBlack.ttf" }, + "NotoSansThai-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansThai-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedBold.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-CondensedBold.ttf" }, + "NotoSansThai-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansThai-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedExtraBold.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-CondensedExtraBold.ttf" }, + "NotoSansThai-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansThai-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedExtraLight.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-CondensedExtraLight.ttf" }, + "NotoSansThai-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansThai-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedLight.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-CondensedLight.ttf" }, + "NotoSansThai-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansThai-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedMedium.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-CondensedMedium.ttf" }, + "NotoSansThai-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansThai-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedSemiBold.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-CondensedSemiBold.ttf" }, + "NotoSansThai-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansThai-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedThin.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-CondensedThin.ttf" }, + "NotoSansThai-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansThai-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraBold.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-ExtraBold.ttf" }, + "NotoSansThai-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansThai-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensed.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-ExtraCondensed.ttf" }, + "NotoSansThai-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansThai-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedBlack.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedBlack.ttf" }, + "NotoSansThai-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansThai-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedBold.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedBold.ttf" }, + "NotoSansThai-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansThai-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedExtraBold.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedExtraBold.ttf" }, + "NotoSansThai-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansThai-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedExtraLight.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedExtraLight.ttf" }, + "NotoSansThai-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansThai-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedLight.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedLight.ttf" }, + "NotoSansThai-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansThai-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedMedium.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedMedium.ttf" }, + "NotoSansThai-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansThai-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedSemiBold.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedSemiBold.ttf" }, + "NotoSansThai-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansThai-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedThin.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedThin.ttf" }, + "NotoSansThai-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansThai-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraLight.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-ExtraLight.ttf" }, + "NotoSansThai-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansThai-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-Light.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-Light.ttf" }, + "NotoSansThai-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansThai-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-Medium.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-Medium.ttf" }, + "NotoSansThai-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansThai-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-Regular.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-Regular.ttf" }, + "NotoSansThai-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansThai-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-SemiBold.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-SemiBold.ttf" }, + "NotoSansThai-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSansThai-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensed.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-SemiCondensed.ttf" }, + "NotoSansThai-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSansThai-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedBlack.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-SemiCondensedBlack.ttf" }, + "NotoSansThai-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSansThai-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedBold.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-SemiCondensedBold.ttf" }, + "NotoSansThai-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSansThai-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedExtraBold.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-SemiCondensedExtraBold.ttf" }, + "NotoSansThai-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSansThai-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedExtraLight.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-SemiCondensedExtraLight.ttf" }, + "NotoSansThai-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSansThai-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedLight.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-SemiCondensedLight.ttf" }, + "NotoSansThai-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSansThai-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedMedium.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-SemiCondensedMedium.ttf" }, + "NotoSansThai-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSansThai-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedSemiBold.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-SemiCondensedSemiBold.ttf" }, + "NotoSansThai-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansThai-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedThin.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-SemiCondensedThin.ttf" }, + "NotoSansThai-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSansThai-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansThai/full/ttf/NotoSansThai-Thin.ttf", "zippath": "NotoSansThai/full/ttf/NotoSansThai-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/thai/releases/download/NotoSansThai-v2.001/NotoSansThai-v2.001.zip", + "siteurl": "https://github.com/notofonts/thai/releases/tag/NotoSansThai-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansThai" +}, +"notosanstibetan": { + "distributable": true, + "fallback": "notoseriftibetan", + "family": "Noto Sans Tibetan", + "familyid": "notosanstibetan", + "license": "OFL", + "source": "Google", + "status": "deprecated" +}, +"notosanstifinagh": { + "defaults": { + "ttf": "NotoSansTifinaghHawad-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Tifinagh", + "familyid": "notosanstifinagh", + "files": { + "NotoSansTifinagh-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTifinagh-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTifinagh/full/ttf/NotoSansTifinagh-Regular.ttf", "zippath": "NotoSansTifinagh/full/ttf/NotoSansTifinagh-Regular.ttf" }, + "NotoSansTifinaghAPT-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTifinaghAPT-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghAPT-Regular.ttf", "zippath": "NotoSansTifinagh/full/ttf/NotoSansTifinaghAPT-Regular.ttf" }, + "NotoSansTifinaghAdrar-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTifinaghAdrar-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghAdrar-Regular.ttf", "zippath": "NotoSansTifinagh/full/ttf/NotoSansTifinaghAdrar-Regular.ttf" }, + "NotoSansTifinaghAgrawImazighen-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTifinaghAgrawImazighen-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghAgrawImazighen-Regular.ttf", "zippath": "NotoSansTifinagh/full/ttf/NotoSansTifinaghAgrawImazighen-Regular.ttf" }, + "NotoSansTifinaghAhaggar-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTifinaghAhaggar-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghAhaggar-Regular.ttf", "zippath": "NotoSansTifinagh/full/ttf/NotoSansTifinaghAhaggar-Regular.ttf" }, + "NotoSansTifinaghAir-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTifinaghAir-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghAir-Regular.ttf", "zippath": "NotoSansTifinagh/full/ttf/NotoSansTifinaghAir-Regular.ttf" }, + "NotoSansTifinaghAzawagh-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTifinaghAzawagh-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghAzawagh-Regular.ttf", "zippath": "NotoSansTifinagh/full/ttf/NotoSansTifinaghAzawagh-Regular.ttf" }, + "NotoSansTifinaghGhat-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTifinaghGhat-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghGhat-Regular.ttf", "zippath": "NotoSansTifinagh/full/ttf/NotoSansTifinaghGhat-Regular.ttf" }, + "NotoSansTifinaghHawad-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTifinaghHawad-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghHawad-Regular.ttf", "zippath": "NotoSansTifinagh/full/ttf/NotoSansTifinaghHawad-Regular.ttf" }, + "NotoSansTifinaghRhissaIxa-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTifinaghRhissaIxa-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghRhissaIxa-Regular.ttf", "zippath": "NotoSansTifinagh/full/ttf/NotoSansTifinaghRhissaIxa-Regular.ttf" }, + "NotoSansTifinaghSIL-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTifinaghSIL-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghSIL-Regular.ttf", "zippath": "NotoSansTifinagh/full/ttf/NotoSansTifinaghSIL-Regular.ttf" }, + "NotoSansTifinaghTawellemmet-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTifinaghTawellemmet-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghTawellemmet-Regular.ttf", "zippath": "NotoSansTifinagh/full/ttf/NotoSansTifinaghTawellemmet-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/tifinagh/releases/download/NotoSansTifinagh-v2.006/NotoSansTifinagh-v2.006.zip", + "siteurl": "https://github.com/notofonts/tifinagh/releases/tag/NotoSansTifinagh-v2.006", + "source": "Google", + "status": "current", + "version": "2.006", + "ziproot": "NotoSansTifinagh" +}, +"notosanstirhuta": { + "defaults": { + "ttf": "NotoSansTirhuta-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Tirhuta", + "familyid": "notosanstirhuta", + "files": { + "NotoSansTirhuta-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansTirhuta-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansTirhuta/full/ttf/NotoSansTirhuta-Regular.ttf", "zippath": "NotoSansTirhuta/full/ttf/NotoSansTirhuta-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/tirhuta/releases/download/NotoSansTirhuta-v2.003/NotoSansTirhuta-v2.003.zip", + "siteurl": "https://github.com/notofonts/tirhuta/releases/tag/NotoSansTirhuta-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSansTirhuta" +}, +"notosansugaritic": { + "defaults": { + "ttf": "NotoSansUgaritic-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Ugaritic", + "familyid": "notosansugaritic", + "files": { + "NotoSansUgaritic-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansUgaritic-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansUgaritic/full/ttf/NotoSansUgaritic-Regular.ttf", "zippath": "NotoSansUgaritic/full/ttf/NotoSansUgaritic-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/ugaritic/releases/download/NotoSansUgaritic-v2.001/NotoSansUgaritic-v2.001.zip", + "siteurl": "https://github.com/notofonts/ugaritic/releases/tag/NotoSansUgaritic-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansUgaritic" +}, +"notosansvai": { + "defaults": { + "ttf": "NotoSansVai-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Vai", + "familyid": "notosansvai", + "files": { + "NotoSansVai-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansVai-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansVai/full/ttf/NotoSansVai-Regular.ttf", "zippath": "NotoSansVai/full/ttf/NotoSansVai-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/vai/releases/download/NotoSansVai-v2.001/NotoSansVai-v2.001.zip", + "siteurl": "https://github.com/notofonts/vai/releases/tag/NotoSansVai-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansVai" +}, +"notosanswancho": { + "defaults": { + "ttf": "NotoSansWancho-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Wancho", + "familyid": "notosanswancho", + "files": { + "NotoSansWancho-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansWancho-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansWancho/full/ttf/NotoSansWancho-Regular.ttf", "zippath": "NotoSansWancho/full/ttf/NotoSansWancho-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/wancho/releases/download/NotoSansWancho-v2.001/NotoSansWancho-v2.001.zip", + "siteurl": "https://github.com/notofonts/wancho/releases/tag/NotoSansWancho-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSansWancho" +}, +"notosanswarangciti": { + "defaults": { + "ttf": "NotoSansWarangCiti-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Warang Citi", + "familyid": "notosanswarangciti", + "files": { + "NotoSansWarangCiti-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansWarangCiti-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansWarangCiti/full/ttf/NotoSansWarangCiti-Regular.ttf", "zippath": "NotoSansWarangCiti/full/ttf/NotoSansWarangCiti-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/warang-citi/releases/download/NotoSansWarangCiti-v3.002/NotoSansWarangCiti-v3.002.zip", + "siteurl": "https://github.com/notofonts/warang-citi/releases/tag/NotoSansWarangCiti-v3.002", + "source": "Google", + "status": "current", + "version": "3.002", + "ziproot": "NotoSansWarangCiti" +}, +"notosansyi": { + "defaults": { + "ttf": "NotoSansYi-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Yi", + "familyid": "notosansyi", + "files": { + "NotoSansYi-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansYi-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansYi/full/ttf/NotoSansYi-Regular.ttf", "zippath": "NotoSansYi/full/ttf/NotoSansYi-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/yi/releases/download/NotoSansYi-v2.002/NotoSansYi-v2.002.zip", + "siteurl": "https://github.com/notofonts/yi/releases/tag/NotoSansYi-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSansYi" +}, +"notosanszanabazarsquare": { + "defaults": { + "ttf": "NotoSansZanabazarSquare-Regular.ttf" + }, + "distributable": true, + "family": "Noto Sans Zanabazar Square", + "familyid": "notosanszanabazarsquare", + "files": { + "NotoSansZanabazarSquare-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSansZanabazarSquare-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSansZanabazarSquare/full/ttf/NotoSansZanabazarSquare-Regular.ttf", "zippath": "NotoSansZanabazarSquare/full/ttf/NotoSansZanabazarSquare-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/zanabazar-square/releases/download/NotoSansZanabazarSquare-v2.006/NotoSansZanabazarSquare-v2.006.zip", + "siteurl": "https://github.com/notofonts/zanabazar-square/releases/tag/NotoSansZanabazarSquare-v2.006", + "source": "Google", + "status": "current", + "version": "2.006", + "ziproot": "NotoSansZanabazarSquare" +}, +"notoserif": { + "distributable": true, + "family": "Noto Serif", + "familyid": "notoserif", + "license": "OFL", + "packageurl": "https://github.com/notofonts/latin-greek-cyrillic/releases/download/NotoSerif-v2.012/NotoSerif-v2.012.zip", + "siteurl": "https://github.com/notofonts/latin-greek-cyrillic/releases/tag/NotoSerif-v2.012", + "source": "Google", + "status": "current", + "version": "2.012" +}, +"notoserifahom": { + "defaults": { + "ttf": "NotoSerifAhom-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Ahom", + "familyid": "notoserifahom", + "files": { + "NotoSerifAhom-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifAhom-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifAhom/full/ttf/NotoSerifAhom-Regular.ttf", "zippath": "NotoSerifAhom/full/ttf/NotoSerifAhom-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/ahom/releases/download/NotoSerifAhom-v2.006/NotoSerifAhom-v2.006.zip", + "siteurl": "https://github.com/notofonts/ahom/releases/tag/NotoSerifAhom-v2.006", + "source": "Google", + "status": "current", + "version": "2.006", + "ziproot": "NotoSerifAhom" +}, +"notoserifarmenian": { + "defaults": { + "ttf": "NotoSerifArmenian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Armenian", + "familyid": "notoserifarmenian", + "files": { + "NotoSerifArmenian-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifArmenian-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Black.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-Black.ttf" }, + "NotoSerifArmenian-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifArmenian-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Bold.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-Bold.ttf" }, + "NotoSerifArmenian-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifArmenian-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Condensed.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-Condensed.ttf" }, + "NotoSerifArmenian-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifArmenian-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedBlack.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedBlack.ttf" }, + "NotoSerifArmenian-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifArmenian-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedBold.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedBold.ttf" }, + "NotoSerifArmenian-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifArmenian-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedExtraBold.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedExtraBold.ttf" }, + "NotoSerifArmenian-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifArmenian-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedExtraLight.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedExtraLight.ttf" }, + "NotoSerifArmenian-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifArmenian-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedLight.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedLight.ttf" }, + "NotoSerifArmenian-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifArmenian-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedMedium.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedMedium.ttf" }, + "NotoSerifArmenian-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifArmenian-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedSemiBold.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedSemiBold.ttf" }, + "NotoSerifArmenian-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifArmenian-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedThin.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedThin.ttf" }, + "NotoSerifArmenian-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifArmenian-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraBold.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraBold.ttf" }, + "NotoSerifArmenian-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifArmenian-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensed.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensed.ttf" }, + "NotoSerifArmenian-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifArmenian-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedBlack.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedBlack.ttf" }, + "NotoSerifArmenian-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifArmenian-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedBold.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedBold.ttf" }, + "NotoSerifArmenian-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifArmenian-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedExtraBold.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedExtraBold.ttf" }, + "NotoSerifArmenian-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifArmenian-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedExtraLight.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedExtraLight.ttf" }, + "NotoSerifArmenian-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifArmenian-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedLight.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedLight.ttf" }, + "NotoSerifArmenian-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifArmenian-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedMedium.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedMedium.ttf" }, + "NotoSerifArmenian-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifArmenian-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedSemiBold.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedSemiBold.ttf" }, + "NotoSerifArmenian-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifArmenian-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedThin.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedThin.ttf" }, + "NotoSerifArmenian-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifArmenian-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraLight.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraLight.ttf" }, + "NotoSerifArmenian-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifArmenian-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Light.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-Light.ttf" }, + "NotoSerifArmenian-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifArmenian-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Medium.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-Medium.ttf" }, + "NotoSerifArmenian-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifArmenian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Regular.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-Regular.ttf" }, + "NotoSerifArmenian-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifArmenian-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiBold.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiBold.ttf" }, + "NotoSerifArmenian-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifArmenian-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensed.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensed.ttf" }, + "NotoSerifArmenian-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifArmenian-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedBlack.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedBlack.ttf" }, + "NotoSerifArmenian-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifArmenian-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedBold.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedBold.ttf" }, + "NotoSerifArmenian-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifArmenian-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedExtraBold.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedExtraBold.ttf" }, + "NotoSerifArmenian-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifArmenian-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedExtraLight.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedExtraLight.ttf" }, + "NotoSerifArmenian-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifArmenian-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedLight.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedLight.ttf" }, + "NotoSerifArmenian-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifArmenian-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedMedium.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedMedium.ttf" }, + "NotoSerifArmenian-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifArmenian-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedSemiBold.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedSemiBold.ttf" }, + "NotoSerifArmenian-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifArmenian-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedThin.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedThin.ttf" }, + "NotoSerifArmenian-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifArmenian-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Thin.ttf", "zippath": "NotoSerifArmenian/full/ttf/NotoSerifArmenian-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/armenian/releases/download/NotoSerifArmenian-v2.007/NotoSerifArmenian-v2.007.zip", + "siteurl": "https://github.com/notofonts/armenian/releases/tag/NotoSerifArmenian-v2.007", + "source": "Google", + "status": "current", + "version": "2.007", + "ziproot": "NotoSerifArmenian" +}, +"notoserifbengali": { + "defaults": { + "ttf": "NotoSerifBengali-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Bengali", + "familyid": "notoserifbengali", + "files": { + "NotoSerifBengali-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifBengali-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-Black.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-Black.ttf" }, + "NotoSerifBengali-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifBengali-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-Bold.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-Bold.ttf" }, + "NotoSerifBengali-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifBengali-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-Condensed.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-Condensed.ttf" }, + "NotoSerifBengali-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifBengali-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedBlack.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedBlack.ttf" }, + "NotoSerifBengali-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifBengali-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedBold.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedBold.ttf" }, + "NotoSerifBengali-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifBengali-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedExtraBold.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedExtraBold.ttf" }, + "NotoSerifBengali-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifBengali-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedExtraLight.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedExtraLight.ttf" }, + "NotoSerifBengali-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifBengali-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedLight.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedLight.ttf" }, + "NotoSerifBengali-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifBengali-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedMedium.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedMedium.ttf" }, + "NotoSerifBengali-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifBengali-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedSemiBold.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedSemiBold.ttf" }, + "NotoSerifBengali-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifBengali-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedThin.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedThin.ttf" }, + "NotoSerifBengali-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifBengali-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraBold.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraBold.ttf" }, + "NotoSerifBengali-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifBengali-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensed.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensed.ttf" }, + "NotoSerifBengali-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifBengali-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedBlack.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedBlack.ttf" }, + "NotoSerifBengali-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifBengali-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedBold.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedBold.ttf" }, + "NotoSerifBengali-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifBengali-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedExtraBold.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedExtraBold.ttf" }, + "NotoSerifBengali-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifBengali-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedExtraLight.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedExtraLight.ttf" }, + "NotoSerifBengali-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifBengali-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedLight.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedLight.ttf" }, + "NotoSerifBengali-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifBengali-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedMedium.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedMedium.ttf" }, + "NotoSerifBengali-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifBengali-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedSemiBold.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedSemiBold.ttf" }, + "NotoSerifBengali-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifBengali-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedThin.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedThin.ttf" }, + "NotoSerifBengali-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifBengali-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraLight.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraLight.ttf" }, + "NotoSerifBengali-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifBengali-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-Light.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-Light.ttf" }, + "NotoSerifBengali-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifBengali-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-Medium.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-Medium.ttf" }, + "NotoSerifBengali-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifBengali-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-Regular.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-Regular.ttf" }, + "NotoSerifBengali-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifBengali-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiBold.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-SemiBold.ttf" }, + "NotoSerifBengali-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifBengali-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensed.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensed.ttf" }, + "NotoSerifBengali-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifBengali-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedBlack.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedBlack.ttf" }, + "NotoSerifBengali-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifBengali-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedBold.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedBold.ttf" }, + "NotoSerifBengali-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifBengali-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedExtraBold.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedExtraBold.ttf" }, + "NotoSerifBengali-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifBengali-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedExtraLight.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedExtraLight.ttf" }, + "NotoSerifBengali-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifBengali-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedLight.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedLight.ttf" }, + "NotoSerifBengali-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifBengali-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedMedium.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedMedium.ttf" }, + "NotoSerifBengali-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifBengali-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedSemiBold.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedSemiBold.ttf" }, + "NotoSerifBengali-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifBengali-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedThin.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedThin.ttf" }, + "NotoSerifBengali-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifBengali-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-Thin.ttf", "zippath": "NotoSerifBengali/full/ttf/NotoSerifBengali-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/bengali/releases/download/NotoSerifBengali-v2.003/NotoSerifBengali-v2.003.zip", + "siteurl": "https://github.com/notofonts/bengali/releases/tag/NotoSerifBengali-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSerifBengali" +}, +"notoserifdevanagari": { + "defaults": { + "ttf": "NotoSerifDevanagari-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Devanagari", + "familyid": "notoserifdevanagari", + "files": { + "NotoSerifDevanagari-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Black.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Black.ttf" }, + "NotoSerifDevanagari-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Bold.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Bold.ttf" }, + "NotoSerifDevanagari-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Condensed.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Condensed.ttf" }, + "NotoSerifDevanagari-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedBlack.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedBlack.ttf" }, + "NotoSerifDevanagari-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedBold.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedBold.ttf" }, + "NotoSerifDevanagari-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedExtraBold.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedExtraBold.ttf" }, + "NotoSerifDevanagari-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedExtraLight.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedExtraLight.ttf" }, + "NotoSerifDevanagari-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedLight.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedLight.ttf" }, + "NotoSerifDevanagari-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedMedium.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedMedium.ttf" }, + "NotoSerifDevanagari-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedSemiBold.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedSemiBold.ttf" }, + "NotoSerifDevanagari-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedThin.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedThin.ttf" }, + "NotoSerifDevanagari-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraBold.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraBold.ttf" }, + "NotoSerifDevanagari-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensed.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensed.ttf" }, + "NotoSerifDevanagari-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedBlack.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedBlack.ttf" }, + "NotoSerifDevanagari-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedBold.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedBold.ttf" }, + "NotoSerifDevanagari-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedExtraBold.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedExtraBold.ttf" }, + "NotoSerifDevanagari-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedExtraLight.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedExtraLight.ttf" }, + "NotoSerifDevanagari-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedLight.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedLight.ttf" }, + "NotoSerifDevanagari-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedMedium.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedMedium.ttf" }, + "NotoSerifDevanagari-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedSemiBold.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedSemiBold.ttf" }, + "NotoSerifDevanagari-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedThin.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedThin.ttf" }, + "NotoSerifDevanagari-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraLight.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraLight.ttf" }, + "NotoSerifDevanagari-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Light.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Light.ttf" }, + "NotoSerifDevanagari-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Medium.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Medium.ttf" }, + "NotoSerifDevanagari-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Regular.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Regular.ttf" }, + "NotoSerifDevanagari-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiBold.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiBold.ttf" }, + "NotoSerifDevanagari-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensed.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensed.ttf" }, + "NotoSerifDevanagari-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedBlack.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedBlack.ttf" }, + "NotoSerifDevanagari-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedBold.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedBold.ttf" }, + "NotoSerifDevanagari-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedExtraBold.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedExtraBold.ttf" }, + "NotoSerifDevanagari-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedExtraLight.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedExtraLight.ttf" }, + "NotoSerifDevanagari-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedLight.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedLight.ttf" }, + "NotoSerifDevanagari-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedMedium.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedMedium.ttf" }, + "NotoSerifDevanagari-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedSemiBold.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedSemiBold.ttf" }, + "NotoSerifDevanagari-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedThin.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedThin.ttf" }, + "NotoSerifDevanagari-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifDevanagari-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Thin.ttf", "zippath": "NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/devanagari/releases/download/NotoSerifDevanagari-v2.004/NotoSerifDevanagari-v2.004.zip", + "siteurl": "https://github.com/notofonts/devanagari/releases/tag/NotoSerifDevanagari-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSerifDevanagari" +}, +"notoserifdogra": { + "defaults": { + "ttf": "NotoSerifDogra-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Dogra", + "familyid": "notoserifdogra", + "files": { + "NotoSerifDogra-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifDogra-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifDogra/full/ttf/NotoSerifDogra-Regular.ttf", "zippath": "NotoSerifDogra/full/ttf/NotoSerifDogra-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/dogra/releases/download/NotoSerifDogra-v1.006/NotoSerifDogra-v1.006.zip", + "siteurl": "https://github.com/notofonts/dogra/releases/tag/NotoSerifDogra-v1.006", + "source": "Google", + "status": "current", + "version": "1.006", + "ziproot": "NotoSerifDogra" +}, +"notoserifethiopic": { + "defaults": { + "ttf": "NotoSerifEthiopic-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Ethiopic", + "familyid": "notoserifethiopic", + "files": { + "NotoSerifEthiopic-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Black.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Black.ttf" }, + "NotoSerifEthiopic-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Bold.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Bold.ttf" }, + "NotoSerifEthiopic-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Condensed.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Condensed.ttf" }, + "NotoSerifEthiopic-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedBlack.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedBlack.ttf" }, + "NotoSerifEthiopic-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedBold.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedBold.ttf" }, + "NotoSerifEthiopic-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedExtraBold.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedExtraBold.ttf" }, + "NotoSerifEthiopic-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedExtraLight.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedExtraLight.ttf" }, + "NotoSerifEthiopic-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedLight.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedLight.ttf" }, + "NotoSerifEthiopic-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedMedium.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedMedium.ttf" }, + "NotoSerifEthiopic-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedSemiBold.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedSemiBold.ttf" }, + "NotoSerifEthiopic-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedThin.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedThin.ttf" }, + "NotoSerifEthiopic-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraBold.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraBold.ttf" }, + "NotoSerifEthiopic-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensed.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensed.ttf" }, + "NotoSerifEthiopic-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedBlack.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedBlack.ttf" }, + "NotoSerifEthiopic-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedBold.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedBold.ttf" }, + "NotoSerifEthiopic-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedExtraBold.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedExtraBold.ttf" }, + "NotoSerifEthiopic-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedExtraLight.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedExtraLight.ttf" }, + "NotoSerifEthiopic-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedLight.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedLight.ttf" }, + "NotoSerifEthiopic-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedMedium.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedMedium.ttf" }, + "NotoSerifEthiopic-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedSemiBold.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedSemiBold.ttf" }, + "NotoSerifEthiopic-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedThin.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedThin.ttf" }, + "NotoSerifEthiopic-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraLight.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraLight.ttf" }, + "NotoSerifEthiopic-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Light.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Light.ttf" }, + "NotoSerifEthiopic-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Medium.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Medium.ttf" }, + "NotoSerifEthiopic-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Regular.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Regular.ttf" }, + "NotoSerifEthiopic-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiBold.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiBold.ttf" }, + "NotoSerifEthiopic-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensed.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensed.ttf" }, + "NotoSerifEthiopic-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedBlack.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedBlack.ttf" }, + "NotoSerifEthiopic-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedBold.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedBold.ttf" }, + "NotoSerifEthiopic-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedExtraBold.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedExtraBold.ttf" }, + "NotoSerifEthiopic-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedExtraLight.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedExtraLight.ttf" }, + "NotoSerifEthiopic-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedLight.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedLight.ttf" }, + "NotoSerifEthiopic-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedMedium.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedMedium.ttf" }, + "NotoSerifEthiopic-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedSemiBold.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedSemiBold.ttf" }, + "NotoSerifEthiopic-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedThin.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedThin.ttf" }, + "NotoSerifEthiopic-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifEthiopic-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Thin.ttf", "zippath": "NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/ethiopic/releases/download/NotoSerifEthiopic-v2.102/NotoSerifEthiopic-v2.102.zip", + "siteurl": "https://github.com/notofonts/ethiopic/releases/tag/NotoSerifEthiopic-v2.102", + "source": "Google", + "status": "current", + "version": "2.102", + "ziproot": "NotoSerifEthiopic" +}, +"notoserifgeorgian": { + "defaults": { + "ttf": "NotoSerifGeorgian-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Georgian", + "familyid": "notoserifgeorgian", + "files": { + "NotoSerifGeorgian-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Black.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Black.ttf" }, + "NotoSerifGeorgian-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Bold.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Bold.ttf" }, + "NotoSerifGeorgian-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Condensed.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Condensed.ttf" }, + "NotoSerifGeorgian-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedBlack.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedBlack.ttf" }, + "NotoSerifGeorgian-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedBold.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedBold.ttf" }, + "NotoSerifGeorgian-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedExtraBold.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedExtraBold.ttf" }, + "NotoSerifGeorgian-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedExtraLight.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedExtraLight.ttf" }, + "NotoSerifGeorgian-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedLight.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedLight.ttf" }, + "NotoSerifGeorgian-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedMedium.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedMedium.ttf" }, + "NotoSerifGeorgian-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedSemiBold.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedSemiBold.ttf" }, + "NotoSerifGeorgian-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedThin.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedThin.ttf" }, + "NotoSerifGeorgian-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraBold.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraBold.ttf" }, + "NotoSerifGeorgian-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensed.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensed.ttf" }, + "NotoSerifGeorgian-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedBlack.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedBlack.ttf" }, + "NotoSerifGeorgian-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedBold.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedBold.ttf" }, + "NotoSerifGeorgian-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedExtraBold.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedExtraBold.ttf" }, + "NotoSerifGeorgian-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedExtraLight.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedExtraLight.ttf" }, + "NotoSerifGeorgian-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedLight.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedLight.ttf" }, + "NotoSerifGeorgian-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedMedium.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedMedium.ttf" }, + "NotoSerifGeorgian-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedSemiBold.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedSemiBold.ttf" }, + "NotoSerifGeorgian-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedThin.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedThin.ttf" }, + "NotoSerifGeorgian-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraLight.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraLight.ttf" }, + "NotoSerifGeorgian-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Light.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Light.ttf" }, + "NotoSerifGeorgian-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Medium.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Medium.ttf" }, + "NotoSerifGeorgian-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Regular.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Regular.ttf" }, + "NotoSerifGeorgian-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiBold.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiBold.ttf" }, + "NotoSerifGeorgian-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensed.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensed.ttf" }, + "NotoSerifGeorgian-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedBlack.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedBlack.ttf" }, + "NotoSerifGeorgian-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedBold.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedBold.ttf" }, + "NotoSerifGeorgian-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedExtraBold.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedExtraBold.ttf" }, + "NotoSerifGeorgian-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedExtraLight.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedExtraLight.ttf" }, + "NotoSerifGeorgian-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedLight.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedLight.ttf" }, + "NotoSerifGeorgian-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedMedium.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedMedium.ttf" }, + "NotoSerifGeorgian-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedSemiBold.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedSemiBold.ttf" }, + "NotoSerifGeorgian-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedThin.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedThin.ttf" }, + "NotoSerifGeorgian-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifGeorgian-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Thin.ttf", "zippath": "NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/georgian/releases/download/NotoSerifGeorgian-v2.002/NotoSerifGeorgian-v2.002.zip", + "siteurl": "https://github.com/notofonts/georgian/releases/tag/NotoSerifGeorgian-v2.002", + "source": "Google", + "status": "current", + "version": "2.002", + "ziproot": "NotoSerifGeorgian" +}, +"notoserifgujarati": { + "defaults": { + "ttf": "NotoSerifGujarati-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Gujarati", + "familyid": "notoserifgujarati", + "files": { + "NotoSerifGujarati-Black.ttf": { "axes": { "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifGujarati-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-Black.ttf", "zippath": "NotoSerifGujarati/full/ttf/NotoSerifGujarati-Black.ttf" }, + "NotoSerifGujarati-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifGujarati-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-Bold.ttf", "zippath": "NotoSerifGujarati/full/ttf/NotoSerifGujarati-Bold.ttf" }, + "NotoSerifGujarati-ExtraBold.ttf": { "axes": { "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifGujarati-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-ExtraBold.ttf", "zippath": "NotoSerifGujarati/full/ttf/NotoSerifGujarati-ExtraBold.ttf" }, + "NotoSerifGujarati-ExtraLight.ttf": { "axes": { "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifGujarati-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-ExtraLight.ttf", "zippath": "NotoSerifGujarati/full/ttf/NotoSerifGujarati-ExtraLight.ttf" }, + "NotoSerifGujarati-Light.ttf": { "axes": { "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifGujarati-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-Light.ttf", "zippath": "NotoSerifGujarati/full/ttf/NotoSerifGujarati-Light.ttf" }, + "NotoSerifGujarati-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifGujarati-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-Medium.ttf", "zippath": "NotoSerifGujarati/full/ttf/NotoSerifGujarati-Medium.ttf" }, + "NotoSerifGujarati-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifGujarati-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-Regular.ttf", "zippath": "NotoSerifGujarati/full/ttf/NotoSerifGujarati-Regular.ttf" }, + "NotoSerifGujarati-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifGujarati-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-SemiBold.ttf", "zippath": "NotoSerifGujarati/full/ttf/NotoSerifGujarati-SemiBold.ttf" }, + "NotoSerifGujarati-Thin.ttf": { "axes": { "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifGujarati-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-Thin.ttf", "zippath": "NotoSerifGujarati/full/ttf/NotoSerifGujarati-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/gujarati/releases/download/NotoSerifGujarati-v2.104/NotoSerifGujarati-v2.104.zip", + "siteurl": "https://github.com/notofonts/gujarati/releases/tag/NotoSerifGujarati-v2.104", + "source": "Google", + "status": "current", + "version": "2.104", + "ziproot": "NotoSerifGujarati" +}, +"notoserifgurmukhi": { + "defaults": { + "ttf": "NotoSerifGurmukhi-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Gurmukhi", + "familyid": "notoserifgurmukhi", + "files": { + "NotoSerifGurmukhi-Black.ttf": { "axes": { "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifGurmukhi-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Black.ttf", "zippath": "NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Black.ttf" }, + "NotoSerifGurmukhi-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifGurmukhi-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Bold.ttf", "zippath": "NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Bold.ttf" }, + "NotoSerifGurmukhi-ExtraBold.ttf": { "axes": { "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifGurmukhi-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-ExtraBold.ttf", "zippath": "NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-ExtraBold.ttf" }, + "NotoSerifGurmukhi-ExtraLight.ttf": { "axes": { "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifGurmukhi-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-ExtraLight.ttf", "zippath": "NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-ExtraLight.ttf" }, + "NotoSerifGurmukhi-Light.ttf": { "axes": { "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifGurmukhi-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Light.ttf", "zippath": "NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Light.ttf" }, + "NotoSerifGurmukhi-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifGurmukhi-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Medium.ttf", "zippath": "NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Medium.ttf" }, + "NotoSerifGurmukhi-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifGurmukhi-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Regular.ttf", "zippath": "NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Regular.ttf" }, + "NotoSerifGurmukhi-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifGurmukhi-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-SemiBold.ttf", "zippath": "NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-SemiBold.ttf" }, + "NotoSerifGurmukhi-Thin.ttf": { "axes": { "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifGurmukhi-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Thin.ttf", "zippath": "NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/gurmukhi/releases/download/NotoSerifGurmukhi-v2.004/NotoSerifGurmukhi-v2.004.zip", + "siteurl": "https://github.com/notofonts/gurmukhi/releases/tag/NotoSerifGurmukhi-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSerifGurmukhi" +}, +"notoserifhebrew": { + "defaults": { + "ttf": "NotoSerifHebrew-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Hebrew", + "familyid": "notoserifhebrew", + "files": { + "NotoSerifHebrew-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifHebrew-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-Black.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-Black.ttf" }, + "NotoSerifHebrew-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifHebrew-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-Bold.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-Bold.ttf" }, + "NotoSerifHebrew-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifHebrew-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-Condensed.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-Condensed.ttf" }, + "NotoSerifHebrew-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifHebrew-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedBlack.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedBlack.ttf" }, + "NotoSerifHebrew-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifHebrew-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedBold.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedBold.ttf" }, + "NotoSerifHebrew-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifHebrew-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedExtraBold.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedExtraBold.ttf" }, + "NotoSerifHebrew-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifHebrew-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedExtraLight.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedExtraLight.ttf" }, + "NotoSerifHebrew-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifHebrew-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedLight.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedLight.ttf" }, + "NotoSerifHebrew-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifHebrew-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedMedium.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedMedium.ttf" }, + "NotoSerifHebrew-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifHebrew-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedSemiBold.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedSemiBold.ttf" }, + "NotoSerifHebrew-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifHebrew-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedThin.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedThin.ttf" }, + "NotoSerifHebrew-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifHebrew-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraBold.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraBold.ttf" }, + "NotoSerifHebrew-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifHebrew-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensed.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensed.ttf" }, + "NotoSerifHebrew-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifHebrew-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedBlack.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedBlack.ttf" }, + "NotoSerifHebrew-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifHebrew-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedBold.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedBold.ttf" }, + "NotoSerifHebrew-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifHebrew-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedExtraBold.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedExtraBold.ttf" }, + "NotoSerifHebrew-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifHebrew-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedExtraLight.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedExtraLight.ttf" }, + "NotoSerifHebrew-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifHebrew-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedLight.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedLight.ttf" }, + "NotoSerifHebrew-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifHebrew-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedMedium.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedMedium.ttf" }, + "NotoSerifHebrew-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifHebrew-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedSemiBold.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedSemiBold.ttf" }, + "NotoSerifHebrew-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifHebrew-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedThin.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedThin.ttf" }, + "NotoSerifHebrew-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifHebrew-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraLight.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraLight.ttf" }, + "NotoSerifHebrew-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifHebrew-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-Light.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-Light.ttf" }, + "NotoSerifHebrew-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifHebrew-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-Medium.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-Medium.ttf" }, + "NotoSerifHebrew-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifHebrew-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-Regular.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-Regular.ttf" }, + "NotoSerifHebrew-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifHebrew-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiBold.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiBold.ttf" }, + "NotoSerifHebrew-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifHebrew-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensed.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensed.ttf" }, + "NotoSerifHebrew-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifHebrew-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedBlack.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedBlack.ttf" }, + "NotoSerifHebrew-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifHebrew-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedBold.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedBold.ttf" }, + "NotoSerifHebrew-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifHebrew-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedExtraBold.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedExtraBold.ttf" }, + "NotoSerifHebrew-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifHebrew-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedExtraLight.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedExtraLight.ttf" }, + "NotoSerifHebrew-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifHebrew-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedLight.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedLight.ttf" }, + "NotoSerifHebrew-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifHebrew-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedMedium.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedMedium.ttf" }, + "NotoSerifHebrew-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifHebrew-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedSemiBold.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedSemiBold.ttf" }, + "NotoSerifHebrew-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifHebrew-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedThin.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedThin.ttf" }, + "NotoSerifHebrew-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifHebrew-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-Thin.ttf", "zippath": "NotoSerifHebrew/full/ttf/NotoSerifHebrew-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/hebrew/releases/download/NotoSerifHebrew-v2.003/NotoSerifHebrew-v2.003.zip", + "siteurl": "https://github.com/notofonts/hebrew/releases/tag/NotoSerifHebrew-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSerifHebrew" +}, +"notoserifjp": { + "distributable": true, + "family": "Noto Serif JP", + "familyid": "notoserifjp", + "license": "OFL", + "source": "Google", + "status": "current" +}, +"notoserifkannada": { + "defaults": { + "ttf": "NotoSerifKannada-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Kannada", + "familyid": "notoserifkannada", + "files": { + "NotoSerifKannada-Black.ttf": { "axes": { "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifKannada-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-Black.ttf", "zippath": "NotoSerifKannada/full/ttf/NotoSerifKannada-Black.ttf" }, + "NotoSerifKannada-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifKannada-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-Bold.ttf", "zippath": "NotoSerifKannada/full/ttf/NotoSerifKannada-Bold.ttf" }, + "NotoSerifKannada-ExtraBold.ttf": { "axes": { "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifKannada-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-ExtraBold.ttf", "zippath": "NotoSerifKannada/full/ttf/NotoSerifKannada-ExtraBold.ttf" }, + "NotoSerifKannada-ExtraLight.ttf": { "axes": { "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifKannada-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-ExtraLight.ttf", "zippath": "NotoSerifKannada/full/ttf/NotoSerifKannada-ExtraLight.ttf" }, + "NotoSerifKannada-Light.ttf": { "axes": { "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifKannada-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-Light.ttf", "zippath": "NotoSerifKannada/full/ttf/NotoSerifKannada-Light.ttf" }, + "NotoSerifKannada-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifKannada-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-Medium.ttf", "zippath": "NotoSerifKannada/full/ttf/NotoSerifKannada-Medium.ttf" }, + "NotoSerifKannada-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifKannada-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-Regular.ttf", "zippath": "NotoSerifKannada/full/ttf/NotoSerifKannada-Regular.ttf" }, + "NotoSerifKannada-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifKannada-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-SemiBold.ttf", "zippath": "NotoSerifKannada/full/ttf/NotoSerifKannada-SemiBold.ttf" }, + "NotoSerifKannada-Thin.ttf": { "axes": { "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifKannada-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-Thin.ttf", "zippath": "NotoSerifKannada/full/ttf/NotoSerifKannada-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/kannada/releases/download/NotoSerifKannada-v2.004/NotoSerifKannada-v2.004.zip", + "siteurl": "https://github.com/notofonts/kannada/releases/tag/NotoSerifKannada-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSerifKannada" +}, +"notoserifkhitansmallscript": { + "defaults": { + "ttf": "NotoSerifKhitanSmallScript-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Khitan Small Script", + "familyid": "notoserifkhitansmallscript", + "files": { + "NotoSerifKhitanSmallScript-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifKhitanSmallScript-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhitanSmallScript/full/ttf/NotoSerifKhitanSmallScript-Regular.ttf", "zippath": "NotoSerifKhitanSmallScript/full/ttf/NotoSerifKhitanSmallScript-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/khitan-small-script/releases/download/NotoSerifKhitanSmallScript-v1.000/NotoSerifKhitanSmallScript-v1.000.zip", + "siteurl": "https://github.com/notofonts/khitan-small-script/releases/tag/NotoSerifKhitanSmallScript-v1.000", + "source": "Google", + "status": "current", + "version": "1.000", + "ziproot": "NotoSerifKhitanSmallScript" +}, +"notoserifkhmer": { + "defaults": { + "ttf": "NotoSerifKhmer-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Khmer", + "familyid": "notoserifkhmer", + "files": { + "NotoSerifKhmer-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifKhmer-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-Black.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-Black.ttf" }, + "NotoSerifKhmer-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifKhmer-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-Bold.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-Bold.ttf" }, + "NotoSerifKhmer-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifKhmer-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-Condensed.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-Condensed.ttf" }, + "NotoSerifKhmer-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifKhmer-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedBlack.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedBlack.ttf" }, + "NotoSerifKhmer-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifKhmer-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedBold.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedBold.ttf" }, + "NotoSerifKhmer-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifKhmer-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedExtraBold.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedExtraBold.ttf" }, + "NotoSerifKhmer-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifKhmer-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedExtraLight.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedExtraLight.ttf" }, + "NotoSerifKhmer-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifKhmer-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedLight.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedLight.ttf" }, + "NotoSerifKhmer-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifKhmer-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedMedium.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedMedium.ttf" }, + "NotoSerifKhmer-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifKhmer-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedSemiBold.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedSemiBold.ttf" }, + "NotoSerifKhmer-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifKhmer-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedThin.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedThin.ttf" }, + "NotoSerifKhmer-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifKhmer-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraBold.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraBold.ttf" }, + "NotoSerifKhmer-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifKhmer-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensed.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensed.ttf" }, + "NotoSerifKhmer-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifKhmer-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedBlack.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedBlack.ttf" }, + "NotoSerifKhmer-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifKhmer-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedBold.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedBold.ttf" }, + "NotoSerifKhmer-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifKhmer-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedExtraBold.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedExtraBold.ttf" }, + "NotoSerifKhmer-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifKhmer-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedExtraLight.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedExtraLight.ttf" }, + "NotoSerifKhmer-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifKhmer-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedLight.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedLight.ttf" }, + "NotoSerifKhmer-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifKhmer-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedMedium.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedMedium.ttf" }, + "NotoSerifKhmer-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifKhmer-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedSemiBold.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedSemiBold.ttf" }, + "NotoSerifKhmer-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifKhmer-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedThin.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedThin.ttf" }, + "NotoSerifKhmer-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifKhmer-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraLight.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraLight.ttf" }, + "NotoSerifKhmer-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifKhmer-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-Light.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-Light.ttf" }, + "NotoSerifKhmer-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifKhmer-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-Medium.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-Medium.ttf" }, + "NotoSerifKhmer-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifKhmer-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-Regular.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-Regular.ttf" }, + "NotoSerifKhmer-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifKhmer-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiBold.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiBold.ttf" }, + "NotoSerifKhmer-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifKhmer-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensed.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensed.ttf" }, + "NotoSerifKhmer-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifKhmer-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedBlack.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedBlack.ttf" }, + "NotoSerifKhmer-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifKhmer-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedBold.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedBold.ttf" }, + "NotoSerifKhmer-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifKhmer-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedExtraBold.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedExtraBold.ttf" }, + "NotoSerifKhmer-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifKhmer-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedExtraLight.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedExtraLight.ttf" }, + "NotoSerifKhmer-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifKhmer-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedLight.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedLight.ttf" }, + "NotoSerifKhmer-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifKhmer-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedMedium.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedMedium.ttf" }, + "NotoSerifKhmer-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifKhmer-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedSemiBold.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedSemiBold.ttf" }, + "NotoSerifKhmer-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifKhmer-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedThin.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedThin.ttf" }, + "NotoSerifKhmer-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifKhmer-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-Thin.ttf", "zippath": "NotoSerifKhmer/full/ttf/NotoSerifKhmer-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/khmer/releases/download/NotoSerifKhmer-v2.003/NotoSerifKhmer-v2.003.zip", + "siteurl": "https://github.com/notofonts/khmer/releases/tag/NotoSerifKhmer-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSerifKhmer" +}, +"notoserifkr": { + "distributable": true, + "family": "Noto Serif KR", + "familyid": "notoserifkr", + "license": "OFL", + "source": "Google", + "status": "current" +}, +"notoseriflao": { + "defaults": { + "ttf": "NotoSerifLao-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Lao", + "familyid": "notoseriflao", + "files": { + "NotoSerifLao-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifLao-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-Black.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-Black.ttf" }, + "NotoSerifLao-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifLao-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-Bold.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-Bold.ttf" }, + "NotoSerifLao-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifLao-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-Condensed.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-Condensed.ttf" }, + "NotoSerifLao-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifLao-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedBlack.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-CondensedBlack.ttf" }, + "NotoSerifLao-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifLao-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedBold.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-CondensedBold.ttf" }, + "NotoSerifLao-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifLao-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedExtraBold.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-CondensedExtraBold.ttf" }, + "NotoSerifLao-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifLao-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedExtraLight.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-CondensedExtraLight.ttf" }, + "NotoSerifLao-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifLao-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedLight.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-CondensedLight.ttf" }, + "NotoSerifLao-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifLao-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedMedium.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-CondensedMedium.ttf" }, + "NotoSerifLao-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifLao-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedSemiBold.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-CondensedSemiBold.ttf" }, + "NotoSerifLao-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifLao-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedThin.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-CondensedThin.ttf" }, + "NotoSerifLao-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifLao-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraBold.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-ExtraBold.ttf" }, + "NotoSerifLao-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifLao-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensed.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensed.ttf" }, + "NotoSerifLao-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifLao-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedBlack.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedBlack.ttf" }, + "NotoSerifLao-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifLao-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedBold.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedBold.ttf" }, + "NotoSerifLao-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifLao-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedExtraBold.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedExtraBold.ttf" }, + "NotoSerifLao-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifLao-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedExtraLight.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedExtraLight.ttf" }, + "NotoSerifLao-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifLao-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedLight.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedLight.ttf" }, + "NotoSerifLao-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifLao-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedMedium.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedMedium.ttf" }, + "NotoSerifLao-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifLao-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedSemiBold.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedSemiBold.ttf" }, + "NotoSerifLao-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifLao-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedThin.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedThin.ttf" }, + "NotoSerifLao-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifLao-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraLight.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-ExtraLight.ttf" }, + "NotoSerifLao-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifLao-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-Light.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-Light.ttf" }, + "NotoSerifLao-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifLao-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-Medium.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-Medium.ttf" }, + "NotoSerifLao-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifLao-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-Regular.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-Regular.ttf" }, + "NotoSerifLao-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifLao-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiBold.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-SemiBold.ttf" }, + "NotoSerifLao-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifLao-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensed.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensed.ttf" }, + "NotoSerifLao-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifLao-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedBlack.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedBlack.ttf" }, + "NotoSerifLao-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifLao-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedBold.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedBold.ttf" }, + "NotoSerifLao-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifLao-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedExtraBold.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedExtraBold.ttf" }, + "NotoSerifLao-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifLao-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedExtraLight.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedExtraLight.ttf" }, + "NotoSerifLao-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifLao-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedLight.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedLight.ttf" }, + "NotoSerifLao-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifLao-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedMedium.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedMedium.ttf" }, + "NotoSerifLao-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifLao-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedSemiBold.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedSemiBold.ttf" }, + "NotoSerifLao-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifLao-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedThin.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedThin.ttf" }, + "NotoSerifLao-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifLao-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifLao/full/ttf/NotoSerifLao-Thin.ttf", "zippath": "NotoSerifLao/full/ttf/NotoSerifLao-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/lao/releases/download/NotoSerifLao-v2.003/NotoSerifLao-v2.003.zip", + "siteurl": "https://github.com/notofonts/lao/releases/tag/NotoSerifLao-v2.003", + "source": "Google", + "status": "current", + "version": "2.003", + "ziproot": "NotoSerifLao" +}, +"notoserifmakasar": { + "defaults": { + "ttf": "NotoSerifMakasar-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Makasar", + "familyid": "notoserifmakasar", + "files": { + "NotoSerifMakasar-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifMakasar-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMakasar/full/ttf/NotoSerifMakasar-Regular.ttf", "zippath": "NotoSerifMakasar/full/ttf/NotoSerifMakasar-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/makasar/releases/download/NotoSerifMakasar-v1.001/NotoSerifMakasar-v1.001.zip", + "siteurl": "https://github.com/notofonts/makasar/releases/tag/NotoSerifMakasar-v1.001", + "source": "Google", + "status": "current", + "version": "1.001", + "ziproot": "NotoSerifMakasar" +}, +"notoserifmalayalam": { + "defaults": { + "ttf": "NotoSerifMalayalam-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Malayalam", + "familyid": "notoserifmalayalam", + "files": { + "NotoSerifMalayalam-Black.ttf": { "axes": { "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifMalayalam-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Black.ttf", "zippath": "NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Black.ttf" }, + "NotoSerifMalayalam-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifMalayalam-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Bold.ttf", "zippath": "NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Bold.ttf" }, + "NotoSerifMalayalam-ExtraBold.ttf": { "axes": { "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifMalayalam-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-ExtraBold.ttf", "zippath": "NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-ExtraBold.ttf" }, + "NotoSerifMalayalam-ExtraLight.ttf": { "axes": { "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifMalayalam-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-ExtraLight.ttf", "zippath": "NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-ExtraLight.ttf" }, + "NotoSerifMalayalam-Light.ttf": { "axes": { "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifMalayalam-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Light.ttf", "zippath": "NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Light.ttf" }, + "NotoSerifMalayalam-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifMalayalam-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Medium.ttf", "zippath": "NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Medium.ttf" }, + "NotoSerifMalayalam-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifMalayalam-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Regular.ttf", "zippath": "NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Regular.ttf" }, + "NotoSerifMalayalam-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifMalayalam-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-SemiBold.ttf", "zippath": "NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-SemiBold.ttf" }, + "NotoSerifMalayalam-Thin.ttf": { "axes": { "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifMalayalam-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Thin.ttf", "zippath": "NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/malayalam/releases/download/NotoSerifMalayalam-v2.104/NotoSerifMalayalam-v2.104.zip", + "siteurl": "https://github.com/notofonts/malayalam/releases/tag/NotoSerifMalayalam-v2.104", + "source": "Google", + "status": "current", + "version": "2.104", + "ziproot": "NotoSerifMalayalam" +}, +"notoserifmyanmar": { + "defaults": { + "ttf": "NotoSerifMyanmar-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Myanmar", + "familyid": "notoserifmyanmar", + "files": { + "NotoSerifMyanmar-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Black.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Black.ttf" }, + "NotoSerifMyanmar-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Bold.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Bold.ttf" }, + "NotoSerifMyanmar-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Condensed.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Condensed.ttf" }, + "NotoSerifMyanmar-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedBlack.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedBlack.ttf" }, + "NotoSerifMyanmar-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedBold.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedBold.ttf" }, + "NotoSerifMyanmar-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedExtraBold.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedExtraBold.ttf" }, + "NotoSerifMyanmar-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedExtraLight.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedExtraLight.ttf" }, + "NotoSerifMyanmar-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedLight.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedLight.ttf" }, + "NotoSerifMyanmar-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedMedium.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedMedium.ttf" }, + "NotoSerifMyanmar-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedSemiBold.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedSemiBold.ttf" }, + "NotoSerifMyanmar-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedThin.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedThin.ttf" }, + "NotoSerifMyanmar-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraBold.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraBold.ttf" }, + "NotoSerifMyanmar-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensed.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensed.ttf" }, + "NotoSerifMyanmar-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedBlack.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedBlack.ttf" }, + "NotoSerifMyanmar-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedBold.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedBold.ttf" }, + "NotoSerifMyanmar-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedExtraBold.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedExtraBold.ttf" }, + "NotoSerifMyanmar-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedExtraLight.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedExtraLight.ttf" }, + "NotoSerifMyanmar-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedLight.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedLight.ttf" }, + "NotoSerifMyanmar-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedMedium.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedMedium.ttf" }, + "NotoSerifMyanmar-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedSemiBold.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedSemiBold.ttf" }, + "NotoSerifMyanmar-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedThin.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedThin.ttf" }, + "NotoSerifMyanmar-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraLight.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraLight.ttf" }, + "NotoSerifMyanmar-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Light.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Light.ttf" }, + "NotoSerifMyanmar-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Medium.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Medium.ttf" }, + "NotoSerifMyanmar-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Regular.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Regular.ttf" }, + "NotoSerifMyanmar-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiBold.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiBold.ttf" }, + "NotoSerifMyanmar-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensed.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensed.ttf" }, + "NotoSerifMyanmar-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedBlack.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedBlack.ttf" }, + "NotoSerifMyanmar-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedBold.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedBold.ttf" }, + "NotoSerifMyanmar-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedExtraBold.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedExtraBold.ttf" }, + "NotoSerifMyanmar-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedExtraLight.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedExtraLight.ttf" }, + "NotoSerifMyanmar-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedLight.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedLight.ttf" }, + "NotoSerifMyanmar-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedMedium.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedMedium.ttf" }, + "NotoSerifMyanmar-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedSemiBold.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedSemiBold.ttf" }, + "NotoSerifMyanmar-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedThin.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedThin.ttf" }, + "NotoSerifMyanmar-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifMyanmar-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Thin.ttf", "zippath": "NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/myanmar/releases/download/NotoSerifMyanmar-v2.106/NotoSerifMyanmar-v2.106.zip", + "siteurl": "https://github.com/notofonts/myanmar/releases/tag/NotoSerifMyanmar-v2.106", + "source": "Google", + "status": "current", + "version": "2.106", + "ziproot": "NotoSerifMyanmar" +}, +"notoserifnphmong": { + "distributable": true, + "family": "Noto Serif NP Hmong", + "familyid": "notoserifnphmong", + "license": "OFL", + "source": "Google", + "status": "current" +}, +"notoserifolduyghur": { + "defaults": { + "ttf": "NotoSerifOldUyghur-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Old Uyghur", + "familyid": "notoserifolduyghur", + "files": { + "NotoSerifOldUyghur-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifOldUyghur-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifOldUyghur/full/ttf/NotoSerifOldUyghur-Regular.ttf", "zippath": "NotoSerifOldUyghur/full/ttf/NotoSerifOldUyghur-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/old-uyghur/releases/download/NotoSerifOldUyghur-v1.003/NotoSerifOldUyghur-v1.003.zip", + "siteurl": "https://github.com/notofonts/old-uyghur/releases/tag/NotoSerifOldUyghur-v1.003", + "source": "Google", + "status": "current", + "version": "1.003", + "ziproot": "NotoSerifOldUyghur" +}, +"notoserifsc": { + "distributable": true, + "family": "Noto Serif SC", + "familyid": "notoserifsc", + "license": "OFL", + "source": "Google", + "status": "current" +}, +"notoserifsinhala": { + "defaults": { + "ttf": "NotoSerifSinhala-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Sinhala", + "familyid": "notoserifsinhala", + "files": { + "NotoSerifSinhala-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifSinhala-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-Black.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-Black.ttf" }, + "NotoSerifSinhala-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifSinhala-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-Bold.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-Bold.ttf" }, + "NotoSerifSinhala-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifSinhala-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-Condensed.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-Condensed.ttf" }, + "NotoSerifSinhala-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifSinhala-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedBlack.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedBlack.ttf" }, + "NotoSerifSinhala-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifSinhala-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedBold.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedBold.ttf" }, + "NotoSerifSinhala-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifSinhala-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedExtraBold.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedExtraBold.ttf" }, + "NotoSerifSinhala-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifSinhala-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedExtraLight.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedExtraLight.ttf" }, + "NotoSerifSinhala-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifSinhala-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedLight.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedLight.ttf" }, + "NotoSerifSinhala-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifSinhala-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedMedium.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedMedium.ttf" }, + "NotoSerifSinhala-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifSinhala-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedSemiBold.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedSemiBold.ttf" }, + "NotoSerifSinhala-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifSinhala-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedThin.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedThin.ttf" }, + "NotoSerifSinhala-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifSinhala-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraBold.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraBold.ttf" }, + "NotoSerifSinhala-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifSinhala-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensed.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensed.ttf" }, + "NotoSerifSinhala-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifSinhala-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedBlack.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedBlack.ttf" }, + "NotoSerifSinhala-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifSinhala-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedBold.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedBold.ttf" }, + "NotoSerifSinhala-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifSinhala-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedExtraBold.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedExtraBold.ttf" }, + "NotoSerifSinhala-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifSinhala-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedExtraLight.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedExtraLight.ttf" }, + "NotoSerifSinhala-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifSinhala-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedLight.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedLight.ttf" }, + "NotoSerifSinhala-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifSinhala-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedMedium.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedMedium.ttf" }, + "NotoSerifSinhala-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifSinhala-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedSemiBold.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedSemiBold.ttf" }, + "NotoSerifSinhala-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifSinhala-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedThin.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedThin.ttf" }, + "NotoSerifSinhala-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifSinhala-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraLight.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraLight.ttf" }, + "NotoSerifSinhala-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifSinhala-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-Light.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-Light.ttf" }, + "NotoSerifSinhala-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifSinhala-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-Medium.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-Medium.ttf" }, + "NotoSerifSinhala-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifSinhala-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-Regular.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-Regular.ttf" }, + "NotoSerifSinhala-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifSinhala-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiBold.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiBold.ttf" }, + "NotoSerifSinhala-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifSinhala-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensed.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensed.ttf" }, + "NotoSerifSinhala-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifSinhala-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedBlack.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedBlack.ttf" }, + "NotoSerifSinhala-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifSinhala-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedBold.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedBold.ttf" }, + "NotoSerifSinhala-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifSinhala-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedExtraBold.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedExtraBold.ttf" }, + "NotoSerifSinhala-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifSinhala-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedExtraLight.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedExtraLight.ttf" }, + "NotoSerifSinhala-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifSinhala-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedLight.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedLight.ttf" }, + "NotoSerifSinhala-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifSinhala-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedMedium.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedMedium.ttf" }, + "NotoSerifSinhala-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifSinhala-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedSemiBold.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedSemiBold.ttf" }, + "NotoSerifSinhala-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifSinhala-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedThin.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedThin.ttf" }, + "NotoSerifSinhala-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifSinhala-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-Thin.ttf", "zippath": "NotoSerifSinhala/full/ttf/NotoSerifSinhala-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/sinhala/releases/download/NotoSerifSinhala-v2.007/NotoSerifSinhala-v2.007.zip", + "siteurl": "https://github.com/notofonts/sinhala/releases/tag/NotoSerifSinhala-v2.007", + "source": "Google", + "status": "current", + "version": "2.007", + "ziproot": "NotoSerifSinhala" +}, +"notoseriftamil": { + "defaults": { + "ttf": "NotoSerifTamil-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Tamil", + "familyid": "notoseriftamil", + "files": { + "NotoSerifTamil-Black.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifTamil-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Black.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-Black.ttf" }, + "NotoSerifTamil-BlackItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifTamil-BlackItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-BlackItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-BlackItalic.ttf" }, + "NotoSerifTamil-Bold.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifTamil-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Bold.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-Bold.ttf" }, + "NotoSerifTamil-BoldItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifTamil-BoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-BoldItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-BoldItalic.ttf" }, + "NotoSerifTamil-Condensed.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifTamil-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Condensed.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-Condensed.ttf" }, + "NotoSerifTamil-CondensedBlack.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedBlack.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedBlack.ttf" }, + "NotoSerifTamil-CondensedBlackItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedBlackItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedBlackItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedBlackItalic.ttf" }, + "NotoSerifTamil-CondensedBold.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedBold.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedBold.ttf" }, + "NotoSerifTamil-CondensedBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedBoldItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedBoldItalic.ttf" }, + "NotoSerifTamil-CondensedExtraBold.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedExtraBold.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedExtraBold.ttf" }, + "NotoSerifTamil-CondensedExtraBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedExtraBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedExtraBoldItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedExtraBoldItalic.ttf" }, + "NotoSerifTamil-CondensedExtraLight.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedExtraLight.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedExtraLight.ttf" }, + "NotoSerifTamil-CondensedExtraLightItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedExtraLightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedExtraLightItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedExtraLightItalic.ttf" }, + "NotoSerifTamil-CondensedItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedItalic.ttf" }, + "NotoSerifTamil-CondensedLight.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedLight.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedLight.ttf" }, + "NotoSerifTamil-CondensedLightItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedLightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedLightItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedLightItalic.ttf" }, + "NotoSerifTamil-CondensedMedium.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedMedium.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedMedium.ttf" }, + "NotoSerifTamil-CondensedMediumItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedMediumItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedMediumItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedMediumItalic.ttf" }, + "NotoSerifTamil-CondensedSemiBold.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedSemiBold.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedSemiBold.ttf" }, + "NotoSerifTamil-CondensedSemiBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedSemiBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedSemiBoldItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedSemiBoldItalic.ttf" }, + "NotoSerifTamil-CondensedThin.ttf": { "axes": { "ital": 0, "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedThin.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedThin.ttf" }, + "NotoSerifTamil-CondensedThinItalic.ttf": { "axes": { "ital": 1, "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifTamil-CondensedThinItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedThinItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedThinItalic.ttf" }, + "NotoSerifTamil-ExtraBold.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraBold.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraBold.ttf" }, + "NotoSerifTamil-ExtraBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraBoldItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraBoldItalic.ttf" }, + "NotoSerifTamil-ExtraCondensed.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensed.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensed.ttf" }, + "NotoSerifTamil-ExtraCondensedBlack.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedBlack.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedBlack.ttf" }, + "NotoSerifTamil-ExtraCondensedBlackItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedBlackItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedBlackItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedBlackItalic.ttf" }, + "NotoSerifTamil-ExtraCondensedBold.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedBold.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedBold.ttf" }, + "NotoSerifTamil-ExtraCondensedBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedBoldItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedBoldItalic.ttf" }, + "NotoSerifTamil-ExtraCondensedExtraBold.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedExtraBold.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedExtraBold.ttf" }, + "NotoSerifTamil-ExtraCondensedExtraBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedExtraBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedExtraBoldItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedExtraBoldItalic.ttf" }, + "NotoSerifTamil-ExtraCondensedExtraLight.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedExtraLight.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedExtraLight.ttf" }, + "NotoSerifTamil-ExtraCondensedExtraLightItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedExtraLightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedExtraLightItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedExtraLightItalic.ttf" }, + "NotoSerifTamil-ExtraCondensedItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedItalic.ttf" }, + "NotoSerifTamil-ExtraCondensedLight.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedLight.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedLight.ttf" }, + "NotoSerifTamil-ExtraCondensedLightItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedLightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedLightItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedLightItalic.ttf" }, + "NotoSerifTamil-ExtraCondensedMedium.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedMedium.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedMedium.ttf" }, + "NotoSerifTamil-ExtraCondensedMediumItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedMediumItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedMediumItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedMediumItalic.ttf" }, + "NotoSerifTamil-ExtraCondensedSemiBold.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedSemiBold.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedSemiBold.ttf" }, + "NotoSerifTamil-ExtraCondensedSemiBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedSemiBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedSemiBoldItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedSemiBoldItalic.ttf" }, + "NotoSerifTamil-ExtraCondensedThin.ttf": { "axes": { "ital": 0, "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedThin.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedThin.ttf" }, + "NotoSerifTamil-ExtraCondensedThinItalic.ttf": { "axes": { "ital": 1, "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraCondensedThinItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedThinItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedThinItalic.ttf" }, + "NotoSerifTamil-ExtraLight.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraLight.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraLight.ttf" }, + "NotoSerifTamil-ExtraLightItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifTamil-ExtraLightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraLightItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraLightItalic.ttf" }, + "NotoSerifTamil-Italic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifTamil-Italic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Italic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-Italic.ttf" }, + "NotoSerifTamil-Light.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifTamil-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Light.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-Light.ttf" }, + "NotoSerifTamil-LightItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifTamil-LightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-LightItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-LightItalic.ttf" }, + "NotoSerifTamil-Medium.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifTamil-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Medium.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-Medium.ttf" }, + "NotoSerifTamil-MediumItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifTamil-MediumItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-MediumItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-MediumItalic.ttf" }, + "NotoSerifTamil-Regular.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifTamil-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Regular.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-Regular.ttf" }, + "NotoSerifTamil-SemiBold.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiBold.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiBold.ttf" }, + "NotoSerifTamil-SemiBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiBoldItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiBoldItalic.ttf" }, + "NotoSerifTamil-SemiCondensed.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensed.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensed.ttf" }, + "NotoSerifTamil-SemiCondensedBlack.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedBlack.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedBlack.ttf" }, + "NotoSerifTamil-SemiCondensedBlackItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedBlackItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedBlackItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedBlackItalic.ttf" }, + "NotoSerifTamil-SemiCondensedBold.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedBold.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedBold.ttf" }, + "NotoSerifTamil-SemiCondensedBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedBoldItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedBoldItalic.ttf" }, + "NotoSerifTamil-SemiCondensedExtraBold.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedExtraBold.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedExtraBold.ttf" }, + "NotoSerifTamil-SemiCondensedExtraBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedExtraBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedExtraBoldItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedExtraBoldItalic.ttf" }, + "NotoSerifTamil-SemiCondensedExtraLight.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedExtraLight.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedExtraLight.ttf" }, + "NotoSerifTamil-SemiCondensedExtraLightItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedExtraLightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedExtraLightItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedExtraLightItalic.ttf" }, + "NotoSerifTamil-SemiCondensedItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedItalic.ttf" }, + "NotoSerifTamil-SemiCondensedLight.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedLight.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedLight.ttf" }, + "NotoSerifTamil-SemiCondensedLightItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedLightItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedLightItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedLightItalic.ttf" }, + "NotoSerifTamil-SemiCondensedMedium.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedMedium.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedMedium.ttf" }, + "NotoSerifTamil-SemiCondensedMediumItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedMediumItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedMediumItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedMediumItalic.ttf" }, + "NotoSerifTamil-SemiCondensedSemiBold.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedSemiBold.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedSemiBold.ttf" }, + "NotoSerifTamil-SemiCondensedSemiBoldItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedSemiBoldItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedSemiBoldItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedSemiBoldItalic.ttf" }, + "NotoSerifTamil-SemiCondensedThin.ttf": { "axes": { "ital": 0, "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedThin.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedThin.ttf" }, + "NotoSerifTamil-SemiCondensedThinItalic.ttf": { "axes": { "ital": 1, "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifTamil-SemiCondensedThinItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedThinItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedThinItalic.ttf" }, + "NotoSerifTamil-Thin.ttf": { "axes": { "ital": 0, "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifTamil-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Thin.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-Thin.ttf" }, + "NotoSerifTamil-ThinItalic.ttf": { "axes": { "ital": 1, "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifTamil-ThinItalic.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ThinItalic.ttf", "zippath": "NotoSerifTamil/full/ttf/NotoSerifTamil-ThinItalic.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/tamil/releases/download/NotoSerifTamil-v2.004/NotoSerifTamil-v2.004.zip", + "siteurl": "https://github.com/notofonts/tamil/releases/tag/NotoSerifTamil-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSerifTamil" +}, +"notoseriftangut": { + "defaults": { + "ttf": "NotoSerifTangut-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Tangut", + "familyid": "notoseriftangut", + "files": { + "NotoSerifTangut-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifTangut-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTangut/full/ttf/NotoSerifTangut-Regular.ttf", "zippath": "NotoSerifTangut/full/ttf/NotoSerifTangut-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/tangut/releases/download/NotoSerifTangut-v2.169/NotoSerifTangut-v2.169.zip", + "siteurl": "https://github.com/notofonts/tangut/releases/tag/NotoSerifTangut-v2.169", + "source": "Google", + "status": "current", + "version": "2.169", + "ziproot": "NotoSerifTangut" +}, +"notoseriftc": { + "distributable": true, + "family": "Noto Serif TC", + "familyid": "notoseriftc", + "license": "OFL", + "source": "Google", + "status": "current" +}, +"notoseriftelugu": { + "defaults": { + "ttf": "NotoSerifTelugu-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Telugu", + "familyid": "notoseriftelugu", + "files": { + "NotoSerifTelugu-Black.ttf": { "axes": { "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifTelugu-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-Black.ttf", "zippath": "NotoSerifTelugu/full/ttf/NotoSerifTelugu-Black.ttf" }, + "NotoSerifTelugu-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifTelugu-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-Bold.ttf", "zippath": "NotoSerifTelugu/full/ttf/NotoSerifTelugu-Bold.ttf" }, + "NotoSerifTelugu-ExtraBold.ttf": { "axes": { "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifTelugu-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-ExtraBold.ttf", "zippath": "NotoSerifTelugu/full/ttf/NotoSerifTelugu-ExtraBold.ttf" }, + "NotoSerifTelugu-ExtraLight.ttf": { "axes": { "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifTelugu-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-ExtraLight.ttf", "zippath": "NotoSerifTelugu/full/ttf/NotoSerifTelugu-ExtraLight.ttf" }, + "NotoSerifTelugu-Light.ttf": { "axes": { "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifTelugu-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-Light.ttf", "zippath": "NotoSerifTelugu/full/ttf/NotoSerifTelugu-Light.ttf" }, + "NotoSerifTelugu-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifTelugu-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-Medium.ttf", "zippath": "NotoSerifTelugu/full/ttf/NotoSerifTelugu-Medium.ttf" }, + "NotoSerifTelugu-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifTelugu-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-Regular.ttf", "zippath": "NotoSerifTelugu/full/ttf/NotoSerifTelugu-Regular.ttf" }, + "NotoSerifTelugu-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifTelugu-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-SemiBold.ttf", "zippath": "NotoSerifTelugu/full/ttf/NotoSerifTelugu-SemiBold.ttf" }, + "NotoSerifTelugu-Thin.ttf": { "axes": { "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifTelugu-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-Thin.ttf", "zippath": "NotoSerifTelugu/full/ttf/NotoSerifTelugu-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/telugu/releases/download/NotoSerifTelugu-v2.004/NotoSerifTelugu-v2.004.zip", + "siteurl": "https://github.com/notofonts/telugu/releases/tag/NotoSerifTelugu-v2.004", + "source": "Google", + "status": "current", + "version": "2.004", + "ziproot": "NotoSerifTelugu" +}, +"notoserifthai": { + "defaults": { + "ttf": "NotoSerifThai-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Thai", + "familyid": "notoserifthai", + "files": { + "NotoSerifThai-Black.ttf": { "axes": { "wdth": 100, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifThai-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-Black.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-Black.ttf" }, + "NotoSerifThai-Bold.ttf": { "axes": { "wdth": 100, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifThai-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-Bold.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-Bold.ttf" }, + "NotoSerifThai-Condensed.ttf": { "axes": { "wdth": 75, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifThai-Condensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-Condensed.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-Condensed.ttf" }, + "NotoSerifThai-CondensedBlack.ttf": { "axes": { "wdth": 75, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifThai-CondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedBlack.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-CondensedBlack.ttf" }, + "NotoSerifThai-CondensedBold.ttf": { "axes": { "wdth": 75, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifThai-CondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedBold.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-CondensedBold.ttf" }, + "NotoSerifThai-CondensedExtraBold.ttf": { "axes": { "wdth": 75, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifThai-CondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedExtraBold.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-CondensedExtraBold.ttf" }, + "NotoSerifThai-CondensedExtraLight.ttf": { "axes": { "wdth": 75, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifThai-CondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedExtraLight.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-CondensedExtraLight.ttf" }, + "NotoSerifThai-CondensedLight.ttf": { "axes": { "wdth": 75, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifThai-CondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedLight.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-CondensedLight.ttf" }, + "NotoSerifThai-CondensedMedium.ttf": { "axes": { "wdth": 75, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifThai-CondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedMedium.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-CondensedMedium.ttf" }, + "NotoSerifThai-CondensedSemiBold.ttf": { "axes": { "wdth": 75, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifThai-CondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedSemiBold.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-CondensedSemiBold.ttf" }, + "NotoSerifThai-CondensedThin.ttf": { "axes": { "wdth": 75, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifThai-CondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedThin.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-CondensedThin.ttf" }, + "NotoSerifThai-ExtraBold.ttf": { "axes": { "wdth": 100, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifThai-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraBold.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-ExtraBold.ttf" }, + "NotoSerifThai-ExtraCondensed.ttf": { "axes": { "wdth": 62.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifThai-ExtraCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensed.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensed.ttf" }, + "NotoSerifThai-ExtraCondensedBlack.ttf": { "axes": { "wdth": 62.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifThai-ExtraCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedBlack.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedBlack.ttf" }, + "NotoSerifThai-ExtraCondensedBold.ttf": { "axes": { "wdth": 62.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifThai-ExtraCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedBold.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedBold.ttf" }, + "NotoSerifThai-ExtraCondensedExtraBold.ttf": { "axes": { "wdth": 62.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifThai-ExtraCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedExtraBold.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedExtraBold.ttf" }, + "NotoSerifThai-ExtraCondensedExtraLight.ttf": { "axes": { "wdth": 62.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifThai-ExtraCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedExtraLight.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedExtraLight.ttf" }, + "NotoSerifThai-ExtraCondensedLight.ttf": { "axes": { "wdth": 62.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifThai-ExtraCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedLight.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedLight.ttf" }, + "NotoSerifThai-ExtraCondensedMedium.ttf": { "axes": { "wdth": 62.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifThai-ExtraCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedMedium.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedMedium.ttf" }, + "NotoSerifThai-ExtraCondensedSemiBold.ttf": { "axes": { "wdth": 62.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifThai-ExtraCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedSemiBold.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedSemiBold.ttf" }, + "NotoSerifThai-ExtraCondensedThin.ttf": { "axes": { "wdth": 62.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifThai-ExtraCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedThin.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedThin.ttf" }, + "NotoSerifThai-ExtraLight.ttf": { "axes": { "wdth": 100, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifThai-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraLight.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-ExtraLight.ttf" }, + "NotoSerifThai-Light.ttf": { "axes": { "wdth": 100, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifThai-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-Light.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-Light.ttf" }, + "NotoSerifThai-Medium.ttf": { "axes": { "wdth": 100, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifThai-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-Medium.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-Medium.ttf" }, + "NotoSerifThai-Regular.ttf": { "axes": { "wdth": 100, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifThai-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-Regular.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-Regular.ttf" }, + "NotoSerifThai-SemiBold.ttf": { "axes": { "wdth": 100, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifThai-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiBold.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-SemiBold.ttf" }, + "NotoSerifThai-SemiCondensed.ttf": { "axes": { "wdth": 87.5, "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifThai-SemiCondensed.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensed.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensed.ttf" }, + "NotoSerifThai-SemiCondensedBlack.ttf": { "axes": { "wdth": 87.5, "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifThai-SemiCondensedBlack.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedBlack.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedBlack.ttf" }, + "NotoSerifThai-SemiCondensedBold.ttf": { "axes": { "wdth": 87.5, "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifThai-SemiCondensedBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedBold.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedBold.ttf" }, + "NotoSerifThai-SemiCondensedExtraBold.ttf": { "axes": { "wdth": 87.5, "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifThai-SemiCondensedExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedExtraBold.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedExtraBold.ttf" }, + "NotoSerifThai-SemiCondensedExtraLight.ttf": { "axes": { "wdth": 87.5, "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifThai-SemiCondensedExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedExtraLight.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedExtraLight.ttf" }, + "NotoSerifThai-SemiCondensedLight.ttf": { "axes": { "wdth": 87.5, "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifThai-SemiCondensedLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedLight.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedLight.ttf" }, + "NotoSerifThai-SemiCondensedMedium.ttf": { "axes": { "wdth": 87.5, "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifThai-SemiCondensedMedium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedMedium.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedMedium.ttf" }, + "NotoSerifThai-SemiCondensedSemiBold.ttf": { "axes": { "wdth": 87.5, "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifThai-SemiCondensedSemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedSemiBold.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedSemiBold.ttf" }, + "NotoSerifThai-SemiCondensedThin.ttf": { "axes": { "wdth": 87.5, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifThai-SemiCondensedThin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedThin.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedThin.ttf" }, + "NotoSerifThai-Thin.ttf": { "axes": { "wdth": 100, "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifThai-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifThai/full/ttf/NotoSerifThai-Thin.ttf", "zippath": "NotoSerifThai/full/ttf/NotoSerifThai-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/thai/releases/download/NotoSerifThai-v2.001/NotoSerifThai-v2.001.zip", + "siteurl": "https://github.com/notofonts/thai/releases/tag/NotoSerifThai-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSerifThai" +}, +"notoseriftibetan": { + "defaults": { + "ttf": "NotoSerifTibetan-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Tibetan", + "familyid": "notoseriftibetan", + "files": { + "NotoSerifTibetan-Black.ttf": { "axes": { "wght": 900.0 }, "packagepath": "full/ttf/NotoSerifTibetan-Black.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-Black.ttf", "zippath": "NotoSerifTibetan/full/ttf/NotoSerifTibetan-Black.ttf" }, + "NotoSerifTibetan-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifTibetan-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-Bold.ttf", "zippath": "NotoSerifTibetan/full/ttf/NotoSerifTibetan-Bold.ttf" }, + "NotoSerifTibetan-ExtraBold.ttf": { "axes": { "wght": 800.0 }, "packagepath": "full/ttf/NotoSerifTibetan-ExtraBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-ExtraBold.ttf", "zippath": "NotoSerifTibetan/full/ttf/NotoSerifTibetan-ExtraBold.ttf" }, + "NotoSerifTibetan-ExtraLight.ttf": { "axes": { "wght": 200.0 }, "packagepath": "full/ttf/NotoSerifTibetan-ExtraLight.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-ExtraLight.ttf", "zippath": "NotoSerifTibetan/full/ttf/NotoSerifTibetan-ExtraLight.ttf" }, + "NotoSerifTibetan-Light.ttf": { "axes": { "wght": 300.0 }, "packagepath": "full/ttf/NotoSerifTibetan-Light.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-Light.ttf", "zippath": "NotoSerifTibetan/full/ttf/NotoSerifTibetan-Light.ttf" }, + "NotoSerifTibetan-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifTibetan-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-Medium.ttf", "zippath": "NotoSerifTibetan/full/ttf/NotoSerifTibetan-Medium.ttf" }, + "NotoSerifTibetan-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifTibetan-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-Regular.ttf", "zippath": "NotoSerifTibetan/full/ttf/NotoSerifTibetan-Regular.ttf" }, + "NotoSerifTibetan-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifTibetan-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-SemiBold.ttf", "zippath": "NotoSerifTibetan/full/ttf/NotoSerifTibetan-SemiBold.ttf" }, + "NotoSerifTibetan-Thin.ttf": { "axes": { "wght": 100.0 }, "packagepath": "full/ttf/NotoSerifTibetan-Thin.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-Thin.ttf", "zippath": "NotoSerifTibetan/full/ttf/NotoSerifTibetan-Thin.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/tibetan/releases/download/NotoSerifTibetan-v2.103/NotoSerifTibetan-v2.103.zip", + "siteurl": "https://github.com/notofonts/tibetan/releases/tag/NotoSerifTibetan-v2.103", + "source": "Google", + "status": "current", + "version": "2.103", + "ziproot": "NotoSerifTibetan" +}, +"notoseriftoto": { + "defaults": { + "ttf": "NotoSerifToto-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Toto", + "familyid": "notoseriftoto", + "files": { + "NotoSerifToto-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifToto-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifToto/full/ttf/NotoSerifToto-Bold.ttf", "zippath": "NotoSerifToto/full/ttf/NotoSerifToto-Bold.ttf" }, + "NotoSerifToto-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifToto-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifToto/full/ttf/NotoSerifToto-Medium.ttf", "zippath": "NotoSerifToto/full/ttf/NotoSerifToto-Medium.ttf" }, + "NotoSerifToto-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifToto-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifToto/full/ttf/NotoSerifToto-Regular.ttf", "zippath": "NotoSerifToto/full/ttf/NotoSerifToto-Regular.ttf" }, + "NotoSerifToto-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifToto-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifToto/full/ttf/NotoSerifToto-SemiBold.ttf", "zippath": "NotoSerifToto/full/ttf/NotoSerifToto-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/toto/releases/download/NotoSerifToto-v2.001/NotoSerifToto-v2.001.zip", + "siteurl": "https://github.com/notofonts/toto/releases/tag/NotoSerifToto-v2.001", + "source": "Google", + "status": "current", + "version": "2.001", + "ziproot": "NotoSerifToto" +}, +"notoserifyezidi": { + "defaults": { + "ttf": "NotoSerifYezidi-Regular.ttf" + }, + "distributable": true, + "family": "Noto Serif Yezidi", + "familyid": "notoserifyezidi", + "files": { + "NotoSerifYezidi-Bold.ttf": { "axes": { "wght": 700.0 }, "packagepath": "full/ttf/NotoSerifYezidi-Bold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifYezidi/full/ttf/NotoSerifYezidi-Bold.ttf", "zippath": "NotoSerifYezidi/full/ttf/NotoSerifYezidi-Bold.ttf" }, + "NotoSerifYezidi-Medium.ttf": { "axes": { "wght": 500.0 }, "packagepath": "full/ttf/NotoSerifYezidi-Medium.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifYezidi/full/ttf/NotoSerifYezidi-Medium.ttf", "zippath": "NotoSerifYezidi/full/ttf/NotoSerifYezidi-Medium.ttf" }, + "NotoSerifYezidi-Regular.ttf": { "axes": { "wght": 400.0 }, "packagepath": "full/ttf/NotoSerifYezidi-Regular.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifYezidi/full/ttf/NotoSerifYezidi-Regular.ttf", "zippath": "NotoSerifYezidi/full/ttf/NotoSerifYezidi-Regular.ttf" }, + "NotoSerifYezidi-SemiBold.ttf": { "axes": { "wght": 600.0 }, "packagepath": "full/ttf/NotoSerifYezidi-SemiBold.ttf", "url": "https://github.com/notofonts/notofonts.github.io/raw/main/fonts/NotoSerifYezidi/full/ttf/NotoSerifYezidi-SemiBold.ttf", "zippath": "NotoSerifYezidi/full/ttf/NotoSerifYezidi-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/notofonts/yezidi/releases/download/NotoSerifYezidi-v1.001/NotoSerifYezidi-v1.001.zip", + "siteurl": "https://github.com/notofonts/yezidi/releases/tag/NotoSerifYezidi-v1.001", + "source": "Google", + "status": "current", + "version": "1.001", + "ziproot": "NotoSerifYezidi" +}, +"nuosusil": { + "defaults": { + "ttf": "NuosuSIL-Regular.ttf", + "woff": "NuosuSIL-Regular.woff", + "woff2": "NuosuSIL-Regular.woff2" + }, + "distributable": true, + "family": "Nuosu SIL", + "familyid": "nuosusil", + "files": { + "NuosuSIL-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/nuosusil/NuosuSIL-Regular.ttf", "packagepath": "NuosuSIL-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/nuosusil/NuosuSIL-Regular.ttf", "zippath": "NuosuSIL-2.300/NuosuSIL-Regular.ttf" }, + "NuosuSIL-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/nuosusil/web/NuosuSIL-Regular.woff", "packagepath": "web/NuosuSIL-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/nuosusil/web/NuosuSIL-Regular.woff", "zippath": "NuosuSIL-2.300/web/NuosuSIL-Regular.woff" }, + "NuosuSIL-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/nuosusil/web/NuosuSIL-Regular.woff2", "packagepath": "web/NuosuSIL-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/nuosusil/web/NuosuSIL-Regular.woff2", "zippath": "NuosuSIL-2.300/web/NuosuSIL-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/nuosu/NuosuSIL-2.300.zip", + "siteurl": "https://software.sil.org/nuosu/", + "source": "SIL", + "status": "current", + "version": "2.300", + "ziproot": "NuosuSIL-2.300" +}, +"padauk": { + "defaults": { + "ttf": "Padauk-Regular.ttf", + "woff": "Padauk-Regular.woff", + "woff2": "Padauk-Regular.woff2" + }, + "distributable": true, + "family": "Padauk", + "familyid": "padauk", + "files": { + "Padauk-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/padauk/Padauk-Bold.ttf", "packagepath": "Padauk-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/padauk/Padauk-Bold.ttf", "zippath": "Padauk-5.001/Padauk-Bold.ttf" }, + "Padauk-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/padauk/web/Padauk-Bold.woff", "packagepath": "web/Padauk-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/padauk/web/Padauk-Bold.woff", "zippath": "Padauk-5.001/web/Padauk-Bold.woff" }, + "Padauk-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/padauk/web/Padauk-Bold.woff2", "packagepath": "web/Padauk-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/padauk/web/Padauk-Bold.woff2", "zippath": "Padauk-5.001/web/Padauk-Bold.woff2" }, + "Padauk-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/padauk/Padauk-Regular.ttf", "packagepath": "Padauk-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/padauk/Padauk-Regular.ttf", "zippath": "Padauk-5.001/Padauk-Regular.ttf" }, + "Padauk-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/padauk/web/Padauk-Regular.woff", "packagepath": "web/Padauk-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/padauk/web/Padauk-Regular.woff", "zippath": "Padauk-5.001/web/Padauk-Regular.woff" }, + "Padauk-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/padauk/web/Padauk-Regular.woff2", "packagepath": "web/Padauk-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/padauk/web/Padauk-Regular.woff2", "zippath": "Padauk-5.001/web/Padauk-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/padauk/Padauk-5.001.zip", + "siteurl": "https://software.sil.org/padauk/", + "source": "SIL", + "status": "current", + "version": "5.001", + "ziproot": "Padauk-5.001" +}, +"padaukbook": { + "defaults": { + "ttf": "PadaukBook-Regular.ttf", + "woff": "PadaukBook-Regular.woff", + "woff2": "PadaukBook-Regular.woff2" + }, + "distributable": true, + "family": "Padauk Book", + "familyid": "padaukbook", + "files": { + "PadaukBook-Bold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/padaukbook/PadaukBook-Bold.ttf", "packagepath": "PadaukBook-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/padaukbook/PadaukBook-Bold.ttf", "zippath": "Padauk-5.001/PadaukBook-Bold.ttf" }, + "PadaukBook-Bold.woff": { "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/padaukbook/web/PadaukBook-Bold.woff", "packagepath": "web/PadaukBook-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/padaukbook/web/PadaukBook-Bold.woff", "zippath": "Padauk-5.001/web/PadaukBook-Bold.woff" }, + "PadaukBook-Bold.woff2": { "axes": { "ital": 0, "wght": 800.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/padaukbook/web/PadaukBook-Bold.woff2", "packagepath": "web/PadaukBook-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/padaukbook/web/PadaukBook-Bold.woff2", "zippath": "Padauk-5.001/web/PadaukBook-Bold.woff2" }, + "PadaukBook-Regular.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/padaukbook/PadaukBook-Regular.ttf", "packagepath": "PadaukBook-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/padaukbook/PadaukBook-Regular.ttf", "zippath": "Padauk-5.001/PadaukBook-Regular.ttf" }, + "PadaukBook-Regular.woff": { "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/padaukbook/web/PadaukBook-Regular.woff", "packagepath": "web/PadaukBook-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/padaukbook/web/PadaukBook-Regular.woff", "zippath": "Padauk-5.001/web/PadaukBook-Regular.woff" }, + "PadaukBook-Regular.woff2": { "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/padaukbook/web/PadaukBook-Regular.woff2", "packagepath": "web/PadaukBook-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/padaukbook/web/PadaukBook-Regular.woff2", "zippath": "Padauk-5.001/web/PadaukBook-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/padauk/Padauk-5.001.zip", + "siteurl": "https://software.sil.org/padauk/", + "source": "SIL", + "status": "current", + "version": "5.001", + "ziproot": "Padauk-5.001" +}, +"payaplanna": { + "defaults": { + "ttf": "PayapLanna-Regular.ttf", + "woff": "PayapLanna-Regular.woff", + "woff2": "PayapLanna-Regular.woff2" + }, + "distributable": true, + "family": "Payap Lanna", + "familyid": "payaplanna", + "files": { + "PayapLanna-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/payaplanna/PayapLanna-Bold.ttf", "packagepath": "PayapLanna-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/payaplanna/PayapLanna-Bold.ttf", "zippath": "PayapLanna-1.000/PayapLanna-Bold.ttf" }, + "PayapLanna-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/payaplanna/web/PayapLanna-Bold.woff", "packagepath": "web/PayapLanna-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/payaplanna/web/PayapLanna-Bold.woff", "zippath": "PayapLanna-1.000/web/PayapLanna-Bold.woff" }, + "PayapLanna-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/payaplanna/web/PayapLanna-Bold.woff2", "packagepath": "web/PayapLanna-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/payaplanna/web/PayapLanna-Bold.woff2", "zippath": "PayapLanna-1.000/web/PayapLanna-Bold.woff2" }, + "PayapLanna-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/payaplanna/PayapLanna-Regular.ttf", "packagepath": "PayapLanna-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/payaplanna/PayapLanna-Regular.ttf", "zippath": "PayapLanna-1.000/PayapLanna-Regular.ttf" }, + "PayapLanna-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/payaplanna/web/PayapLanna-Regular.woff", "packagepath": "web/PayapLanna-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/payaplanna/web/PayapLanna-Regular.woff", "zippath": "PayapLanna-1.000/web/PayapLanna-Regular.woff" }, + "PayapLanna-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/payaplanna/web/PayapLanna-Regular.woff2", "packagepath": "web/PayapLanna-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/payaplanna/web/PayapLanna-Regular.woff2", "zippath": "PayapLanna-1.000/web/PayapLanna-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/payaplanna/PayapLanna-1.000.zip", + "siteurl": "https://software.sil.org/payaplanna/", + "source": "SIL", + "status": "current", + "version": "1.000", + "ziproot": "PayapLanna-1.000" +}, +"ponnala": { + "distributable": true, + "fallback": "suranna", + "family": "Ponnala", + "familyid": "ponnala", + "status": "deprecated" +}, +"pothana2000": { + "distributable": true, + "fallback": "suranna", + "family": "Pothana2000", + "familyid": "pothana2000", + "license": "GPL", + "status": "deprecated" +}, +"raavi": { + "distributable": false, + "fallback": "notosansgurmukhi", + "family": "Raavi", + "familyid": "raavi", + "license": "proprietary", + "source": "Microsoft" +}, +"ruwudu": { + "defaults": { + "ttf": "Ruwudu-Regular.ttf", + "woff": "Ruwudu-Regular.woff", + "woff2": "Ruwudu-Regular.woff2" + }, + "distributable": true, + "family": "Ruwudu", + "familyid": "ruwudu", + "files": { + "Ruwudu-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ruwudu/Ruwudu-Bold.ttf", "packagepath": "Ruwudu-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ruwudu/Ruwudu-Bold.ttf", "zippath": "Ruwudu-3.000/Ruwudu-Bold.ttf" }, + "Ruwudu-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ruwudu/web/Ruwudu-Bold.woff", "packagepath": "web/Ruwudu-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ruwudu/web/Ruwudu-Bold.woff", "zippath": "Ruwudu-3.000/web/Ruwudu-Bold.woff" }, + "Ruwudu-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ruwudu/web/Ruwudu-Bold.woff2", "packagepath": "web/Ruwudu-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ruwudu/web/Ruwudu-Bold.woff2", "zippath": "Ruwudu-3.000/web/Ruwudu-Bold.woff2" }, + "Ruwudu-Medium.ttf": { "altfamily": "Ruwudu Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ruwudu/Ruwudu-Medium.ttf", "packagepath": "Ruwudu-Medium.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ruwudu/Ruwudu-Medium.ttf", "zippath": "Ruwudu-3.000/Ruwudu-Medium.ttf" }, + "Ruwudu-Medium.woff": { "altfamily": "Ruwudu Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ruwudu/web/Ruwudu-Medium.woff", "packagepath": "web/Ruwudu-Medium.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ruwudu/web/Ruwudu-Medium.woff", "zippath": "Ruwudu-3.000/web/Ruwudu-Medium.woff" }, + "Ruwudu-Medium.woff2": { "altfamily": "Ruwudu Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ruwudu/web/Ruwudu-Medium.woff2", "packagepath": "web/Ruwudu-Medium.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ruwudu/web/Ruwudu-Medium.woff2", "zippath": "Ruwudu-3.000/web/Ruwudu-Medium.woff2" }, + "Ruwudu-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ruwudu/Ruwudu-Regular.ttf", "packagepath": "Ruwudu-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ruwudu/Ruwudu-Regular.ttf", "zippath": "Ruwudu-3.000/Ruwudu-Regular.ttf" }, + "Ruwudu-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ruwudu/web/Ruwudu-Regular.woff", "packagepath": "web/Ruwudu-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ruwudu/web/Ruwudu-Regular.woff", "zippath": "Ruwudu-3.000/web/Ruwudu-Regular.woff" }, + "Ruwudu-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ruwudu/web/Ruwudu-Regular.woff2", "packagepath": "web/Ruwudu-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ruwudu/web/Ruwudu-Regular.woff2", "zippath": "Ruwudu-3.000/web/Ruwudu-Regular.woff2" }, + "Ruwudu-SemiBold.ttf": { "altfamily": "Ruwudu SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ruwudu/Ruwudu-SemiBold.ttf", "packagepath": "Ruwudu-SemiBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ruwudu/Ruwudu-SemiBold.ttf", "zippath": "Ruwudu-3.000/Ruwudu-SemiBold.ttf" }, + "Ruwudu-SemiBold.woff": { "altfamily": "Ruwudu SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ruwudu/web/Ruwudu-SemiBold.woff", "packagepath": "web/Ruwudu-SemiBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ruwudu/web/Ruwudu-SemiBold.woff", "zippath": "Ruwudu-3.000/web/Ruwudu-SemiBold.woff" }, + "Ruwudu-SemiBold.woff2": { "altfamily": "Ruwudu SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/ruwudu/web/Ruwudu-SemiBold.woff2", "packagepath": "web/Ruwudu-SemiBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/ruwudu/web/Ruwudu-SemiBold.woff2", "zippath": "Ruwudu-3.000/web/Ruwudu-SemiBold.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/ruwudu/Ruwudu-3.000.zip", + "siteurl": "https://software.sil.org/ruwudu/", + "source": "SIL", + "status": "current", + "version": "3.000", + "ziproot": "Ruwudu-3.000" +}, +"salaowu": { + "defaults": { + "ttf": "Salaowu-Regular.ttf" + }, + "distributable": true, + "family": "Salaowu", + "familyid": "salaowu", + "files": { + "Salaowu-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/salaowu/Salaowu-Bold.ttf", "packagepath": "Salaowu-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/salaowu/Salaowu-Bold.ttf", "zippath": "Salaowu-1.000/Salaowu-Bold.ttf" }, + "Salaowu-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/salaowu/Salaowu-Regular.ttf", "packagepath": "Salaowu-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/salaowu/Salaowu-Regular.ttf", "zippath": "Salaowu-1.000/Salaowu-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/shimenkan/Salaowu-1.000.zip", + "siteurl": "https://software.sil.org/shimenkan/", + "source": "SIL", + "status": "current", + "version": "1.000", + "ziproot": "Salaowu-1.000" +}, +"sapushan": { + "defaults": { + "ttf": "Sapushan-Regular.ttf" + }, + "distributable": true, + "family": "Sapushan", + "familyid": "sapushan", + "files": { + "Sapushan-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/sapushan/Sapushan-Bold.ttf", "packagepath": "Sapushan-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/sapushan/Sapushan-Bold.ttf", "zippath": "Sapushan-1.000/Sapushan-Bold.ttf" }, + "Sapushan-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/sapushan/Sapushan-Regular.ttf", "packagepath": "Sapushan-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/sapushan/Sapushan-Regular.ttf", "zippath": "Sapushan-1.000/Sapushan-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/shimenkan/Sapushan-1.000.zip", + "siteurl": "https://software.sil.org/shimenkan/", + "source": "SIL", + "status": "current", + "version": "1.000", + "ziproot": "Sapushan-1.000" +}, +"sarabun": { + "defaults": { + "ttf": "Sarabun-Regular.ttf" + }, + "distributable": true, + "family": "Sarabun", + "familyid": "sarabun", + "files": { + "Sarabun-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "Sarabun-Bold.ttf" }, + "Sarabun-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "packagepath": "Sarabun-BoldItalic.ttf" }, + "Sarabun-ExtraBold.ttf": { "axes": { "ital": 0, "wght": 800.0 }, "packagepath": "Sarabun-ExtraBold.ttf" }, + "Sarabun-ExtraBoldItalic.ttf": { "axes": { "ital": 1, "wght": 800.0 }, "packagepath": "Sarabun-ExtraBoldItalic.ttf" }, + "Sarabun-ExtraLight.ttf": { "axes": { "ital": 0, "wght": 275.0 }, "packagepath": "Sarabun-ExtraLight.ttf" }, + "Sarabun-ExtraLightItalic.ttf": { "axes": { "ital": 1, "wght": 275.0 }, "packagepath": "Sarabun-ExtraLightItalic.ttf" }, + "Sarabun-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "Sarabun-Italic.ttf" }, + "Sarabun-Light.ttf": { "axes": { "ital": 0, "wght": 300.0 }, "packagepath": "Sarabun-Light.ttf" }, + "Sarabun-LightItalic.ttf": { "axes": { "ital": 1, "wght": 300.0 }, "packagepath": "Sarabun-LightItalic.ttf" }, + "Sarabun-Medium.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "Sarabun-Medium.ttf" }, + "Sarabun-MediumItalic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "packagepath": "Sarabun-MediumItalic.ttf" }, + "Sarabun-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Sarabun-Regular.ttf" }, + "Sarabun-SemiBold.ttf": { "axes": { "ital": 0, "wght": 600.0 }, "packagepath": "Sarabun-SemiBold.ttf" }, + "Sarabun-SemiBoldItalic.ttf": { "axes": { "ital": 1, "wght": 600.0 }, "packagepath": "Sarabun-SemiBoldItalic.ttf" }, + "Sarabun-Thin.ttf": { "axes": { "ital": 0, "wght": 250.0 }, "packagepath": "Sarabun-Thin.ttf" }, + "Sarabun-ThinItalic.ttf": { "axes": { "ital": 1, "wght": 250.0 }, "packagepath": "Sarabun-ThinItalic.ttf" } + }, + "license": "OFL", + "siteurl": "https://fonts.google.com/specimen/Sarabun", + "source": "Google", + "version": "1.000" +}, +"saysettha": { + "defaults": { + "ttf": "Saysettha-Expanded.ttf" + }, + "distributable": true, + "family": "Saysettha", + "familyid": "saysettha", + "files": { + "Saysettha-Black.ttf": { "axes": { "ital": 0, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-Black.ttf", "packagepath": "Saysettha-Black.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-Black.ttf", "zippath": "Saysettha-Black.ttf" }, + "Saysettha-BlackCondIta.ttf": { "axes": { "ital": 1, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BlackCondIta.ttf", "packagepath": "Saysettha-BlackCondIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BlackCondIta.ttf", "zippath": "Saysettha-BlackCondIta.ttf" }, + "Saysettha-BlackCondensed.ttf": { "axes": { "ital": 0, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BlackCondensed.ttf", "packagepath": "Saysettha-BlackCondensed.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BlackCondensed.ttf", "zippath": "Saysettha-BlackCondensed.ttf" }, + "Saysettha-BlackExpanded.ttf": { "axes": { "ital": 0, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BlackExpanded.ttf", "packagepath": "Saysettha-BlackExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BlackExpanded.ttf", "zippath": "Saysettha-BlackExpanded.ttf" }, + "Saysettha-BlackExpandedItalic.ttf": { "axes": { "ital": 1, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BlackExpandedItalic.ttf", "packagepath": "Saysettha-BlackExpandedItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BlackExpandedItalic.ttf", "zippath": "Saysettha-BlackExpandedItalic.ttf" }, + "Saysettha-BlackExtExpIta.ttf": { "axes": { "ital": 1, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BlackExtExpIta.ttf", "packagepath": "Saysettha-BlackExtExpIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BlackExtExpIta.ttf", "zippath": "Saysettha-BlackExtExpIta.ttf" }, + "Saysettha-BlackExtraExpanded.ttf": { "axes": { "ital": 0, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BlackExtraExpanded.ttf", "packagepath": "Saysettha-BlackExtraExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BlackExtraExpanded.ttf", "zippath": "Saysettha-BlackExtraExpanded.ttf" }, + "Saysettha-BlackItalic.ttf": { "axes": { "ital": 1, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BlackItalic.ttf", "packagepath": "Saysettha-BlackItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BlackItalic.ttf", "zippath": "Saysettha-BlackItalic.ttf" }, + "Saysettha-BlackUltExpIta.ttf": { "axes": { "ital": 1, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BlackUltExpIta.ttf", "packagepath": "Saysettha-BlackUltExpIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BlackUltExpIta.ttf", "zippath": "Saysettha-BlackUltExpIta.ttf" }, + "Saysettha-BlackUltraCondIta.ttf": { "axes": { "ital": 1, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BlackUltraCondIta.ttf", "packagepath": "Saysettha-BlackUltraCondIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BlackUltraCondIta.ttf", "zippath": "Saysettha-BlackUltraCondIta.ttf" }, + "Saysettha-BlackUltraCondensed.ttf": { "axes": { "ital": 0, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BlackUltraCondensed.ttf", "packagepath": "Saysettha-BlackUltraCondensed.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BlackUltraCondensed.ttf", "zippath": "Saysettha-BlackUltraCondensed.ttf" }, + "Saysettha-BlackUltraExpanded.ttf": { "axes": { "ital": 0, "wght": 900.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BlackUltraExpanded.ttf", "packagepath": "Saysettha-BlackUltraExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BlackUltraExpanded.ttf", "zippath": "Saysettha-BlackUltraExpanded.ttf" }, + "Saysettha-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-Bold.ttf", "packagepath": "Saysettha-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-Bold.ttf", "zippath": "Saysettha-Bold.ttf" }, + "Saysettha-BoldCondensed.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BoldCondensed.ttf", "packagepath": "Saysettha-BoldCondensed.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BoldCondensed.ttf", "zippath": "Saysettha-BoldCondensed.ttf" }, + "Saysettha-BoldCondensedItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BoldCondensedItalic.ttf", "packagepath": "Saysettha-BoldCondensedItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BoldCondensedItalic.ttf", "zippath": "Saysettha-BoldCondensedItalic.ttf" }, + "Saysettha-BoldExpanded.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BoldExpanded.ttf", "packagepath": "Saysettha-BoldExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BoldExpanded.ttf", "zippath": "Saysettha-BoldExpanded.ttf" }, + "Saysettha-BoldExpandedItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BoldExpandedItalic.ttf", "packagepath": "Saysettha-BoldExpandedItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BoldExpandedItalic.ttf", "zippath": "Saysettha-BoldExpandedItalic.ttf" }, + "Saysettha-BoldExtExpIta.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BoldExtExpIta.ttf", "packagepath": "Saysettha-BoldExtExpIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BoldExtExpIta.ttf", "zippath": "Saysettha-BoldExtExpIta.ttf" }, + "Saysettha-BoldExtraExpanded.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BoldExtraExpanded.ttf", "packagepath": "Saysettha-BoldExtraExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BoldExtraExpanded.ttf", "zippath": "Saysettha-BoldExtraExpanded.ttf" }, + "Saysettha-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BoldItalic.ttf", "packagepath": "Saysettha-BoldItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BoldItalic.ttf", "zippath": "Saysettha-BoldItalic.ttf" }, + "Saysettha-BoldUltExpIta.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BoldUltExpIta.ttf", "packagepath": "Saysettha-BoldUltExpIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BoldUltExpIta.ttf", "zippath": "Saysettha-BoldUltExpIta.ttf" }, + "Saysettha-BoldUltraCondIta.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BoldUltraCondIta.ttf", "packagepath": "Saysettha-BoldUltraCondIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BoldUltraCondIta.ttf", "zippath": "Saysettha-BoldUltraCondIta.ttf" }, + "Saysettha-BoldUltraCondensed.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BoldUltraCondensed.ttf", "packagepath": "Saysettha-BoldUltraCondensed.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BoldUltraCondensed.ttf", "zippath": "Saysettha-BoldUltraCondensed.ttf" }, + "Saysettha-BoldUltraExpanded.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-BoldUltraExpanded.ttf", "packagepath": "Saysettha-BoldUltraExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-BoldUltraExpanded.ttf", "zippath": "Saysettha-BoldUltraExpanded.ttf" }, + "Saysettha-Condensed.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-Condensed.ttf", "packagepath": "Saysettha-Condensed.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-Condensed.ttf", "zippath": "Saysettha-Condensed.ttf" }, + "Saysettha-CondensedItalic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-CondensedItalic.ttf", "packagepath": "Saysettha-CondensedItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-CondensedItalic.ttf", "zippath": "Saysettha-CondensedItalic.ttf" }, + "Saysettha-Expanded.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-Expanded.ttf", "packagepath": "Saysettha-Expanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-Expanded.ttf", "zippath": "Saysettha-Expanded.ttf" }, + "Saysettha-ExpandedItalic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-ExpandedItalic.ttf", "packagepath": "Saysettha-ExpandedItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-ExpandedItalic.ttf", "zippath": "Saysettha-ExpandedItalic.ttf" }, + "Saysettha-ExtraExpanded.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-ExtraExpanded.ttf", "packagepath": "Saysettha-ExtraExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-ExtraExpanded.ttf", "zippath": "Saysettha-ExtraExpanded.ttf" }, + "Saysettha-ExtraExpandedItalic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-ExtraExpandedItalic.ttf", "packagepath": "Saysettha-ExtraExpandedItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-ExtraExpandedItalic.ttf", "zippath": "Saysettha-ExtraExpandedItalic.ttf" }, + "Saysettha-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-Italic.ttf", "packagepath": "Saysettha-Italic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-Italic.ttf", "zippath": "Saysettha-Italic.ttf" }, + "Saysettha-Light.ttf": { "axes": { "ital": 0, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-Light.ttf", "packagepath": "Saysettha-Light.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-Light.ttf", "zippath": "Saysettha-Light.ttf" }, + "Saysettha-LightCondIta.ttf": { "axes": { "ital": 1, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-LightCondIta.ttf", "packagepath": "Saysettha-LightCondIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-LightCondIta.ttf", "zippath": "Saysettha-LightCondIta.ttf" }, + "Saysettha-LightCondensed.ttf": { "axes": { "ital": 0, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-LightCondensed.ttf", "packagepath": "Saysettha-LightCondensed.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-LightCondensed.ttf", "zippath": "Saysettha-LightCondensed.ttf" }, + "Saysettha-LightExpanded.ttf": { "axes": { "ital": 0, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-LightExpanded.ttf", "packagepath": "Saysettha-LightExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-LightExpanded.ttf", "zippath": "Saysettha-LightExpanded.ttf" }, + "Saysettha-LightExpandedItalic.ttf": { "axes": { "ital": 1, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-LightExpandedItalic.ttf", "packagepath": "Saysettha-LightExpandedItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-LightExpandedItalic.ttf", "zippath": "Saysettha-LightExpandedItalic.ttf" }, + "Saysettha-LightExtExpIta.ttf": { "axes": { "ital": 1, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-LightExtExpIta.ttf", "packagepath": "Saysettha-LightExtExpIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-LightExtExpIta.ttf", "zippath": "Saysettha-LightExtExpIta.ttf" }, + "Saysettha-LightExtraExpanded.ttf": { "axes": { "ital": 0, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-LightExtraExpanded.ttf", "packagepath": "Saysettha-LightExtraExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-LightExtraExpanded.ttf", "zippath": "Saysettha-LightExtraExpanded.ttf" }, + "Saysettha-LightItalic.ttf": { "axes": { "ital": 1, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-LightItalic.ttf", "packagepath": "Saysettha-LightItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-LightItalic.ttf", "zippath": "Saysettha-LightItalic.ttf" }, + "Saysettha-LightUltExpIta.ttf": { "axes": { "ital": 1, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-LightUltExpIta.ttf", "packagepath": "Saysettha-LightUltExpIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-LightUltExpIta.ttf", "zippath": "Saysettha-LightUltExpIta.ttf" }, + "Saysettha-LightUltraCondIta.ttf": { "axes": { "ital": 1, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-LightUltraCondIta.ttf", "packagepath": "Saysettha-LightUltraCondIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-LightUltraCondIta.ttf", "zippath": "Saysettha-LightUltraCondIta.ttf" }, + "Saysettha-LightUltraCondensed.ttf": { "axes": { "ital": 0, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-LightUltraCondensed.ttf", "packagepath": "Saysettha-LightUltraCondensed.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-LightUltraCondensed.ttf", "zippath": "Saysettha-LightUltraCondensed.ttf" }, + "Saysettha-LightUltraExpanded.ttf": { "axes": { "ital": 0, "wght": 300.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-LightUltraExpanded.ttf", "packagepath": "Saysettha-LightUltraExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-LightUltraExpanded.ttf", "zippath": "Saysettha-LightUltraExpanded.ttf" }, + "Saysettha-MedCondIta.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-MedCondIta.ttf", "packagepath": "Saysettha-MedCondIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-MedCondIta.ttf", "zippath": "Saysettha-MedCondIta.ttf" }, + "Saysettha-MedExpIta.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-MedExpIta.ttf", "packagepath": "Saysettha-MedExpIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-MedExpIta.ttf", "zippath": "Saysettha-MedExpIta.ttf" }, + "Saysettha-MedExtExpIta.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-MedExtExpIta.ttf", "packagepath": "Saysettha-MedExtExpIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-MedExtExpIta.ttf", "zippath": "Saysettha-MedExtExpIta.ttf" }, + "Saysettha-MedUltExpIta.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-MedUltExpIta.ttf", "packagepath": "Saysettha-MedUltExpIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-MedUltExpIta.ttf", "zippath": "Saysettha-MedUltExpIta.ttf" }, + "Saysettha-Medium.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-Medium.ttf", "packagepath": "Saysettha-Medium.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-Medium.ttf", "zippath": "Saysettha-Medium.ttf" }, + "Saysettha-MediumCondensed.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-MediumCondensed.ttf", "packagepath": "Saysettha-MediumCondensed.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-MediumCondensed.ttf", "zippath": "Saysettha-MediumCondensed.ttf" }, + "Saysettha-MediumExpanded.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-MediumExpanded.ttf", "packagepath": "Saysettha-MediumExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-MediumExpanded.ttf", "zippath": "Saysettha-MediumExpanded.ttf" }, + "Saysettha-MediumExtraExpanded.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-MediumExtraExpanded.ttf", "packagepath": "Saysettha-MediumExtraExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-MediumExtraExpanded.ttf", "zippath": "Saysettha-MediumExtraExpanded.ttf" }, + "Saysettha-MediumItalic.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-MediumItalic.ttf", "packagepath": "Saysettha-MediumItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-MediumItalic.ttf", "zippath": "Saysettha-MediumItalic.ttf" }, + "Saysettha-MediumUltraCond.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-MediumUltraCond.ttf", "packagepath": "Saysettha-MediumUltraCond.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-MediumUltraCond.ttf", "zippath": "Saysettha-MediumUltraCond.ttf" }, + "Saysettha-MediumUltraCondIta.ttf": { "axes": { "ital": 1, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-MediumUltraCondIta.ttf", "packagepath": "Saysettha-MediumUltraCondIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-MediumUltraCondIta.ttf", "zippath": "Saysettha-MediumUltraCondIta.ttf" }, + "Saysettha-MediumUltraExpanded.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-MediumUltraExpanded.ttf", "packagepath": "Saysettha-MediumUltraExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-MediumUltraExpanded.ttf", "zippath": "Saysettha-MediumUltraExpanded.ttf" }, + "Saysettha-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-Regular.ttf", "packagepath": "Saysettha-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-Regular.ttf", "zippath": "Saysettha-Regular.ttf" }, + "Saysettha-Thin.ttf": { "axes": { "ital": 0, "wght": 100.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-Thin.ttf", "packagepath": "Saysettha-Thin.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-Thin.ttf", "zippath": "Saysettha-Thin.ttf" }, + "Saysettha-ThinCondensed.ttf": { "axes": { "ital": 0, "wght": 100.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-ThinCondensed.ttf", "packagepath": "Saysettha-ThinCondensed.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-ThinCondensed.ttf", "zippath": "Saysettha-ThinCondensed.ttf" }, + "Saysettha-ThinCondensedItalic.ttf": { "axes": { "ital": 1, "wght": 100.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-ThinCondensedItalic.ttf", "packagepath": "Saysettha-ThinCondensedItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-ThinCondensedItalic.ttf", "zippath": "Saysettha-ThinCondensedItalic.ttf" }, + "Saysettha-ThinExpanded.ttf": { "axes": { "ital": 0, "wght": 100.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-ThinExpanded.ttf", "packagepath": "Saysettha-ThinExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-ThinExpanded.ttf", "zippath": "Saysettha-ThinExpanded.ttf" }, + "Saysettha-ThinExpandedItalic.ttf": { "axes": { "ital": 1, "wght": 100.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-ThinExpandedItalic.ttf", "packagepath": "Saysettha-ThinExpandedItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-ThinExpandedItalic.ttf", "zippath": "Saysettha-ThinExpandedItalic.ttf" }, + "Saysettha-ThinExtExpIta.ttf": { "axes": { "ital": 1, "wght": 100.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-ThinExtExpIta.ttf", "packagepath": "Saysettha-ThinExtExpIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-ThinExtExpIta.ttf", "zippath": "Saysettha-ThinExtExpIta.ttf" }, + "Saysettha-ThinExtraExpanded.ttf": { "axes": { "ital": 0, "wght": 100.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-ThinExtraExpanded.ttf", "packagepath": "Saysettha-ThinExtraExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-ThinExtraExpanded.ttf", "zippath": "Saysettha-ThinExtraExpanded.ttf" }, + "Saysettha-ThinItalic.ttf": { "axes": { "ital": 1, "wght": 100.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-ThinItalic.ttf", "packagepath": "Saysettha-ThinItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-ThinItalic.ttf", "zippath": "Saysettha-ThinItalic.ttf" }, + "Saysettha-ThinUltExpIta.ttf": { "axes": { "ital": 1, "wght": 100.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-ThinUltExpIta.ttf", "packagepath": "Saysettha-ThinUltExpIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-ThinUltExpIta.ttf", "zippath": "Saysettha-ThinUltExpIta.ttf" }, + "Saysettha-ThinUltraCondIta.ttf": { "axes": { "ital": 1, "wght": 100.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-ThinUltraCondIta.ttf", "packagepath": "Saysettha-ThinUltraCondIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-ThinUltraCondIta.ttf", "zippath": "Saysettha-ThinUltraCondIta.ttf" }, + "Saysettha-ThinUltraCondensed.ttf": { "axes": { "ital": 0, "wght": 100.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-ThinUltraCondensed.ttf", "packagepath": "Saysettha-ThinUltraCondensed.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-ThinUltraCondensed.ttf", "zippath": "Saysettha-ThinUltraCondensed.ttf" }, + "Saysettha-ThinUltraExpanded.ttf": { "axes": { "ital": 0, "wght": 100.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-ThinUltraExpanded.ttf", "packagepath": "Saysettha-ThinUltraExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-ThinUltraExpanded.ttf", "zippath": "Saysettha-ThinUltraExpanded.ttf" }, + "Saysettha-UltraCondIta.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-UltraCondIta.ttf", "packagepath": "Saysettha-UltraCondIta.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-UltraCondIta.ttf", "zippath": "Saysettha-UltraCondIta.ttf" }, + "Saysettha-UltraCondensed.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-UltraCondensed.ttf", "packagepath": "Saysettha-UltraCondensed.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-UltraCondensed.ttf", "zippath": "Saysettha-UltraCondensed.ttf" }, + "Saysettha-UltraExpanded.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-UltraExpanded.ttf", "packagepath": "Saysettha-UltraExpanded.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-UltraExpanded.ttf", "zippath": "Saysettha-UltraExpanded.ttf" }, + "Saysettha-UltraExpandedItalic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/saysettha/Saysettha-UltraExpandedItalic.ttf", "packagepath": "Saysettha-UltraExpandedItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/saysettha/Saysettha-UltraExpandedItalic.ttf", "zippath": "Saysettha-UltraExpandedItalic.ttf" } + }, + "license": "OFL", + "packageurl": "https://laoscript.net/download/saysettha_all.zip", + "siteurl": "https://laoscript.net/download/", + "source": "Lao Script", + "status": "current", + "version": "2.201", + "ziproot": "" +}, +"saysetthamx": { + "distributable": true, + "fallback": "saysettha", + "family": "Saysettha MX", + "familyid": "saysetthamx", + "source": "Lao Script", + "status": "deprecated" +}, +"scheherazade": { + "defaults": { + "ttf": "Scheherazade-Regular.ttf", + "woff": "Scheherazade-Regular.woff" + }, + "distributable": true, + "family": "Scheherazade", + "familyid": "scheherazade", + "files": { + "Scheherazade-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazade/Scheherazade-Bold.ttf", "packagepath": "Scheherazade-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazade/Scheherazade-Bold.ttf", "zippath": "Scheherazade-2.100/Scheherazade-Bold.ttf" }, + "Scheherazade-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazade/web/Scheherazade-Bold.woff", "packagepath": "web/Scheherazade-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazade/web/Scheherazade-Bold.woff", "zippath": "Scheherazade-2.100/web/Scheherazade-Bold.woff" }, + "Scheherazade-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazade/Scheherazade-Regular.ttf", "packagepath": "Scheherazade-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazade/Scheherazade-Regular.ttf", "zippath": "Scheherazade-2.100/Scheherazade-Regular.ttf" }, + "Scheherazade-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazade/web/Scheherazade-Regular.woff", "packagepath": "web/Scheherazade-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazade/web/Scheherazade-Regular.woff", "zippath": "Scheherazade-2.100/web/Scheherazade-Regular.woff" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/scheherazade/Scheherazade-2.100.zip", + "siteurl": "https://software.sil.org/scheherazade/", + "source": "SIL", + "status": "current", + "version": "2.100", + "ziproot": "Scheherazade-2.100" +}, +"scheherazadenew": { + "defaults": { + "ttf": "ScheherazadeNew-Regular.ttf", + "woff": "ScheherazadeNew-Regular.woff", + "woff2": "ScheherazadeNew-Regular.woff2" + }, + "distributable": true, + "family": "Scheherazade New", + "familyid": "scheherazadenew", + "files": { + "ScheherazadeNew-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazadenew/ScheherazadeNew-Bold.ttf", "packagepath": "ScheherazadeNew-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazadenew/ScheherazadeNew-Bold.ttf", "zippath": "ScheherazadeNew-4.300/ScheherazadeNew-Bold.ttf" }, + "ScheherazadeNew-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazadenew/web/ScheherazadeNew-Bold.woff", "packagepath": "web/ScheherazadeNew-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazadenew/web/ScheherazadeNew-Bold.woff", "zippath": "ScheherazadeNew-4.300/web/ScheherazadeNew-Bold.woff" }, + "ScheherazadeNew-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazadenew/web/ScheherazadeNew-Bold.woff2", "packagepath": "web/ScheherazadeNew-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazadenew/web/ScheherazadeNew-Bold.woff2", "zippath": "ScheherazadeNew-4.300/web/ScheherazadeNew-Bold.woff2" }, + "ScheherazadeNew-Medium.ttf": { "altfamily": "Scheherazade New Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazadenew/ScheherazadeNew-Medium.ttf", "packagepath": "ScheherazadeNew-Medium.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazadenew/ScheherazadeNew-Medium.ttf", "zippath": "ScheherazadeNew-4.300/ScheherazadeNew-Medium.ttf" }, + "ScheherazadeNew-Medium.woff": { "altfamily": "Scheherazade New Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazadenew/web/ScheherazadeNew-Medium.woff", "packagepath": "web/ScheherazadeNew-Medium.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazadenew/web/ScheherazadeNew-Medium.woff", "zippath": "ScheherazadeNew-4.300/web/ScheherazadeNew-Medium.woff" }, + "ScheherazadeNew-Medium.woff2": { "altfamily": "Scheherazade New Medium", "axes": { "ital": 0, "wght": 500.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazadenew/web/ScheherazadeNew-Medium.woff2", "packagepath": "web/ScheherazadeNew-Medium.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazadenew/web/ScheherazadeNew-Medium.woff2", "zippath": "ScheherazadeNew-4.300/web/ScheherazadeNew-Medium.woff2" }, + "ScheherazadeNew-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazadenew/ScheherazadeNew-Regular.ttf", "packagepath": "ScheherazadeNew-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazadenew/ScheherazadeNew-Regular.ttf", "zippath": "ScheherazadeNew-4.300/ScheherazadeNew-Regular.ttf" }, + "ScheherazadeNew-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazadenew/web/ScheherazadeNew-Regular.woff", "packagepath": "web/ScheherazadeNew-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazadenew/web/ScheherazadeNew-Regular.woff", "zippath": "ScheherazadeNew-4.300/web/ScheherazadeNew-Regular.woff" }, + "ScheherazadeNew-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazadenew/web/ScheherazadeNew-Regular.woff2", "packagepath": "web/ScheherazadeNew-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazadenew/web/ScheherazadeNew-Regular.woff2", "zippath": "ScheherazadeNew-4.300/web/ScheherazadeNew-Regular.woff2" }, + "ScheherazadeNew-SemiBold.ttf": { "altfamily": "Scheherazade New SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazadenew/ScheherazadeNew-SemiBold.ttf", "packagepath": "ScheherazadeNew-SemiBold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazadenew/ScheherazadeNew-SemiBold.ttf", "zippath": "ScheherazadeNew-4.300/ScheherazadeNew-SemiBold.ttf" }, + "ScheherazadeNew-SemiBold.woff": { "altfamily": "Scheherazade New SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazadenew/web/ScheherazadeNew-SemiBold.woff", "packagepath": "web/ScheherazadeNew-SemiBold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazadenew/web/ScheherazadeNew-SemiBold.woff", "zippath": "ScheherazadeNew-4.300/web/ScheherazadeNew-SemiBold.woff" }, + "ScheherazadeNew-SemiBold.woff2": { "altfamily": "Scheherazade New SemiBold", "axes": { "ital": 0, "wght": 600.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/scheherazadenew/web/ScheherazadeNew-SemiBold.woff2", "packagepath": "web/ScheherazadeNew-SemiBold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/scheherazadenew/web/ScheherazadeNew-SemiBold.woff2", "zippath": "ScheherazadeNew-4.300/web/ScheherazadeNew-SemiBold.woff2" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/scheherazade/ScheherazadeNew-4.300.zip", + "siteurl": "https://software.sil.org/scheherazade/", + "source": "SIL", + "status": "current", + "version": "4.300", + "ziproot": "ScheherazadeNew-4.300" +}, +"scheherazadenewcompact": { + "defaults": { + "ttf": "ScheherazadeNewCompact-Regular.ttf" + }, + "distributable": true, + "fallback": "scheherazadenew", + "family": "Scheherazade New Compact", + "familyid": "scheherazadenewcompact", + "files": { + "ScheherazadeNewCompact-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "ScheherazadeNewCompact-4.300/ScheherazadeNewCompact-Bold.ttf", "zippath": "ScheherazadeNewCompact-4.300/ScheherazadeNewCompact-Bold.ttf" }, + "ScheherazadeNewCompact-Medium.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "ScheherazadeNewCompact-4.300/ScheherazadeNewCompact-Medium.ttf", "zippath": "ScheherazadeNewCompact-4.300/ScheherazadeNewCompact-Medium.ttf" }, + "ScheherazadeNewCompact-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "ScheherazadeNewCompact-4.300/ScheherazadeNewCompact-Regular.ttf", "zippath": "ScheherazadeNewCompact-4.300/ScheherazadeNewCompact-Regular.ttf" }, + "ScheherazadeNewCompact-SemiBold.ttf": { "axes": { "ital": 0, "wght": 600.0 }, "packagepath": "ScheherazadeNewCompact-4.300/ScheherazadeNewCompact-SemiBold.ttf", "zippath": "ScheherazadeNewCompact-4.300/ScheherazadeNewCompact-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=ScheherazadeNew&pkg=Compact", + "siteurl": "https://software.sil.org/scheherazade/", + "source": "SIL", + "status": "archived", + "version": "4.300", + "ziproot": "" +}, +"scheherazadenewrohingya": { + "defaults": { + "ttf": "ScheherazadeNewRohingya-Regular.ttf" + }, + "distributable": true, + "fallback": "scheherazadenew", + "family": "Scheherazade New Rohingya", + "familyid": "scheherazadenewrohingya", + "files": { + "ScheherazadeNewRohingya-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "packagepath": "ScheherazadeNewRohingya-4.300/ScheherazadeNewRohingya-Bold.ttf", "zippath": "ScheherazadeNewRohingya-4.300/ScheherazadeNewRohingya-Bold.ttf" }, + "ScheherazadeNewRohingya-Medium.ttf": { "axes": { "ital": 0, "wght": 500.0 }, "packagepath": "ScheherazadeNewRohingya-4.300/ScheherazadeNewRohingya-Medium.ttf", "zippath": "ScheherazadeNewRohingya-4.300/ScheherazadeNewRohingya-Medium.ttf" }, + "ScheherazadeNewRohingya-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "ScheherazadeNewRohingya-4.300/ScheherazadeNewRohingya-Regular.ttf", "zippath": "ScheherazadeNewRohingya-4.300/ScheherazadeNewRohingya-Regular.ttf" }, + "ScheherazadeNewRohingya-SemiBold.ttf": { "axes": { "ital": 0, "wght": 600.0 }, "packagepath": "ScheherazadeNewRohingya-4.300/ScheherazadeNewRohingya-SemiBold.ttf", "zippath": "ScheherazadeNewRohingya-4.300/ScheherazadeNewRohingya-SemiBold.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/ttw/fonts2go.cgi?family=ScheherazadeNew&pkg=Rohingya", + "siteurl": "https://software.sil.org/scheherazade/", + "source": "SIL", + "status": "archived", + "version": "4.300", + "ziproot": "" +}, +"shimenkan": { + "defaults": { + "ttf": "Shimenkan-Regular.ttf" + }, + "distributable": true, + "family": "Shimenkan", + "familyid": "shimenkan", + "files": { + "Shimenkan-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/shimenkan/Shimenkan-Bold.ttf", "packagepath": "Shimenkan-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/shimenkan/Shimenkan-Bold.ttf", "zippath": "Shimenkan-1.000/Shimenkan-Bold.ttf" }, + "Shimenkan-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/shimenkan/Shimenkan-Regular.ttf", "packagepath": "Shimenkan-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/shimenkan/Shimenkan-Regular.ttf", "zippath": "Shimenkan-1.000/Shimenkan-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/shimenkan/Shimenkan-1.000.zip", + "siteurl": "https://software.sil.org/shimenkan/", + "source": "SIL", + "status": "current", + "version": "1.000", + "ziproot": "Shimenkan-1.000" +}, +"shimenkangsm": { + "defaults": { + "ttf": "ShimenkanGSM-Regular.ttf" + }, + "distributable": true, + "family": "Shimenkan GSM", + "familyid": "shimenkangsm", + "files": { + "ShimenkanGSM-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/shimenkangsm/ShimenkanGSM-Bold.ttf", "packagepath": "ShimenkanGSM-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/shimenkangsm/ShimenkanGSM-Bold.ttf", "zippath": "ShimenkanGSM-1.000/ShimenkanGSM-Bold.ttf" }, + "ShimenkanGSM-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/shimenkangsm/ShimenkanGSM-Regular.ttf", "packagepath": "ShimenkanGSM-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/shimenkangsm/ShimenkanGSM-Regular.ttf", "zippath": "ShimenkanGSM-1.000/ShimenkanGSM-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/shimenkan/ShimenkanGSM-1.000.zip", + "siteurl": "https://software.sil.org/shimenkan/", + "source": "SIL", + "status": "current", + "version": "1.000", + "ziproot": "ShimenkanGSM-1.000" +}, +"shimenkanmas": { + "defaults": { + "ttf": "ShimenkanMAS-Regular.ttf" + }, + "distributable": true, + "family": "Shimenkan MAS", + "familyid": "shimenkanmas", + "files": { + "ShimenkanMAS-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/shimenkanmas/ShimenkanMAS-Bold.ttf", "packagepath": "ShimenkanMAS-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/shimenkanmas/ShimenkanMAS-Bold.ttf", "zippath": "ShimenkanMAS-1.000/ShimenkanMAS-Bold.ttf" }, + "ShimenkanMAS-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/shimenkanmas/ShimenkanMAS-Regular.ttf", "packagepath": "ShimenkanMAS-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/shimenkanmas/ShimenkanMAS-Regular.ttf", "zippath": "ShimenkanMAS-1.000/ShimenkanMAS-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/shimenkan/ShimenkanMAS-1.000.zip", + "siteurl": "https://software.sil.org/shimenkan/", + "source": "SIL", + "status": "current", + "version": "1.000", + "ziproot": "ShimenkanMAS-1.000" +}, +"shimenkanzonghe": { + "defaults": { + "ttf": "ShimenkanZonghe-Regular.ttf" + }, + "distributable": true, + "family": "Shimenkan Zonghe", + "familyid": "shimenkanzonghe", + "files": { + "ShimenkanZonghe-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/shimenkanzonghe/ShimenkanZonghe-Bold.ttf", "packagepath": "ShimenkanZonghe-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/shimenkanzonghe/ShimenkanZonghe-Bold.ttf", "zippath": "ShimenkanZonghe-1.000/ShimenkanZonghe-Bold.ttf" }, + "ShimenkanZonghe-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/shimenkanzonghe/ShimenkanZonghe-Regular.ttf", "packagepath": "ShimenkanZonghe-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/shimenkanzonghe/ShimenkanZonghe-Regular.ttf", "zippath": "ShimenkanZonghe-1.000/ShimenkanZonghe-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/shimenkan/ShimenkanZonghe-1.000.zip", + "siteurl": "https://software.sil.org/shimenkan/", + "source": "SIL", + "status": "current", + "version": "1.000", + "ziproot": "ShimenkanZonghe-1.000" +}, +"shishan": { + "distributable": true, + "fallback": "shimenkan", + "family": "ShiShan", + "familyid": "shishan", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/shishan/ShiShan-HMD-1.100.zip", + "siteurl": "https://software.sil.org/shishan/", + "source": "SIL", + "status": "deprecated", + "version": "1.100" +}, +"shishanhmd": { + "distributable": true, + "fallback": "sapushan", + "family": "ShiShan HMD", + "familyid": "shishanhmd", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/shishan/ShiShan-HMD-1.100.zip", + "siteurl": "https://software.sil.org/shishan/", + "source": "SIL", + "status": "deprecated", + "version": "1.100" +}, +"shishanlpo": { + "distributable": true, + "fallback": "taogu", + "family": "ShiShan LPO", + "familyid": "shishanlpo", + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/shishan/ShiShan-LPO-1.100.zip", + "siteurl": "https://software.sil.org/shishan/", + "source": "SIL", + "status": "deprecated", + "version": "1.100" +}, +"shruti": { + "distributable": false, + "fallback": "notosansgujarati", + "family": "Shruti", + "familyid": "shruti", + "license": "proprietary", + "source": "Microsoft" +}, +"silvai": { + "distributable": true, + "fallback": "wakor", + "family": "SIL Vai", + "familyid": "silvai", + "license": "OFL", + "packageurl": "https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=SILVai32OFL_zip&filename=SILVaiOFL3.2.zip", + "siteurl": "https://scripts.sil.org/SILVai_Download", + "source": "SIL", + "status": "deprecated", + "version": "3.200" +}, +"sophianubian": { + "defaults": { + "ttf": "SNR.ttf" + }, + "distributable": true, + "family": "Sophia Nubian", + "familyid": "sophianubian", + "files": { + "SNB.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/sophianubian/SNB.ttf", "packagepath": "SNB.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/sophianubian/SNB.ttf", "zippath": "SophiaNubian/SNB.ttf" }, + "SNBI.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/sophianubian/SNBI.ttf", "packagepath": "SNBI.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/sophianubian/SNBI.ttf", "zippath": "SophiaNubian/SNBI.ttf" }, + "SNI.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/sophianubian/SNI.ttf", "packagepath": "SNI.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/sophianubian/SNI.ttf", "zippath": "SophiaNubian/SNI.ttf" }, + "SNR.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/sophianubian/SNR.ttf", "packagepath": "SNR.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/sophianubian/SNR.ttf", "zippath": "SophiaNubian/SNR.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/sophianubian/SophiaNubian-1.0.zip", + "siteurl": "https://software.sil.org/SophiaNubian/", + "source": "SIL", + "status": "current", + "version": "1.000", + "ziproot": "SophiaNubian" +}, +"suranna": { + "defaults": { + "ttf": "Suranna-Regular.ttf" + }, + "distributable": true, + "fallback": "notoseriftelugu", + "family": "Suranna", + "familyid": "suranna", + "files": { + "Suranna-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Suranna-Regular.ttf" } + }, + "license": "OFL", + "siteurl": "https://fonts.google.com/specimen/Suranna", + "source": "Google", + "version": "1.0.5" +}, +"surma": { + "defaults": { + "ttf": "Surma-Regular.ttf", + "woff": "Surma-Regular.woff", + "woff2": "Surma-Regular.woff2" + }, + "distributable": true, + "family": "Surma", + "familyid": "surma", + "files": { + "Surma-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/surma/Surma-Regular.ttf", "packagepath": "Surma-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/surma/Surma-Regular.ttf", "zippath": "Surma-4.000/Surma-Regular.ttf" }, + "Surma-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/surma/Surma-Regular.woff", "packagepath": "Surma-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/surma/Surma-Regular.woff", "zippath": "Surma-4.000/Surma-Regular.woff" }, + "Surma-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/surma/Surma-Regular.woff2", "packagepath": "Surma-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/surma/Surma-Regular.woff2", "zippath": "Surma-4.000/Surma-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://github.com/syltrans/surma/releases/download/v4.000/Surma-4.000.zip", + "siteurl": "https://github.com/syltrans/surma", + "source": "STAR", + "status": "current", + "version": "4.000", + "ziproot": "Surma-4.000" +}, +"symchar": { + "defaults": { + "ttf": "SymChar-Regular.ttf", + "woff": "SymChar-Regular.woff", + "woff2": "SymChar-Regular.woff2" + }, + "distributable": true, + "family": "SymChar", + "familyid": "symchar", + "files": { + "SymChar-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/symchar/SymChar-Regular.ttf", "packagepath": "SymChar-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/symchar/SymChar-Regular.ttf", "zippath": "SymChar-4.100-dev-e1fb16/SymChar-Regular.ttf" }, + "SymChar-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/symchar/web/SymChar-Regular.woff", "packagepath": "web/SymChar-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/symchar/web/SymChar-Regular.woff", "zippath": "SymChar-4.100-dev-e1fb16/web/SymChar-Regular.woff" }, + "SymChar-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/symchar/web/SymChar-Regular.woff2", "packagepath": "web/SymChar-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/symchar/web/SymChar-Regular.woff2", "zippath": "SymChar-4.100-dev-e1fb16/web/SymChar-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://github.com/silnrsi/font-symchar/releases/download/v4.100/SymChar-4.100-dev-e1fb16.zip", + "siteurl": "https://github.com/silnrsi/font-symchar", + "source": "SIL", + "status": "current", + "version": "4.100", + "ziproot": "SymChar-4.100-dev-e1fb16" +}, +"symchark": { + "defaults": { + "ttf": "SymCharK-Regular.ttf", + "woff": "SymCharK-Regular.woff", + "woff2": "SymCharK-Regular.woff2" + }, + "distributable": true, + "family": "SymCharK", + "familyid": "symchark", + "files": { + "SymCharK-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/symchark/SymCharK-Regular.ttf", "packagepath": "SymCharK-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/symchark/SymCharK-Regular.ttf", "zippath": "SymCharK-4.100-dev-e1fb16/SymCharK-Regular.ttf" }, + "SymCharK-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/symchark/web/SymCharK-Regular.woff", "packagepath": "web/SymCharK-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/symchark/web/SymCharK-Regular.woff", "zippath": "SymCharK-4.100-dev-e1fb16/web/SymCharK-Regular.woff" }, + "SymCharK-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/symchark/web/SymCharK-Regular.woff2", "packagepath": "web/SymCharK-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/symchark/web/SymCharK-Regular.woff2", "zippath": "SymCharK-4.100-dev-e1fb16/web/SymCharK-Regular.woff2" } + }, + "license": "OFL", + "packageurl": "https://github.com/silnrsi/font-symchar/releases/download/v4.100/SymCharK-4.100-dev-e1fb16.zip", + "siteurl": "https://github.com/silnrsi/font-symchar", + "source": "SIL", + "status": "current", + "version": "4.100", + "ziproot": "SymCharK-4.100-dev-e1fb16" +}, +"tagmukay": { + "defaults": { + "ttf": "Tagmukay-Regular.ttf", + "woff": "Tagmukay-Regular.woff" + }, + "distributable": true, + "family": "Tagmukay", + "familyid": "tagmukay", + "files": { + "Tagmukay-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/tagmukay/Tagmukay-Bold.ttf", "packagepath": "Tagmukay-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/tagmukay/Tagmukay-Bold.ttf", "zippath": "Tagmukay-2.000/Tagmukay-Bold.ttf" }, + "Tagmukay-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/tagmukay/web/Tagmukay-Bold.woff", "packagepath": "web/Tagmukay-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/tagmukay/web/Tagmukay-Bold.woff", "zippath": "Tagmukay-2.000/web/Tagmukay-Bold.woff" }, + "Tagmukay-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/tagmukay/Tagmukay-Regular.ttf", "packagepath": "Tagmukay-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/tagmukay/Tagmukay-Regular.ttf", "zippath": "Tagmukay-2.000/Tagmukay-Regular.ttf" }, + "Tagmukay-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/tagmukay/web/Tagmukay-Regular.woff", "packagepath": "web/Tagmukay-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/tagmukay/web/Tagmukay-Regular.woff", "zippath": "Tagmukay-2.000/web/Tagmukay-Regular.woff" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/tagmukay/Tagmukay-2.000.zip", + "siteurl": "https://software.sil.org/tagmukay/", + "source": "SIL", + "status": "current", + "version": "2.000", + "ziproot": "Tagmukay-2.000" +}, +"tahoma": { + "distributable": false, + "fallback": "andika", + "family": "Tahoma", + "familyid": "tahoma", + "license": "proprietary", + "source": "Microsoft" +}, +"taiheritagepro": { + "defaults": { + "ttf": "TaiHeritagePro-Regular.ttf", + "woff": "TaiHeritagePro-Regular.woff" + }, + "distributable": true, + "family": "Tai Heritage Pro", + "familyid": "taiheritagepro", + "files": { + "TaiHeritagePro-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/taiheritagepro/TaiHeritagePro-Bold.ttf", "packagepath": "TaiHeritagePro-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/taiheritagepro/TaiHeritagePro-Bold.ttf", "zippath": "TaiHeritagePro-2.600/TaiHeritagePro-Bold.ttf" }, + "TaiHeritagePro-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/taiheritagepro/web/TaiHeritagePro-Bold.woff", "packagepath": "web/TaiHeritagePro-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/taiheritagepro/web/TaiHeritagePro-Bold.woff", "zippath": "TaiHeritagePro-2.600/web/TaiHeritagePro-Bold.woff" }, + "TaiHeritagePro-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/taiheritagepro/TaiHeritagePro-Regular.ttf", "packagepath": "TaiHeritagePro-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/taiheritagepro/TaiHeritagePro-Regular.ttf", "zippath": "TaiHeritagePro-2.600/TaiHeritagePro-Regular.ttf" }, + "TaiHeritagePro-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/taiheritagepro/web/TaiHeritagePro-Regular.woff", "packagepath": "web/TaiHeritagePro-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/taiheritagepro/web/TaiHeritagePro-Regular.woff", "zippath": "TaiHeritagePro-2.600/web/TaiHeritagePro-Regular.woff" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/taiheritage/TaiHeritagePro-2.600.zip", + "siteurl": "https://software.sil.org/taiheritage/", + "source": "SIL", + "status": "current", + "version": "2.600", + "ziproot": "TaiHeritagePro-2.600" +}, +"taogu": { + "defaults": { + "ttf": "Taogu-Regular.ttf" + }, + "distributable": true, + "family": "Taogu", + "familyid": "taogu", + "files": { + "Taogu-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/taogu/Taogu-Bold.ttf", "packagepath": "Taogu-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/taogu/Taogu-Bold.ttf", "zippath": "Taogu-1.000/Taogu-Bold.ttf" }, + "Taogu-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/sil/taogu/Taogu-Regular.ttf", "packagepath": "Taogu-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/sil/taogu/Taogu-Regular.ttf", "zippath": "Taogu-1.000/Taogu-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://software.sil.org/downloads/r/shimenkan/Taogu-1.000.zip", + "siteurl": "https://software.sil.org/shimenkan/", + "source": "SIL", + "status": "current", + "version": "1.000", + "ziproot": "Taogu-1.000" +}, +"thiruvalluvar": { + "defaults": { + "ttf": "ThiruValluvar-Regular.ttf", + "woff": "ThiruValluvar-Regular.woff", + "woff2": "ThiruValluvar-Regular.woff2" + }, + "distributable": true, + "family": "ThiruValluvar", + "familyid": "thiruvalluvar", + "files": { + "ThiruValluvar-Bold.ttf": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/ThiruValluvar-Bold.ttf", "packagepath": "ThiruValluvar-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/ThiruValluvar-Bold.ttf", "zippath": "nlci-taml-thiruvalluvar-0.701/ThiruValluvar-Bold.ttf" }, + "ThiruValluvar-Bold.woff": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/woff/ThiruValluvar-Bold.woff", "packagepath": "woff/ThiruValluvar-Bold.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/woff/ThiruValluvar-Bold.woff", "zippath": "nlci-taml-thiruvalluvar-0.701/woff/ThiruValluvar-Bold.woff" }, + "ThiruValluvar-Bold.woff2": { "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/woff/ThiruValluvar-Bold.woff2", "packagepath": "woff/ThiruValluvar-Bold.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/woff/ThiruValluvar-Bold.woff2", "zippath": "nlci-taml-thiruvalluvar-0.701/woff/ThiruValluvar-Bold.woff2" }, + "ThiruValluvar-BoldItalic.ttf": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/ThiruValluvar-BoldItalic.ttf", "packagepath": "ThiruValluvar-BoldItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/ThiruValluvar-BoldItalic.ttf", "zippath": "nlci-taml-thiruvalluvar-0.701/ThiruValluvar-BoldItalic.ttf" }, + "ThiruValluvar-BoldItalic.woff": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/woff/ThiruValluvar-BoldItalic.woff", "packagepath": "woff/ThiruValluvar-BoldItalic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/woff/ThiruValluvar-BoldItalic.woff", "zippath": "nlci-taml-thiruvalluvar-0.701/woff/ThiruValluvar-BoldItalic.woff" }, + "ThiruValluvar-BoldItalic.woff2": { "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/woff/ThiruValluvar-BoldItalic.woff2", "packagepath": "woff/ThiruValluvar-BoldItalic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/woff/ThiruValluvar-BoldItalic.woff2", "zippath": "nlci-taml-thiruvalluvar-0.701/woff/ThiruValluvar-BoldItalic.woff2" }, + "ThiruValluvar-Italic.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/ThiruValluvar-Italic.ttf", "packagepath": "ThiruValluvar-Italic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/ThiruValluvar-Italic.ttf", "zippath": "nlci-taml-thiruvalluvar-0.701/ThiruValluvar-Italic.ttf" }, + "ThiruValluvar-Italic.woff": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/woff/ThiruValluvar-Italic.woff", "packagepath": "woff/ThiruValluvar-Italic.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/woff/ThiruValluvar-Italic.woff", "zippath": "nlci-taml-thiruvalluvar-0.701/woff/ThiruValluvar-Italic.woff" }, + "ThiruValluvar-Italic.woff2": { "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/woff/ThiruValluvar-Italic.woff2", "packagepath": "woff/ThiruValluvar-Italic.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/woff/ThiruValluvar-Italic.woff2", "zippath": "nlci-taml-thiruvalluvar-0.701/woff/ThiruValluvar-Italic.woff2" }, + "ThiruValluvar-Regular.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/ThiruValluvar-Regular.ttf", "packagepath": "ThiruValluvar-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/ThiruValluvar-Regular.ttf", "zippath": "nlci-taml-thiruvalluvar-0.701/ThiruValluvar-Regular.ttf" }, + "ThiruValluvar-Regular.woff": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/woff/ThiruValluvar-Regular.woff", "packagepath": "woff/ThiruValluvar-Regular.woff", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/woff/ThiruValluvar-Regular.woff", "zippath": "nlci-taml-thiruvalluvar-0.701/woff/ThiruValluvar-Regular.woff" }, + "ThiruValluvar-Regular.woff2": { "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/woff/ThiruValluvar-Regular.woff2", "packagepath": "woff/ThiruValluvar-Regular.woff2", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/woff/ThiruValluvar-Regular.woff2", "zippath": "nlci-taml-thiruvalluvar-0.701/woff/ThiruValluvar-Regular.woff2" }, + "ThiruValluvarCTT-Bold.ttf": { "altfamily": "ThiruValluvarCTT", "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/ThiruValluvarCTT-Bold.ttf", "packagepath": "ThiruValluvarCTT-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/ThiruValluvarCTT-Bold.ttf", "zippath": "nlci-taml-thiruvalluvar-0.701/ThiruValluvarCTT-Bold.ttf" }, + "ThiruValluvarCTT-BoldItalic.ttf": { "altfamily": "ThiruValluvarCTT", "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/ThiruValluvarCTT-BoldItalic.ttf", "packagepath": "ThiruValluvarCTT-BoldItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/ThiruValluvarCTT-BoldItalic.ttf", "zippath": "nlci-taml-thiruvalluvar-0.701/ThiruValluvarCTT-BoldItalic.ttf" }, + "ThiruValluvarCTT-Italic.ttf": { "altfamily": "ThiruValluvarCTT", "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/ThiruValluvarCTT-Italic.ttf", "packagepath": "ThiruValluvarCTT-Italic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/ThiruValluvarCTT-Italic.ttf", "zippath": "nlci-taml-thiruvalluvar-0.701/ThiruValluvarCTT-Italic.ttf" }, + "ThiruValluvarCTT-Regular.ttf": { "altfamily": "ThiruValluvarCTT", "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/ThiruValluvarCTT-Regular.ttf", "packagepath": "ThiruValluvarCTT-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/ThiruValluvarCTT-Regular.ttf", "zippath": "nlci-taml-thiruvalluvar-0.701/ThiruValluvarCTT-Regular.ttf" }, + "ThiruValluvarIRU-Bold.ttf": { "altfamily": "ThiruValluvarIRU", "axes": { "ital": 0, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/ThiruValluvarIRU-Bold.ttf", "packagepath": "ThiruValluvarIRU-Bold.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/ThiruValluvarIRU-Bold.ttf", "zippath": "nlci-taml-thiruvalluvar-0.701/ThiruValluvarIRU-Bold.ttf" }, + "ThiruValluvarIRU-BoldItalic.ttf": { "altfamily": "ThiruValluvarIRU", "axes": { "ital": 1, "wght": 700.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/ThiruValluvarIRU-BoldItalic.ttf", "packagepath": "ThiruValluvarIRU-BoldItalic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/ThiruValluvarIRU-BoldItalic.ttf", "zippath": "nlci-taml-thiruvalluvar-0.701/ThiruValluvarIRU-BoldItalic.ttf" }, + "ThiruValluvarIRU-Italic.ttf": { "altfamily": "ThiruValluvarIRU", "axes": { "ital": 1, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/ThiruValluvarIRU-Italic.ttf", "packagepath": "ThiruValluvarIRU-Italic.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/ThiruValluvarIRU-Italic.ttf", "zippath": "nlci-taml-thiruvalluvar-0.701/ThiruValluvarIRU-Italic.ttf" }, + "ThiruValluvarIRU-Regular.ttf": { "altfamily": "ThiruValluvarIRU", "axes": { "ital": 0, "wght": 400.0 }, "flourl": "https://fonts.languagetechnology.org/fonts/other/thiruvalluvar/ThiruValluvarIRU-Regular.ttf", "packagepath": "ThiruValluvarIRU-Regular.ttf", "url": "https://github.com/silnrsi/fonts/raw/main/fonts/other/thiruvalluvar/ThiruValluvarIRU-Regular.ttf", "zippath": "nlci-taml-thiruvalluvar-0.701/ThiruValluvarIRU-Regular.ttf" } + }, + "license": "OFL", + "packageurl": "https://github.com/nlci/taml-font-thiruvalluvar/releases/download/v0.701/nlci-taml-thiruvalluvar-0.701.zip", + "siteurl": "https://github.com/nlci/taml-font-thiruvalluvar", + "source": "NLCI", + "status": "current", + "version": "0.701", + "ziproot": "nlci-taml-thiruvalluvar-0.701" +}, +"thsarabunpsk": { + "distributable": true, + "fallback": "sarabun", + "family": "TH SarabunPSK", + "familyid": "thsarabunpsk", + "license": "OFL", + "siteurl": "https://github.com/SarabunConsortium/TH-Sarabun-PSK", + "status": "deprecated" +}, +"timesnewroman": { + "distributable": false, + "fallback": "doulossil", + "family": "Times New Roman", + "familyid": "timesnewroman", + "license": "proprietary", + "source": "Microsoft" +}, +"traditionalarabic": { + "distributable": false, + "fallback": "scheherazadenew", + "family": "Traditional Arabic", + "familyid": "traditionalarabic", + "license": "proprietary", + "source": "Microsoft" +}, +"tunga": { + "distributable": false, + "fallback": "notoserifkannada", + "family": "Tunga", + "familyid": "tunga", + "license": "proprietary", + "source": "Microsoft" +}, +"unicodebmpfallback": { + "defaults": { + "ttf": "UnicodeBMPFallback.ttf" + }, + "distributable": true, + "family": "Unicode BMP Fallback SIL", + "familyid": "unicodebmpfallback", + "files": { + "UnicodeBMPFallback.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "unicodebmpfallback-6.1/UnicodeBMPFallback.ttf", "zippath": "unicodebmpfallback-6.1/UnicodeBMPFallback.ttf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=UnicodeBMPFallback_61&filename=UnicodeBMPFallback-6.1.zip", + "siteurl": "https://scripts.sil.org/UnicodeBMPFallbackFont", + "source": "SIL", + "status": "archived", + "version": "6.100", + "ziproot": "" +}, +"verdana": { + "distributable": false, + "fallback": "andika", + "family": "Verdana", + "familyid": "verdana", + "license": "proprietary", + "source": "Microsoft" +}, +"vrinda": { + "distributable": false, + "fallback": "notoserifbengali", + "family": "Vrinda", + "familyid": "vrinda", + "license": "proprietary", + "source": "Microsoft" +}, +"wakor": { + "defaults": { + "ttf": "Wakor.ttf" + }, + "distributable": true, + "family": "Wakor", + "familyid": "wakor", + "files": { + "Wakor.ttf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "Wakor-4.0.7/Wakor.ttf", "zippath": "Wakor-4.0.7/Wakor.ttf" }, + "WakorOblique.ttf": { "axes": { "ital": 1, "wght": 400.0 }, "packagepath": "Wakor-4.0.7/WakorOblique.ttf", "zippath": "Wakor-4.0.7/WakorOblique.ttf" } + }, + "license": "OFL", + "packageurl": "https://www.evertype.com/fonts/vai/wakorfont.zip", + "siteurl": "https://www.evertype.com/fonts/vai/", + "source": "Evertype", + "version": "4.0.7", + "ziproot": "" +}, +"zaghawaberia": { + "defaults": { + "ttf": "ZaghawaBeria.otf" + }, + "distributable": true, + "family": "Zaghawa Beria", + "familyid": "zaghawaberia", + "files": { + "ZaghawaBeria.otf": { "axes": { "ital": 0, "wght": 400.0 }, "packagepath": "ZaghawaBeriaOTF/ZaghawaBeria.otf", "zippath": "ZaghawaBeriaOTF/ZaghawaBeria.otf" } + }, + "license": "OFL", + "packageurl": "https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=ZaghawaBeriaOTF1001&filename=ZaghawaBeriaOTF.zip", + "siteurl": "https://scripts.sil.org/zaghawaberia_home", + "source": "SIL", + "status": "archived", + "version": "1.001", + "ziproot": "" +} +} \ No newline at end of file diff --git a/developer/src/kmc-package/test/fixtures/online/fonts.languagetechnology.org/#fonts#sil#andika#Andika-Regular.ttf b/developer/src/kmc-package/test/fixtures/online/fonts.languagetechnology.org/#fonts#sil#andika#Andika-Regular.ttf new file mode 100644 index 00000000000..2378f5ceebe Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/online/fonts.languagetechnology.org/#fonts#sil#andika#Andika-Regular.ttf differ diff --git a/developer/src/kmc-package/test/fixtures/online/github.com/#notofonts#notofonts.github.io#raw#main#fonts#NotoNaskhArabicUI#full#ttf#NotoNaskhArabicUI-Regular.ttf b/developer/src/kmc-package/test/fixtures/online/github.com/#notofonts#notofonts.github.io#raw#main#fonts#NotoNaskhArabicUI#full#ttf#NotoNaskhArabicUI-Regular.ttf new file mode 100644 index 00000000000..a1ab206bb93 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/online/github.com/#notofonts#notofonts.github.io#raw#main#fonts#NotoNaskhArabicUI#full#ttf#NotoNaskhArabicUI-Regular.ttf differ diff --git a/developer/src/kmc-package/test/fixtures/online/github.com/#silnrsi#fonts#raw#0000000000000000000000000000000000000000#fonts#sil#abyssinicasil#AbyssinicaSIL-Regular.ttf b/developer/src/kmc-package/test/fixtures/online/github.com/#silnrsi#fonts#raw#0000000000000000000000000000000000000000#fonts#sil#abyssinicasil#AbyssinicaSIL-Regular.ttf new file mode 100644 index 00000000000..e126900d9d8 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/online/github.com/#silnrsi#fonts#raw#0000000000000000000000000000000000000000#fonts#sil#abyssinicasil#AbyssinicaSIL-Regular.ttf differ diff --git a/developer/src/kmc-package/test/fixtures/online/github.com/#silnrsi#fonts#raw#b88c7af5d16681bd137156929ff8baec82526560#fonts#sil#alkalami#Alkalami-Regular.ttf b/developer/src/kmc-package/test/fixtures/online/github.com/#silnrsi#fonts#raw#b88c7af5d16681bd137156929ff8baec82526560#fonts#sil#alkalami#Alkalami-Regular.ttf new file mode 100644 index 00000000000..cc162c7bac2 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/online/github.com/#silnrsi#fonts#raw#b88c7af5d16681bd137156929ff8baec82526560#fonts#sil#alkalami#Alkalami-Regular.ttf differ diff --git a/developer/src/kmc-package/test/fixtures/online/github.com/notofonts#notofonts.github.io#raw#main#fonts#NotoNaskhArabicUI#full#ttf#NotoNaskhArabicUI-Regular.ttf b/developer/src/kmc-package/test/fixtures/online/github.com/notofonts#notofonts.github.io#raw#main#fonts#NotoNaskhArabicUI#full#ttf#NotoNaskhArabicUI-Regular.ttf new file mode 100644 index 00000000000..a1ab206bb93 Binary files /dev/null and b/developer/src/kmc-package/test/fixtures/online/github.com/notofonts#notofonts.github.io#raw#main#fonts#NotoNaskhArabicUI#full#ttf#NotoNaskhArabicUI-Regular.ttf differ diff --git a/developer/src/kmc-package/test/messages.tests.ts b/developer/src/kmc-package/test/messages.tests.ts index ba5ec56b08b..9f720b40820 100644 --- a/developer/src/kmc-package/test/messages.tests.ts +++ b/developer/src/kmc-package/test/messages.tests.ts @@ -10,7 +10,7 @@ import { makePathToFixture } from './helpers/index.js'; import { KmpCompiler } from '../src/compiler/kmp-compiler.js'; import { CompilerErrorNamespace, CompilerOptions } from '@keymanapp/developer-utils'; -const callbacks = new TestCompilerCallbacks(); +const callbacks = new TestCompilerCallbacks(makePathToFixture('online')); describe('PackageCompilerMessages', function () { @@ -29,7 +29,7 @@ describe('PackageCompilerMessages', function () { // Message tests // - async function testForMessage(context: Mocha.Context, fixture: string[], messageId?: number, options?: CompilerOptions) { + async function testForMessage(context: Mocha.Context, fixture: string[], messageId?: number | number[], options?: CompilerOptions) { context.timeout(10000); callbacks.clear(); @@ -41,8 +41,14 @@ describe('PackageCompilerMessages', function () { await kmpCompiler.run(kpsPath); if(messageId) { - assert.lengthOf(callbacks.messages, 1); - assert.isTrue(callbacks.hasMessage(messageId)); + if(typeof messageId == 'number') { + assert.lengthOf(callbacks.messages, 1); + assert.isTrue(callbacks.hasMessage(messageId)); + } else { + assert.lengthOf(callbacks.messages, messageId.length); + assert.includeMembers(messageId, callbacks.messages.map(m => m.code)); + // messageId.forEach(m => assert.isTrue(callbacks.hasMessage(m), `Has message ${m}`)); + } } else { assert.lengthOf(callbacks.messages, 0); } @@ -141,12 +147,6 @@ describe('PackageCompilerMessages', function () { await testForMessage(this, ['invalid', 'error_package_name_cannot_be_blank_2.kps'], PackageCompilerMessages.ERROR_PackageNameCannotBeBlank); // missing field }); - // ERROR_KeyboardFileNotFound - - it('should generate ERROR_KeyboardFileNotFound if a is listed in a package but not found in ', async function() { - await testForMessage(this, ['invalid', 'keyboardfilenotfound.kps'], PackageCompilerMessages.ERROR_KeyboardFileNotFound); - }); - // WARN_KeyboardVersionsDoNotMatch it('should generate WARN_KeyboardVersionsDoNotMatch if two have different versions', async function() { @@ -237,8 +237,75 @@ describe('PackageCompilerMessages', function () { PackageCompilerMessages.ERROR_InvalidAuthorEmail); }); + // ERROR_PackageFileHasEmptyVersion + it('should generate ERROR_PackageFileHasEmptyVersion if FollowKeyboardVersion is not present and Version is empty', async function() { await testForMessage(this, ['invalid', 'error_package_file_has_empty_version.kps'], PackageCompilerMessages.ERROR_PackageFileHasEmptyVersion); }); + + // ERROR_FloDataCouldNotBeRead -- skip test, for network errors + + // ERROR_FloDataIsInvalidFormat -- skip test, only for data error in FLO + + // ERROR_FontNotFoundInFlo + + it('should generate WARN_FontNotFoundInFlo if a font family cannot be found at fonts.languagetechnology.org', async function() { + await testForMessage(this, ['invalid', 'warn_font_not_found_in_flo.kps'], + PackageCompilerMessages.WARN_FontNotFoundInFlo); + }); + + // WARN_FontFromFloIsNotFreelyDistributable + + it('should generate WARN_FontFromFloIsNotFreelyDistributable if a font at fonts.languagetechnology.org is not freely distributable', async function() { + await testForMessage(this, ['invalid', 'warn_font_from_flo_is_not_freely_distributable.kps'], [ + PackageCompilerMessages.WARN_FontFromFloIsNotFreelyDistributable, + // Currently all the non-distributable fonts do not have a default .ttf either + PackageCompilerMessages.WARN_FontInFloDoesNotHaveDefaultTtf + ]); + }); + + // WARN_FontInFloDoesNotHaveDefaultTtf + + it('should generate WARN_FontInFloDoesNotHaveDefaultTtf if a font at fonts.languagetechnology.org does not have a default .ttf', async function() { + await testForMessage(this, ['invalid', 'warn_font_in_flo_does_not_have_default_ttf.kps'], + PackageCompilerMessages.WARN_FontInFloDoesNotHaveDefaultTtf); + }); + + // ERROR_FontInFloHasBrokenDefaultTtf -- skip test, only for data error in FLO + + // ERROR_FontInFloHasNoDownloadAvailable + + it('should generate WARN_FontInFloHasNoDownloadAvailable if a font at fonts.languagetechnology.org does not download available', async function() { + await testForMessage(this, ['invalid', 'warn_font_in_flo_has_no_download_available.kps'], + PackageCompilerMessages.WARN_FontInFloHasNoDownloadAvailable); + }); + + // ERROR_FontFileCouldNotBeDownloaded -- skip test, more work needed to mock + + // it('should generate ERROR_FontFileCouldNotBeDownloaded if a font at fonts.languagetechnology.org cannot be downloaded', async function() { + // // Note: see additional setup information in + // // error_font_file_could_not_be_downloaded.kps + // await testForMessage(this, ['invalid', 'error_font_file_could_not_be_downloaded.kps'], + // PackageCompilerMessages.ERROR_FontFileCouldNotBeDownloaded); + // }); + + it('should generate ERROR_FontFileCouldNotBeDownloaded if a font at github.com cannot be downloaded', async function() { + await testForMessage(this, ['invalid', 'error_font_file_could_not_be_downloaded_github.kps'], + PackageCompilerMessages.ERROR_FontFileCouldNotBeDownloaded); + }); + + // HINT_SourceFileHasChanged + + it('should generate HINT_SourceFileHasChanged if a FLO font reference has been updated', async function() { + await testForMessage(this, ['flo', 'hint_source_file_has_changed.kps'], + PackageCompilerMessages.HINT_SourceFileHasChanged); + }); + + // HINT_RemoteReferencesShouldBeVersion18Plus + + it('should generate HINT_RemoteReferencesShouldBeVersion18Plus if the package source file is not v18.0', async function() { + await testForMessage(this, ['invalid', 'hint_remote_references_should_be_version18_plus.kps'], + PackageCompilerMessages.HINT_RemoteReferencesShouldBeVersion18Plus); + }); }); diff --git a/developer/src/kmc-package/test/package-compiler.tests.ts b/developer/src/kmc-package/test/package-compiler.tests.ts index 7952e2145a2..96a1c02672c 100644 --- a/developer/src/kmc-package/test/package-compiler.tests.ts +++ b/developer/src/kmc-package/test/package-compiler.tests.ts @@ -12,23 +12,34 @@ import { makePathToFixture } from './helpers/index.js'; import { KmpCompiler } from '../src/compiler/kmp-compiler.js'; import { PackageCompilerMessages } from '../src/compiler/package-compiler-messages.js'; +import { unitTestEndpoints as getFileDataEndpoints, unitTestEndpoints } from '../src/compiler/get-file-data.js'; +import { env } from 'process'; -const debug = false; +const { TEST_SAVE_FIXTURES } = env; describe('KmpCompiler', function () { const MODELS : string[] = [ 'example.qaa.sencoten', 'withfolders.qaa.sencoten', ]; - const callbacks = new TestCompilerCallbacks(); + const callbacks = new TestCompilerCallbacks(makePathToFixture('online')); let kmpCompiler: KmpCompiler = null; this.beforeAll(async function() { - callbacks.clear(); kmpCompiler = new KmpCompiler(); assert.isTrue(await kmpCompiler.init(callbacks, null)); }); + this.beforeEach(function() { + callbacks.clear(); + }); + + this.afterEach(function() { + if(this.currentTest.state == 'failed') { + callbacks.printMessages(); + } + }); + for (let modelID of MODELS) { const kpsPath = modelID.includes('withfolders') ? makePathToFixture(modelID, 'source', `${modelID}.model.kps`) : makePathToFixture(modelID, `${modelID}.model.kps`); @@ -45,15 +56,11 @@ describe('KmpCompiler', function () { // // Test just the transform from kps to kmp.json // - it(`should transform ${modelID}.model.kps to kmp.json`, function () { - let kmpJson: KmpJsonFile.KmpJsonFile; - - assert.doesNotThrow(() => { - kmpJson = kmpCompiler.transformKpsToKmpObject(kpsPath); - }); + it(`should transform ${modelID}.model.kps to kmp.json`, async function () { + const { kmpJsonData } = await kmpCompiler.transformKpsToKmpObject(kpsPath) ?? {}; // Test that the kmp.json data is identical - assert.deepEqual(kmpJson, kmpJsonIntermediateFixture); + assert.deepEqual(kmpJsonData, kmpJsonIntermediateFixture); // Note that in-memory kmp.json still contains paths in the files array. // However, when building the .kmp, the final written kmp.json data is @@ -62,12 +69,13 @@ describe('KmpCompiler', function () { // This was used when building initial test data //fs.writeFileSync(kmpJsonPath, JSON.stringify(kmpJson), 'utf-8'); }); + it(`should build a full .kmp for ${modelID}`, async function() { const zip = JSZip(); // Build kmp.json in memory - const kmpJson: KmpJsonFile.KmpJsonFile = kmpCompiler.transformKpsToKmpObject(kpsPath); + const { kmpJsonData, fileData } = await kmpCompiler.transformKpsToKmpObject(kpsPath) ?? {}; // Build file.kmp in memory - const promise = kmpCompiler.buildKmpFile(kpsPath, kmpJson); + const promise = kmpCompiler.buildKmpFile(kmpJsonData, fileData); promise.then(data => { // Check that file.kmp contains just 2 files - kmp.json and file.model.js, // and that they match exactly what we expect @@ -88,7 +96,7 @@ describe('KmpCompiler', function () { }); } - it('should generates a valid .kmp (zip) file', async function() { + it('should generate a valid .kmp (zip) file', async function() { this.timeout(10000); // building a zip file can sometimes be slow const kpsPath = makePathToFixture('khmer_angkor', 'source', 'khmer_angkor.kps'); @@ -102,12 +110,11 @@ describe('KmpCompiler', function () { // We override the fixture version so that we can compare with the compiler output kmpJsonFixture.system.keymanDeveloperVersion = KEYMAN_VERSION.VERSION; - let kmpJson = null; - assert.doesNotThrow(() => { - kmpJson = kmpCompiler.transformKpsToKmpObject(kpsPath); - }); - - const kmpData = await kmpCompiler.buildKmpFile(kpsPath, kmpJson); + const { kmpJsonData, fileData } = await kmpCompiler.transformKpsToKmpObject(kpsPath) ?? {}; + assert.isNotNull(kmpJsonData); + assert.isNotNull(fileData); + const kmpData = await kmpCompiler.buildKmpFile(kmpJsonData, fileData); + assert.isNotNull(kmpData); const zip = JSZip(); @@ -127,21 +134,19 @@ describe('KmpCompiler', function () { expectedFiles.sort(), 'khmer_angkor.kmp file should have exactly the expected files'); - let kmpJsonData = JSON.parse(await jszip.file('kmp.json').async('string')); - assert.deepEqual(kmpJsonData, kmpJsonFixture); + let finalKmpJsonData = JSON.parse(await jszip.file('kmp.json').async('string')); + assert.deepEqual(finalKmpJsonData, kmpJsonFixture); }); /* * Testing kmp.json generation */ - it(`should transform a .kps file for a keyboard package to a correct kmp.json`, function () { - callbacks.clear(); - + it(`should transform a .kps file for a keyboard package to a correct kmp.json`, async function () { const kpsPath = makePathToFixture('kmp.json', 'ahom_star.kps'); const kmpJsonRefPath = makePathToFixture('kmp.json', 'kmp.json'); - let kmpJsonActual = kmpCompiler.transformKpsToKmpObject(kpsPath); + let { kmpJsonData: kmpJsonActual } = await kmpCompiler.transformKpsToKmpObject(kpsPath) ?? {}; if(kmpJsonActual == null) { callbacks.printMessages(); assert.isNotNull(kmpJsonActual); @@ -162,15 +167,11 @@ describe('KmpCompiler', function () { assert.deepEqual(kmpJsonActual, kmpJsonFixture); }); - it(`should support .kps 17.0 metadata correctly`, function () { - callbacks.clear(); - + it(`should support .kps 17.0 metadata correctly`, async function () { const kpsPath = makePathToFixture('kmp_2.0', 'khmer_angkor.kps'); const kmpJsonRefPath = makePathToFixture('kmp_2.0', 'kmp.json'); - debugger; - - let kmpJsonActual = kmpCompiler.transformKpsToKmpObject(kpsPath); + let { kmpJsonData: kmpJsonActual } = await kmpCompiler.transformKpsToKmpObject(kpsPath) ?? {}; if(kmpJsonActual == null) { callbacks.printMessages(); assert.isNotNull(kmpJsonActual); @@ -190,6 +191,7 @@ describe('KmpCompiler', function () { assert.deepEqual(kmpJsonActual, kmpJsonFixture); }); + /* * Testing Warnings and Errors */ @@ -197,23 +199,13 @@ describe('KmpCompiler', function () { it('should warn on absolute paths', async function() { this.timeout(10000); // building a zip file can sometimes be slow - callbacks.clear(); - const kpsPath = makePathToFixture('absolute_path', 'source', 'absolute_path.kps'); const kmpCompiler = new KmpCompiler(); assert.isTrue(await kmpCompiler.init(callbacks, null)); - let kmpJson: KmpJsonFile.KmpJsonFile = null; - - assert.doesNotThrow(() => { - kmpJson = kmpCompiler.transformKpsToKmpObject(kpsPath); - }); - - assert.isNotNull(kmpJson); - - await assert.isNull(kmpCompiler.buildKmpFile(kpsPath, kmpJson)); - - if(debug) callbacks.printMessages(); + let { kmpJsonData, fileData } = await kmpCompiler.transformKpsToKmpObject(kpsPath) ?? {}; + assert.isNull(kmpJsonData); + assert.isNull(fileData); assert.lengthOf(callbacks.messages, 2); assert.deepEqual(callbacks.messages[0].code, PackageCompilerMessages.WARN_AbsolutePath); @@ -223,19 +215,12 @@ describe('KmpCompiler', function () { // Testing path normalization it('should normalize DOS pathnames from \\ to /', async function() { - // this.timeout(10000); // building a zip file can sometimes be slow - - callbacks.clear(); const kpsPath = makePathToFixture('normalize_paths', 'source', 'khmer_angkor.kps'); const kmpCompiler = new KmpCompiler(); assert.isTrue(await kmpCompiler.init(callbacks, null)); - let kmpJson: KmpJsonFile.KmpJsonFile = null; - - assert.doesNotThrow(() => { - kmpJson = kmpCompiler.transformKpsToKmpObject(kpsPath); - }); + const { kmpJsonData: kmpJson } = await kmpCompiler.transformKpsToKmpObject(kpsPath) ?? {}; callbacks.printMessages(); assert.lengthOf(callbacks.messages, 0); @@ -267,21 +252,111 @@ describe('KmpCompiler', function () { // // Test some invalid package metadata // - it(`should load a package with missing keyboard ID metadata`, function () { - const kmpJson = kmpCompiler.transformKpsToKmpObject(makePathToFixture('invalid', 'missing_keyboard_id.kps')); - assert.isNull(kmpJson); // with a missing keyboard_id, the package shouldn't load, but it shouldn't crash either + it(`should load a package with missing keyboard ID metadata`, async function () { + const { kmpJsonData } = await kmpCompiler.transformKpsToKmpObject(makePathToFixture('invalid', 'missing_keyboard_id.kps')) ?? {}; + assert.isNull(kmpJsonData); // with a missing keyboard_id, the package shouldn't load, but it shouldn't crash either assert.deepEqual(callbacks.messages[0].code, PackageCompilerMessages.ERROR_KeyboardContentFileNotFound); + }); + it(`should load a package with missing keyboard name metadata`, async function () { + const { kmpJsonData } = await kmpCompiler.transformKpsToKmpObject(makePathToFixture('invalid', 'missing_keyboard_name.kps')) ?? {}; + assert.equal(kmpJsonData.keyboards[0].name, 'version 4'); // picks up example.kmx's name }); - it(`should load a package with missing keyboard name metadata`, function () { - const kmpJson = kmpCompiler.transformKpsToKmpObject(makePathToFixture('invalid', 'missing_keyboard_name.kps')); - assert.equal(kmpJson.keyboards[0].name, 'version 4'); // picks up example.kmx's name + it(`should load a package with missing keyboard version metadata`, async function () { + const { kmpJsonData } = await kmpCompiler.transformKpsToKmpObject(makePathToFixture('invalid', 'missing_keyboard_version.kps')) ?? {}; + assert.equal(kmpJsonData.keyboards[0].version, '4.0'); // picks up example.kmx's version }); - it(`should load a package with missing keyboard version metadata`, function () { - const kmpJson = kmpCompiler.transformKpsToKmpObject(makePathToFixture('invalid', 'missing_keyboard_version.kps')); - assert.equal(kmpJson.keyboards[0].version, '4.0'); // picks up example.kmx's version + it(`should download a file from a GitHub raw url`, async function () { + if(TEST_SAVE_FIXTURES) { + this.timeout(10000); + } + + // https://github.com/silnrsi/fonts/raw/b88c7af5d16681bd137156929ff8baec82526560/fonts/sil/alkalami/Alkalami-Regular.ttf + const source = 'https://github.com/silnrsi/fonts/raw/b88c7af5d16681bd137156929ff8baec82526560/fonts/sil/alkalami/Alkalami-Regular.ttf'; + const matches = getFileDataEndpoints.GITHUB_STABLE_SOURCE.exec(source); + assert.isNotNull(matches); + assert.equal(matches.groups.owner, 'silnrsi'); + assert.equal(matches.groups.repo, 'fonts'); + assert.equal(matches.groups.branch, 'b88c7af5d16681bd137156929ff8baec82526560'); + assert.equal(matches.groups.path, 'fonts/sil/alkalami/Alkalami-Regular.ttf'); + const res = await getFileDataEndpoints.getFileDataFromGitHub(callbacks, '', matches); + assert.isNotNull(res); + assert.isNotNull(res.data); + assert.equal(res.basename, 'Alkalami-Regular.ttf'); + // TODO: should we check file validity as a real TTF? + assert.equal(res.data.length, 145540); // size of Alkalami-Regular.ttf (for that hash) + }); + + it(`should resolve a source filename from fonts.languagetechnology.org`, async function () { + if(TEST_SAVE_FIXTURES) { + this.timeout(10000); + } + + // https://fonts.languagetechnology.org/families.json / andika + const source = 'flo:andika'; + const matches = getFileDataEndpoints.FLO_SOURCE.exec(source); + assert.isNotNull(matches); + assert.equal(matches.groups.family, 'andika'); + const res = await getFileDataEndpoints.getFileStableRefFromFlo(callbacks, 'flo:andika'); + assert.isNotNull(res); + assert.equal(res, 'https://github.com/silnrsi/fonts/raw/044a10426cdabfa3dd3b13d040a56d4b70ea4058/fonts/sil/andika/Andika-Regular.ttf'); + // TODO: should we check file validity as a real TTF? }); + it(`should resolve a FLO source file`, async function() { + assert.isTrue(await unitTestEndpoints.checkSourceFile(callbacks, 'https://github.com/silnrsi/fonts/raw/000000000000000000000000000000/fonts/sil/andika/Andika-Regular.ttf', + 'flo:andika')); + assert.lengthOf(callbacks.messages, 1); + assert.equal(callbacks.messages[0].code, PackageCompilerMessages.HINT_SourceFileHasChanged); + }); + + const refs = [ + ['raw, short form', 'https://github.com/silnrsi/fonts/raw/main/fonts/sil/andika/Andika-Regular.ttf'], + ['raw, long form', 'https://github.com/silnrsi/fonts/raw/refs/heads/main/fonts/sil/andika/Andika-Regular.ttf'], + ['tree, short form', 'https://github.com/silnrsi/fonts/tree/main/fonts/sil/andika/Andika-Regular.ttf'], + ['tree, long form', 'https://github.com/silnrsi/fonts/tree/refs/heads/main/fonts/sil/andika/Andika-Regular.ttf'], + ['blob, short form', 'https://github.com/silnrsi/fonts/blob/main/fonts/sil/andika/Andika-Regular.ttf'], + ['blob, long form', 'https://github.com/silnrsi/fonts/blob/refs/heads/main/fonts/sil/andika/Andika-Regular.ttf'], + ['raw, githubusercontent, short form', 'https://raw.githubusercontent.com/silnrsi/fonts/main/fonts/sil/andika/Andika-Regular.ttf'], + ['raw, githubusercontent, long form', 'https://raw.githubusercontent.com/silnrsi/fonts/refs/heads/main/fonts/sil/andika/Andika-Regular.ttf'], + ]; + + refs.forEach(ref => { + it(`should resolve a GitHub source file in ${ref[0]}`, async function() { + assert.isTrue(await unitTestEndpoints.checkSourceFile(callbacks, 'https://github.com/silnrsi/fonts/raw/000000000000000000000000000000/fonts/sil/andika/Andika-Regular.ttf', + ref[1])); + assert.lengthOf(callbacks.messages, 1); + assert.equal(callbacks.messages[0].code, PackageCompilerMessages.HINT_SourceFileHasChanged); + }); + }); + + it(`should return ERROR_InvalidSourceFileReference if an invalid source is given`, async function() { + assert.isFalse(await unitTestEndpoints.checkSourceFile(callbacks, 'https://github.com/silnrsi/fonts/raw/000000000000000000000000000000/fonts/sil/andika/Andika-Regular.ttf', + 'garbage:unknown')); + assert.lengthOf(callbacks.messages, 1); + assert.equal(callbacks.messages[0].code, PackageCompilerMessages.ERROR_InvalidSourceFileReference); + }); + + it(`should return ERROR_UriIsNotARecognizedGitHubUri if an invalid GitHub ref is given`, async function() { + // xxx instead of raw below + assert.isNull(await unitTestEndpoints.getFileStableRefFromGitHub(callbacks, 'https://github.com/silnrsi/fonts/xxx/000000000000000000000000000000/fonts/sil/andika/Andika-Regular.ttf')); + assert.lengthOf(callbacks.messages, 1); + assert.equal(callbacks.messages[0].code, PackageCompilerMessages.ERROR_UriIsNotARecognizedGitHubUri); + }); + + [ + // xxx instead of raw + 'https://github.com/silnrsi/fonts/xxx/000000000000000000000000000000/fonts/sil/andika/Andika-Regular.ttf', + // 39 instead of 40 chars + 'https://github.com/silnrsi/fonts/raw/00000000000000000000000000000/fonts/sil/andika/Andika-Regular.ttf', + ].forEach(url => { + it(`should return ERROR_UriIsNotARecognizedStableGitHubUri if the non-stable GitHub URL '${url}' is given`, async function() { + + assert.isNull(await unitTestEndpoints.getFileDataFromRemote(callbacks, url, '')); + assert.lengthOf(callbacks.messages, 1); + assert.equal(callbacks.messages[0].code, PackageCompilerMessages.ERROR_UriIsNotARecognizedStableGitHubUri); + }); + }); }); diff --git a/developer/src/kmc-package/test/versioning.tests.ts b/developer/src/kmc-package/test/versioning.tests.ts index 98d00b853ce..d4c34323d04 100644 --- a/developer/src/kmc-package/test/versioning.tests.ts +++ b/developer/src/kmc-package/test/versioning.tests.ts @@ -3,7 +3,6 @@ import { assert } from 'chai'; import { TestCompilerCallbacks } from '@keymanapp/developer-test-helpers'; import { makePathToFixture } from './helpers/index.js'; import { KmpCompiler } from '../src/compiler/kmp-compiler.js'; -import { KmpJsonFile } from '@keymanapp/common-types'; // This unit test was translated from a Delphi test // Keyman.Test.System.CompilePackageVersioningTest, but note the difference in @@ -37,8 +36,8 @@ describe('package versioning', function () { assert.isTrue(await kmpCompiler.init(callbacks, null)); const kpsPath = makePathToFixture('versioning', filename); - const kmpJson: KmpJsonFile.KmpJsonFile = kmpCompiler.transformKpsToKmpObject(kpsPath); - assert.isTrue(kmpJson !== null); + const { kmpJsonData } = await kmpCompiler.transformKpsToKmpObject(kpsPath) ?? {}; + assert.isTrue(kmpJsonData !== null); }); } }); diff --git a/developer/src/kmc/src/commands/buildClasses/BuildModelInfo.ts b/developer/src/kmc/src/commands/buildClasses/BuildModelInfo.ts index 2e522c99fd1..c15086c1bb3 100644 --- a/developer/src/kmc/src/commands/buildClasses/BuildModelInfo.ts +++ b/developer/src/kmc/src/commands/buildClasses/BuildModelInfo.ts @@ -58,7 +58,7 @@ export class BuildModelInfo extends BuildActivity { return false; } - let kmpJsonData = kmpCompiler.transformKpsToKmpObject(project.resolveInputFilePath(kps)); + const { kmpJsonData } = await kmpCompiler.transformKpsToKmpObject(project.resolveInputFilePath(kps)) ?? {}; if(!kmpJsonData) { // Errors will have been emitted by KmpCompiler return false; diff --git a/developer/src/kmc/src/commands/copy.ts b/developer/src/kmc/src/commands/copy.ts index 9231ba3a5ec..2f22b24a0a4 100644 --- a/developer/src/kmc/src/commands/copy.ts +++ b/developer/src/kmc/src/commands/copy.ts @@ -27,8 +27,9 @@ export function declareCopy(program: Command) { * a .kpj file, e.g. ./keyboards/khmer_angkor/khmer_angkor.kpj * a local folder (with a .kpj file in it), e.g. ./keyboards/khmer_angkor * a cloud keyboard or lexical model, cloud:id, e.g. cloud:khmer_angkor - * a GitHub repository, optional branch, and path, github:owner/repo[:branch]:path - e.g. github:keyman-keyboards/khmer_angkor:main:/khmer_angkor.kpj + * a GitHub repository, branch, and path, [https://]github.com/owner/repo/tree/branch/path + e.g. https://github.com/keyman-keyboards/khmer_angkor/tree/main/khmer_angkor.kpj or + github.com/keymanapp/keyboards/tree/master/release/k/khmer_angkor `); } diff --git a/developer/src/kmc/src/util/NodeCompilerCallbacks.ts b/developer/src/kmc/src/util/NodeCompilerCallbacks.ts index fd5f29d2122..91be031927a 100644 --- a/developer/src/kmc/src/util/NodeCompilerCallbacks.ts +++ b/developer/src/kmc/src/util/NodeCompilerCallbacks.ts @@ -124,7 +124,10 @@ export class NodeCompilerCallbacks implements CompilerCallbacks { } get path(): CompilerPathCallbacks { - return path; + return { + ...path, + isAbsolute: path.win32.isAbsolute + }; } get fs(): CompilerFileSystemCallbacks {